| 744 | } |
| 745 | |
| 746 | void FactorGraph::enableErrorModels() |
| 747 | { |
| 748 | std::vector<FactorType> Factors; |
| 749 | _Structure.getFactorTypes(Factors); |
| 750 | for (const auto &Factor : Factors) |
| 751 | { |
| 752 | this->enableErrorModel(Factor); |
| 753 | } |
| 754 | } |
| 755 | |
| 756 | void FactorGraph::disableErrorModels() |
| 757 | { |
nothing calls this directly
no test coverage detected