8 #ifndef TEST_ASSIMILATION_TRIDIAGSOLVE_H_
9 #define TEST_ASSIMILATION_TRIDIAGSOLVE_H_
11 #include <Eigen/Dense>
16 #include "eckit/testing/Test.h"
21 #include "oops/util/Expect.h"
22 #include "oops/util/FloatCompare.h"
28 const std::vector<double> diag{1.0, 1.0, 1.0};
29 const std::vector<double> sub{0.5, 0.5};
30 const std::vector<double> rhs{1.0, 0.5, 0.0};
31 std::vector<double> sol;
35 EXPECT_EQUAL(sol[0], 1.0);
36 EXPECT_EQUAL(sol[1], 0.0);
37 EXPECT_EQUAL(sol[2], 0.0);
42 const int members = 3;
43 Eigen::MatrixXd A0 = Eigen::MatrixXd::Ones(members, members);
44 Eigen::MatrixXd A1 = Eigen::MatrixXd::Ones(members, members);
45 Eigen::MatrixXd B0 = Eigen::MatrixXd::Ones(members, members);
46 Eigen::MatrixXd B1 = Eigen::MatrixXd::Ones(members, members);
54 Eigen::MatrixXd beta0 = Eigen::MatrixXd::Ones(members, members);
59 bool complexValues =
false;
63 EXPECT(oops::is_close_absolute(ss(0, 0), 4.0, 1e-9));
64 EXPECT(oops::is_close_absolute(ss(0, 1), 2.0, 1e-9));
65 EXPECT(oops::is_close_absolute(ss(0, 2), 2.0, 1e-9));
66 EXPECT(oops::is_close_absolute(ss(1, 0), -2.0, 1e-9));
67 EXPECT(oops::is_close_absolute(ss(1, 1), 1.0, 1e-9));
68 EXPECT(oops::is_close_absolute(ss(1, 2), 0.0, 1e-9));
69 EXPECT(oops::is_close_absolute(ss(2, 0), 0.0, 1e-9));
70 EXPECT(oops::is_close_absolute(ss(2, 1), -1.0, 1e-9));
71 EXPECT(oops::is_close_absolute(ss(2, 2), 1.0, 1e-9));
72 EXPECT(oops::is_close_absolute(ss(3, 0), -1.0, 1e-9));
73 EXPECT(oops::is_close_absolute(ss(3, 1), -1.0, 1e-9));
74 EXPECT(oops::is_close_absolute(ss(3, 2), -2.0, 1e-9));
75 EXPECT(oops::is_close_absolute(ss(4, 0), 2.0, 1e-9));
76 EXPECT(oops::is_close_absolute(ss(4, 1), 1.0, 1e-9));
77 EXPECT(oops::is_close_absolute(ss(4, 2), 1.0, 1e-9));
78 EXPECT(oops::is_close_absolute(ss(5, 0), -1.0, 1e-9));
79 EXPECT(oops::is_close_absolute(ss(5, 1), 0.0, 1e-9));
80 EXPECT(oops::is_close_absolute(ss(5, 2), 0.0, 1e-9));
81 EXPECT_EQUAL(complexValues,
false);
84 CASE(
"assimilation/TriDiagSolve/TriDiagSolve") {
88 CASE(
"assimilation/TriDiagSolve/blockTriDiagSolve") {
94 std::string
testid()
const override {
return "test::TriDiagSolve";}
std::string testid() const override
void clear() const override
void register_tests() const override
void TriDiagSolve(const std::vector< double > &diag, const std::vector< double > &sub, const std::vector< double > &rhs, std::vector< double > &sol)
void blockTriDiagSolve(const std::vector< Eigen::MatrixXd > &alphas, const std::vector< Eigen::MatrixXd > &betas, const Eigen::MatrixXd &beta0, Eigen::MatrixXd &ss, bool &complexValues, const int members)
void test_blockTriDiagSolve()
CASE("test_linearmodelparameterswrapper_valid_name")