aboutsummaryrefslogtreecommitdiff
path: root/libcrystfel/src/integer_matrix.h
diff options
context:
space:
mode:
authorThomas White <taw@physics.org>2019-03-12 14:31:26 +0100
committerThomas White <taw@physics.org>2019-03-12 14:31:26 +0100
commitee77fdf67c9bb5430c7a8eb5005673e507964931 (patch)
tree0e58f81bf0495d3a84f333ddfb5142dd8af3805e /libcrystfel/src/integer_matrix.h
parentf32d46e54f5b9d645fb65accec52126099b49589 (diff)
Get rid of two unused functions
Diffstat (limited to 'libcrystfel/src/integer_matrix.h')
-rw-r--r--libcrystfel/src/integer_matrix.h4
1 files changed, 0 insertions, 4 deletions
diff --git a/libcrystfel/src/integer_matrix.h b/libcrystfel/src/integer_matrix.h
index aeea38dd..2da2328a 100644
--- a/libcrystfel/src/integer_matrix.h
+++ b/libcrystfel/src/integer_matrix.h
@@ -71,12 +71,8 @@ extern IntegerMatrix *intmat_create_3x3(signed int m11, signed int m12, signed i
signed int m31, signed int m32, signed int m33);
/* Matrix-vector multiplication */
-extern int intmat_floatvec_mult(const IntegerMatrix *m, const float *vec,
- float *ans);
extern signed int *intmat_intvec_mult(const IntegerMatrix *m,
const signed int *vec);
-extern int intmat_rationalvec_mult(const IntegerMatrix *m, const Rational *vec,
- Rational *ans);
/* Matrix-matrix multiplication */
extern IntegerMatrix *intmat_intmat_mult(const IntegerMatrix *a,