This commit is contained in:
Artur Meski
2018-03-30 18:32:34 +01:00
parent c89e336862
commit dc241ebf78
3 changed files with 2 additions and 19 deletions

14
rs.cc
View File

@@ -119,20 +119,6 @@ std::string RctSys::getProcessName(Process processID)
}
}
void RctSys::printEntitiesPerProc(const EntitiesForProc &proc_entities)
{
for (const auto &pe : proc_entities) {
std::string proc_name = getProcessName(pe.first);
cout << proc_name << ": ";
for (const auto &ent : pe.second) {
cout << getEntityName(ent) << " ";
}
cout << endl;
}
}
void RctSys::pushReactant(std::string entityName)
{
if (!hasEntity(entityName)) {