| 51 | public: |
| 52 | using GeneticAlgorithm::GeneticAlgorithm; |
| 53 | Population runNextRound(Population _population) override |
| 54 | { |
| 55 | ++m_currentRound; |
| 56 | return _population; |
| 57 | } |
| 58 | |
| 59 | size_t m_currentRound = 0; |
| 60 | }; |
no outgoing calls
no test coverage detected