Run a sequence to initialize the exogenous parameters (loop with k=0).
(self)
| 467 | self.fpc[k] = self.f[k] / self.pop[k] |
| 468 | |
| 469 | def loop0_exogenous(self): |
| 470 | """ |
| 471 | Run a sequence to initialize the exogenous parameters (loop with k=0). |
| 472 | |
| 473 | """ |
| 474 | self.loopk_exogenous(0) |
| 475 | |
| 476 | def loop0_population(self, alone=False): |
| 477 | """ |
no test coverage detected