Conditions | 4 |
Paths | 4 |
Total Lines | 9 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Tests | 6 |
CRAP Score | 4.0466 |
Changes | 0 |
1 | <?php |
||
48 | 3 | public function start($verbose = true) |
|
49 | { |
||
50 | 3 | if ($this->generations == 0) { |
|
51 | 3 | while ($this->generations < $this->world->getIterations()) { |
|
52 | 3 | $this->organisms->iterate(); |
|
53 | 3 | if ($verbose) { |
|
54 | self::printMatrixCli($this->organisms->getCells()); |
||
55 | } |
||
56 | 3 | $this->generations++; |
|
57 | } |
||
112 | } |