| 58 | } |
| 59 | |
| 60 | bool CellDescription::hasGenome() const |
| 61 | { |
| 62 | auto cellFunctionType = getCellFunctionType(); |
| 63 | if (cellFunctionType == CellFunction_Constructor || cellFunctionType == CellFunction_Injector) { |
| 64 | return true; |
| 65 | } |
| 66 | return false; |
| 67 | } |
| 68 | |
| 69 | std::vector<uint8_t>& CellDescription::getGenomeRef() |
| 70 | { |
no outgoing calls
no test coverage detected