aboutsummaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorThomas White <taw@physics.org>2019-08-28 15:33:46 +0200
committerThomas White <taw@physics.org>2019-08-28 16:49:46 +0200
commit24e2744b8b53dde715f59d98f969d44a10530675 (patch)
tree1c62b4b0c0cb5e47084aa7dbcf4293e86ad047e3 /tests
parent941889a4d9fc9663d70f80eb63c79c73eafb06c9 (diff)
Rationalise matrix mutliplication
compare_reindexed_cell_parameters still needs to be updated
Diffstat (limited to 'tests')
-rw-r--r--tests/transformation_check.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/transformation_check.c b/tests/transformation_check.c
index 33f44340..8c8f7fa0 100644
--- a/tests/transformation_check.c
+++ b/tests/transformation_check.c
@@ -396,7 +396,7 @@ int main(int argc, char *argv[])
intmat_set_all_3x3(part2, 0,0,1,
0,1,0,
-1,0,0);
- tfn = intmat_intmat_mult(part1, part2);
+ tfn = intmat_times_intmat(part1, part2);
fail += check_identity(cell, tfn);
intmat_free(part1);
intmat_free(part2);