Home
last modified time | relevance | path

Searched refs:growth_rates (Results 1 – 4 of 4) sorted by relevance

/dports/graphics/py-urbansim/urbansim-3.2/urbansim/models/
H A Dtransition.py225 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 Dtest_model.cc514 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 Dmodel.h361 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 Dmodel.cc273 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()