Skip to content

Commit

Permalink
minor fix
Browse files Browse the repository at this point in the history
  • Loading branch information
bendou committed Jan 7, 2019
1 parent fe502ad commit c7fd861
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion TestsMathToolKitCPP/TestNAlgebra/TestNPMatrixFuncOp.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -196,7 +196,7 @@ TEST_F(NPMatrixFuncOpTest, VectorProd) {

TEST_F(NPMatrixFuncOpTest, Pow) {
mat_t b_pow_2{_b};
b_pow_2(1, 1, 2, 2) = b_pow_2(1, 1, 2, 2); * b_pow_2(1, 1, 2, 2);
b_pow_2(1, 1, 2, 2) = b_pow_2(1, 1, 2, 2);
b_pow_2(1, 1, 2, 2) *= b_pow_2(1, 1, 2, 2);

EXPECT_EQ(_b(1, 1, 2, 2) ^ 2, b_pow_2(1, 1, 2, 2));
Expand Down

0 comments on commit c7fd861

Please sign in to comment.