Searched refs:growth_rates (Results 1 – 4 of 4) sorted by relevance
/dports/graphics/py-urbansim/urbansim-3.2/urbansim/models/ |
H A D | transition.py | 225 def __init__(self, growth_rates, rates_column, accounting_column=None): argument 226 self.growth_rates = growth_rates 236 return self.growth_rates
|
/dports/biology/scrm/scrm-1.7.4/tests/unittests/ |
H A D | test_model.cc | 514 std::vector<double> growth_rates; in testPopSizeAfterGrowth() local 515 growth_rates.push_back(-0.5); in testPopSizeAfterGrowth() 516 growth_rates.push_back(0.5); in testPopSizeAfterGrowth() 517 model.addGrowthRates(1.0, growth_rates); in testPopSizeAfterGrowth() 538 growth_rates.clear(); in testPopSizeAfterGrowth() 539 growth_rates.push_back(-0.5); in testPopSizeAfterGrowth() 540 growth_rates.push_back(0.5); in testPopSizeAfterGrowth() 541 model.addGrowthRates(1.0, growth_rates); in testPopSizeAfterGrowth()
|
/dports/biology/scrm/scrm-1.7.4/src/ |
H A D | model.h | 361 void addGrowthRates(const double time, const std::vector<double> &growth_rates, 365 void addGrowthRates(const double time, const double growth_rates, 370 double growth_rates, const bool &time_scaled = false,
|
H A D | model.cc | 273 void Model::addGrowthRates(const double time, const std::vector<double> &growth_rates, in addGrowthRates() argument 275 if ( growth_rates.size() != population_number() ) in addGrowthRates() 280 for (double rate : growth_rates) { in addGrowthRates()
|