| 60 | void sample(LineageReference* lineagePtr); |
| 61 | |
| 62 | void replaceLineage(LineageReference* lineage) { |
| 63 | if (!startSampling) { |
| 64 | currentLineage = lineage; |
| 65 | } else { |
| 66 | startSampling = false; |
| 67 | sample(currentLineage); |
| 68 | currentLineage = lineage; |
| 69 | } |
| 70 | } |
| 71 | #endif |
| 72 | |
| 73 | using namespace std::literals; |
no test coverage detected