| 178 | } |
| 179 | |
| 180 | void FactorGraphStructure::getErrorModel(const FactorID &Factor, ErrorModelBase* &ErroModel) const |
| 181 | { |
| 182 | ceres::ResidualBlockId ID; |
| 183 | this->getResidualID(Factor, ID); |
| 184 | ErroModel = _Factors.at(ID).ErrorModel; |
| 185 | } |
| 186 | |
| 187 | void FactorGraphStructure::getErrorInputSize(const FactorID &Factor, int &ResidualSize) const |
| 188 | { |
no test coverage detected