Esempio n. 1
0
        //---------------------------------------------------------------------

        public Scenario(int startTime,
                        int endTime,
                        string species,
                        string ecoregions,
                        string ecoregionsMap,
                        float?cellLength,
                        string initCommunities,
                        string communitiesMap,
                        PlugInAndInitFile succession,
                        PlugInAndInitFile[] disturbances,
                        bool disturbRandom,
                        PlugInAndInitFile[] otherPlugIns,
                        uint?seed)
        {
            this.startTime       = startTime;
            this.endTime         = endTime;
            this.species         = species;
            this.ecoregions      = ecoregions;
            this.ecoregionsMap   = ecoregionsMap;
            this.cellLength      = cellLength;
            this.initCommunities = initCommunities;
            this.communitiesMap  = communitiesMap;
            this.succession      = succession;
            this.disturbances    = disturbances;
            this.disturbRandom   = disturbRandom;
            this.otherPlugIns    = otherPlugIns;
            this.seed            = seed;
        }
Esempio n. 2
0
        //---------------------------------------------------------------------

        public Scenario(int                 startTime,
                        int                 endTime,
                        string              species,
                        string              ecoregions,
                        string              ecoregionsMap,
                        float?              cellLength,
                        int?                blockSize,
                        string              initCommunities,
                        string              communitiesMap,
                        PlugInAndInitFile   succession,
                        PlugInAndInitFile[] disturbances,
                        bool                disturbRandom,
                        PlugInAndInitFile[] otherPlugIns,
                        uint?               seed)
        {
            this.startTime       = startTime;
            this.endTime         = endTime;
            this.species         = species;
            this.ecoregions      = ecoregions;
            this.ecoregionsMap   = ecoregionsMap;
            this.cellLength      = cellLength;
            this.blockSize       = blockSize;
            this.initCommunities = initCommunities;
            this.communitiesMap  = communitiesMap;
            this.succession      = succession;
            this.disturbances    = disturbances;
            this.disturbRandom   = disturbRandom;
            this.otherPlugIns    = otherPlugIns;
            this.seed            = seed;
        }