36 template <
class DerivedT>
40 explicit Predictive(
const std::vector<PredictionEngine>& engines = {}) :
41 _predictionEngines(engines)
45 const std::vector<PredictionEngine>&
48 return _predictionEngines;
54 _predictionEngines.push_back(engine);
60 this->_predictionEngines = engines;
63 std::map<MemoryID, std::vector<PredictionEngine>>
66 std::map<MemoryID, std::vector<PredictionEngine>> engines;
69 const auto& derivedThis = derived<DerivedT>(
this);
70 const auto& ownEngines = derivedThis.predictionEngines();
71 if (not ownEngines.empty())
73 engines.emplace(derivedThis.id(), derivedThis.predictionEngines());
81 std::vector<PredictionEngine> _predictionEngines;
87 template <
class DerivedT>
93 std::map<MemoryID, std::vector<PredictionEngine>>
96 std::map<MemoryID, std::vector<PredictionEngine>> engines;
99 const auto& derivedThis = derived<DerivedT>(
this);
100 derivedThis.forEachChild(
101 [&engines](
const auto& child)
103 const auto& childMap = child.getAllPredictionEngines();
104 engines.insert(childMap.begin(), childMap.end());
108 const auto& ownEngines = derivedThis.predictionEngines();
109 if (not ownEngines.empty())
111 engines.emplace(derivedThis.id(), derivedThis.predictionEngines());