Skip to content

Commit

Permalink
Fix invalid use of operator^ in matrix test
Browse files Browse the repository at this point in the history
  • Loading branch information
calcmogul committed Jan 10, 2025
1 parent 5a44974 commit 7996009
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gtsam/base/tests/testMatrix.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -567,7 +567,7 @@ TEST(Matrix, matrix_vector_multiplication )
Vector AtAv = Vector3(142., 188., 234.);

EQUALITY(A*v,Av);
EQUALITY(A^Av,AtAv);
EQUALITY(A.transpose() * Av,AtAv);
}

/* ************************************************************************* */
Expand Down

0 comments on commit 7996009

Please sign in to comment.