Skip to content

Commit

Permalink
Check symm is defined correctly
Browse files Browse the repository at this point in the history
  • Loading branch information
terasakisatoshi committed Feb 2, 2025
1 parent 3b7401e commit 4fbbe07
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions test/basis.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -190,15 +190,15 @@ TEST_CASE("FiniteTempBasis consistency tests", "[basis]") {
REQUIRE(sve->v[1].l == 1);
REQUIRE(sve->v[2].l == 2);

//REQUIRE(sve->u[1].symm == 1);
//REQUIRE(sve->u[2].symm == -1);
//REQUIRE(sve->u[3].symm == 1);
//REQUIRE(sve->u[4].symm == -1);

//REQUIRE(sve->v[1].symm == 1);
//REQUIRE(sve->v[2].symm == -1);
//REQUIRE(sve->v[3].symm == 1);
//REQUIRE(sve->v[4].symm == -1);
REQUIRE(sve->u[0].symm == 1);
REQUIRE(sve->u[1].symm == -1);
REQUIRE(sve->u[2].symm == 1);
REQUIRE(sve->u[3].symm == -1);

REQUIRE(sve->v[0].symm == 1);
REQUIRE(sve->v[1].symm == -1);
REQUIRE(sve->v[2].symm == 1);
REQUIRE(sve->v[3].symm == -1);

//std::cout << "Singular values: " << s.transpose() << std::endl;
/*
Expand Down

0 comments on commit 4fbbe07

Please sign in to comment.