| 68 | |
| 69 | /** noise model */ |
| 70 | struct ErrorModelConfig |
| 71 | { |
| 72 | ErrorModelConfig():MixtureType(ErrorModelMixtureType::None), TuningType(ErrorModelTuningType::None) {}; |
| 73 | |
| 74 | ErrorModelType Type; |
| 75 | Vector Parameter; |
| 76 | |
| 77 | ErrorModelMixtureType MixtureType; /**< only if a GMM is used */ |
| 78 | ErrorModelTuningType TuningType; /**< only if a GMM is used */ |
| 79 | bool IncrementalTuning = false; |
| 80 | }; |
| 81 | |
| 82 | /** factor configuration */ |
| 83 | struct FactorConfig |
nothing calls this directly
no outgoing calls
no test coverage detected