| 539 | } |
| 540 | |
| 541 | void FactorGraph::removeAllStatesOutsideWindow(const double TimeWindow, const double CurrentTime) |
| 542 | { |
| 543 | for (auto const &State : _StateData) |
| 544 | { |
| 545 | removeStatesOutsideWindow(State.first, TimeWindow, CurrentTime); |
| 546 | } |
| 547 | } |
| 548 | |
| 549 | void FactorGraph::removeFactor(const FactorType CurrentFactorType, const double Timestamp) |
| 550 | { |
no outgoing calls
no test coverage detected