| 184 | } |
| 185 | |
| 186 | void FactorGraph::setConstant(const string Name, const double Timestamp) |
| 187 | { |
| 188 | for (int StateNumber = _StateData.countElement(Name, Timestamp); StateNumber > 0; --StateNumber) |
| 189 | { |
| 190 | _Graph.SetParameterBlockConstant(_StateData.getElement(Name, Timestamp, StateNumber - 1).getMeanPointer()); |
| 191 | } |
| 192 | } |
| 193 | |
| 194 | void FactorGraph::setVariable(const string Name, const double Timestamp) |
| 195 | { |
nothing calls this directly
no test coverage detected