| 192 | } |
| 193 | |
| 194 | void FactorGraph::setVariable(const string Name, const double Timestamp) |
| 195 | { |
| 196 | for (int StateNumber = _StateData.countElement(Name, Timestamp); StateNumber > 0; --StateNumber) |
| 197 | { |
| 198 | _Graph.SetParameterBlockVariable(_StateData.getElement(Name, Timestamp, StateNumber - 1).getMeanPointer()); |
| 199 | } |
| 200 | } |
| 201 | |
| 202 | void FactorGraph::setSubsetConstant(const string Name, const double Timestamp, const int Number, const std::vector<int> &ConstantIndex) |
| 203 | { |
nothing calls this directly
no test coverage detected