Skip to content

Commit

Permalink
[tidy] remove unused test variables
Browse files Browse the repository at this point in the history
  • Loading branch information
FrancoisCarouge committed Dec 14, 2024
1 parent a68a66f commit ab4d872
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 2 deletions.
1 change: 0 additions & 1 deletion test/kalman_constructor_default_5x4x0.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,6 @@ template <auto Row, auto Column> using matrix = matrix<double, Row, Column>;
const auto z4x1{zero<vector<4>>};
const auto z4x4{zero<matrix<4, 4>>};
const auto z5x1{zero<vector<5>>};
const auto z5x5{zero<matrix<5, 5>>};

assert(filter.f() == i5x5);
assert(filter.k() == i5x4);
Expand Down
1 change: 0 additions & 1 deletion test/kalman_h_5x4x3.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,6 @@ template <auto Row, auto Column> using matrix = matrix<double, Row, Column>;
[[maybe_unused]] auto test{[] {
const auto i4x5{identity<matrix<4, 5>>};
const auto z4x5{zero<matrix<4, 5>>};
const auto z4{zero<vector<4>>};
kalman filter{state{vector<5>{0., 0., 0., 0., 0.}}, output<vector<4>>,
input<vector<3>>, update_types<double, float, int>,
prediction_types<int, float, double>};
Expand Down

0 comments on commit ab4d872

Please sign in to comment.