Skip to content

Commit

Permalink
[test] Minor correction to 5a8a099
Browse files Browse the repository at this point in the history
  • Loading branch information
krivenko committed Sep 3, 2022
1 parent 5a8a099 commit 1463313
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions test/armadillo/symmetric.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,6 @@ TEST_CASE("Symmetric eigenproblem is solved", "[solver_symmetric]") {
}

SECTION("Generalized eigenproblem: Shift-and-Invert mode") {
double sigma = 2.0;
decltype(A) op_mat = inv(A - sigma * M) * M;

auto op = [&](vv_t in, vv_t out) { out = op_mat * in; };
Expand All @@ -76,7 +75,6 @@ TEST_CASE("Symmetric eigenproblem is solved", "[solver_symmetric]") {
}

SECTION("Generalized eigenproblem: Buckling mode") {
double sigma = 3.3;
decltype(A) op_mat = inv(M - sigma * A) * M;

auto op = [&](vv_t in, vv_t out) { out = op_mat * in; };
Expand All @@ -89,7 +87,6 @@ TEST_CASE("Symmetric eigenproblem is solved", "[solver_symmetric]") {
}

SECTION("Generalized eigenproblem: Cayley transformed mode") {
double sigma = 2.0;
decltype(A) op_mat = inv(A - sigma * M) * (A + sigma * M);

auto op = [&](vv_t in, vv_t out) { out = op_mat * in; };
Expand Down Expand Up @@ -150,7 +147,6 @@ TEST_CASE("Symmetric eigenproblem is solved", "[solver_symmetric]") {
}

SECTION("Generalized eigenproblem: Shift-and-Invert mode") {
double sigma = 2.0;
decltype(A) op_mat = inv(A - sigma * M) * M;

auto op = [&](vv_t in, vv_t out) { out = op_mat * in; };
Expand Down

0 comments on commit 1463313

Please sign in to comment.