MCPcopy Create free account
hub / github.com/TUC-ProAut/libRSF / ErrorModelBase

Class ErrorModelBase

include/error_models/ErrorModel.h:39–57  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

37namespace 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>

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected