| 149 | } |
| 150 | |
| 151 | void FactorGraph::addStateWithCheck(string Name, DataType Type, double Timestamp) |
| 152 | { |
| 153 | if (!this->getStateData().checkElement(Name, Timestamp)) |
| 154 | { |
| 155 | this->addState(Name, Type, Timestamp); |
| 156 | } |
| 157 | } |
| 158 | |
| 159 | void FactorGraph::addIMUPreintegrationFactor(StateList List, PreintegratedIMUResult IMUState) |
| 160 | { |
nothing calls this directly
no test coverage detected