| 37 | namespace libRSF |
| 38 | { |
| 39 | class ErrorModelBase |
| 40 | { |
| 41 | public: |
| 42 | ErrorModelBase() = default; |
| 43 | virtual ~ErrorModelBase() = default; |
| 44 | |
| 45 | void enable() |
| 46 | { |
| 47 | _Enable = true; |
| 48 | } |
| 49 | |
| 50 | void disable() |
| 51 | { |
| 52 | _Enable = false; |
| 53 | } |
| 54 | |
| 55 | protected: |
| 56 | bool _Enable = true; |
| 57 | }; |
| 58 | |
| 59 | |
| 60 | template <int InputDimTemp, int OutputDimTemp, int ...StateDimsTemp> |
nothing calls this directly
no outgoing calls
no test coverage detected