Skip to content
Snippets Groups Projects

Robot state predictions

Merged Rainer Kartmann requested to merge robot-state-predictions into master
1 file
+ 5
3
Compare changes
  • Side-by-side
  • Inline
@@ -365,8 +365,10 @@ namespace armarx::armem::server
prediction::data::EngineSupportMap result;
armarx::toIce(result, workingMemory->getAllPredictionEngines());
prediction::data::EngineSupportMap ltmMap;
armarx::toIce(ltmMap, workingMemory->getAllPredictionEngines());
// Uncomment once LTM also supports prediction engines.
/*prediction::data::EngineSupportMap ltmMap;
armarx::toIce(ltmMap, longtermMemory->getAllPredictionEngines());
for (const auto& [memoryID, engines] : ltmMap)
{
auto entryIter = result.find(memoryID);
@@ -382,7 +384,7 @@ namespace armarx::armem::server
engineSet.insert(engines.begin(), engines.end());
entryIter->second.assign(engineSet.begin(), engineSet.end());
}
}
}*/
return result;
}
Loading