Skip to content

Commit

Permalink
Failed renaming.
Browse files Browse the repository at this point in the history
  • Loading branch information
pleroy committed Apr 21, 2024
1 parent 703db98 commit be14eb9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions numerics/matrix_computations_test.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -112,13 +112,13 @@ TYPED_TEST(MatrixComputationsTest, ForwardSubstitution) {
EXPECT_THAT(x4_actual, AlmostEquals(x4_expected, 0));
}

TYPED_TEST(MatrixComputationsTest, UnitriangularGramSchmidt) {
TYPED_TEST(MatrixComputationsTest, ClassicalGramSchmidt) {
using Matrix = typename std::tuple_element<3, TypeParam>::type;
Matrix const m4({1, 2, 3, -4,
5, 6, 7, 8,
9, 8, -7, 6,
5, 4, 3, 2});
auto const qr = UnitriangularGramSchmidt(m4);
auto const qr = ClassicalGramSchmidt(m4);

// Check that the decomposition is correct.
auto const near_m4 = qr.Q * Matrix(qr.R);
Expand Down

0 comments on commit be14eb9

Please sign in to comment.