| 595 | } |
| 596 | |
| 597 | void FactorGraph::removeAllFactorsOutsideWindow(const double TimeWindow, const double CurrentTime) |
| 598 | { |
| 599 | std::vector<FactorType> Factors; |
| 600 | _Structure.getFactorTypes(Factors); |
| 601 | for (auto const &Factor : Factors) |
| 602 | { |
| 603 | removeFactorsOutsideWindow(Factor, TimeWindow, CurrentTime); |
| 604 | } |
| 605 | } |
| 606 | |
| 607 | void FactorGraph::setConstantOutsideWindow(const string Name, const double TimeWindow, const double CurrentTime) |
| 608 | { |
no test coverage detected