From ab4d8729625946ad97147d33a9a653264d7ddc70 Mon Sep 17 00:00:00 2001 From: FrancoisCarouge Date: Sat, 14 Dec 2024 12:28:05 -0800 Subject: [PATCH] [tidy] remove unused test variables --- test/kalman_constructor_default_5x4x0.cpp | 1 - test/kalman_h_5x4x3.cpp | 1 - 2 files changed, 2 deletions(-) diff --git a/test/kalman_constructor_default_5x4x0.cpp b/test/kalman_constructor_default_5x4x0.cpp index 9c1692101..d205732d9 100644 --- a/test/kalman_constructor_default_5x4x0.cpp +++ b/test/kalman_constructor_default_5x4x0.cpp @@ -57,7 +57,6 @@ template using matrix = matrix; const auto z4x1{zero>}; const auto z4x4{zero>}; const auto z5x1{zero>}; - const auto z5x5{zero>}; assert(filter.f() == i5x5); assert(filter.k() == i5x4); diff --git a/test/kalman_h_5x4x3.cpp b/test/kalman_h_5x4x3.cpp index 72a39e30b..00cf0da78 100644 --- a/test/kalman_h_5x4x3.cpp +++ b/test/kalman_h_5x4x3.cpp @@ -51,7 +51,6 @@ template using matrix = matrix; [[maybe_unused]] auto test{[] { const auto i4x5{identity>}; const auto z4x5{zero>}; - const auto z4{zero>}; kalman filter{state{vector<5>{0., 0., 0., 0., 0.}}, output>, input>, update_types, prediction_types};