| 653 | } |
| 654 | |
| 655 | void FactorGraph::setAllVariableInsideWindow(const double TimeWindow, const double CurrentTime) |
| 656 | { |
| 657 | for (auto const &State : _StateData) |
| 658 | { |
| 659 | setVariableInsideWindow(State.first, TimeWindow, CurrentTime); |
| 660 | } |
| 661 | } |
| 662 | |
| 663 | void FactorGraph::setAllConstantOutsideWindow(const double TimeWindow, const double CurrentTime) |
| 664 | { |
nothing calls this directly
no outgoing calls
no test coverage detected