We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8f89b00 commit 595439eCopy full SHA for 595439e
orocos_bfl/examples/mobile_robot.cpp
@@ -91,14 +91,14 @@ namespace BFL
91
}
92
93
94
- ColumnVector
+ const ColumnVector
95
MobileRobot::Measure()
96
{
97
return _meas_model->Simulate(_state);
98
99
100
101
102
MobileRobot::GetState()
103
104
return _state;
orocos_bfl/examples/mobile_robot.h
@@ -52,8 +52,8 @@ namespace BFL{
52
~MobileRobot();
53
54
void Move(MatrixWrapper::ColumnVector inputs);
55
- MatrixWrapper::ColumnVector Measure();
56
- MatrixWrapper::ColumnVector GetState(); //method only for simulation purposes
+ const MatrixWrapper::ColumnVector Measure();
+ const MatrixWrapper::ColumnVector GetState(); //method only for simulation purposes
57
58
private:
59
Gaussian* _system_Uncertainty;
0 commit comments