aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorThomas White <taw@physics.org>2019-03-12 14:31:49 +0100
committerThomas White <taw@physics.org>2019-03-12 14:31:49 +0100
commit4fdfdfa0eef645e290a8ab98c9ff6507c2bc1f5f (patch)
tree4993f3ee9bb3f001d19a5c833d060a357e7db4d6 /src
parentee77fdf67c9bb5430c7a8eb5005673e507964931 (diff)
Rename intmat_intvec_mult to transform_indices
Diffstat (limited to 'src')
-rw-r--r--src/whirligig.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/whirligig.c b/src/whirligig.c
index 209e7fbe..cc2b531e 100644
--- a/src/whirligig.c
+++ b/src/whirligig.c
@@ -84,7 +84,7 @@ static void do_op(const IntegerMatrix *op,
v[0] = h; v[1] = k; v[2] = l;
- ans = intmat_intvec_mult(op, v);
+ ans = transform_indices(op, v);
assert(ans != NULL);
*he = ans[0]; *ke = ans[1]; *le = ans[2];