| 764 | } |
| 765 | |
| 766 | void FactorGraph::getFactorsOfState(const string Name, const double Timestamp, const int Number, std::vector<FactorID> &Factors) const |
| 767 | { |
| 768 | StateID State(Name, Timestamp, Number); |
| 769 | _Structure.getFactorsOfState(State, Factors); |
| 770 | } |
| 771 | |
| 772 | int FactorGraph::countFactorsOfType(const FactorType CurrentFactorType) const |
| 773 | { |
nothing calls this directly
no outgoing calls
no test coverage detected