diff options
author | Thomas White <taw@physics.org> | 2019-03-13 15:41:05 +0100 |
---|---|---|
committer | Thomas White <taw@physics.org> | 2019-03-13 15:41:05 +0100 |
commit | bc84a4f8659244e11fddcb509664a2121bc40279 (patch) | |
tree | 6eeb71c185d0efcdd244853bad1cef91621df6e2 /tests | |
parent | 15e772078538ea071b873526d2ed64f965731bcb (diff) |
Rename rtnl_mtx_solve and rtnl_mtx_mult to make their purpose clearer
Diffstat (limited to 'tests')
-rw-r--r-- | tests/rational_check.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/rational_check.c b/tests/rational_check.c index 8957cfdd..484264d9 100644 --- a/tests/rational_check.c +++ b/tests/rational_check.c @@ -146,7 +146,7 @@ static int test_rational_matrix(gsl_rng *rng) gans = solve_svd(gvec, gm, &filt, 0); } while ( (gans==NULL) || (filt!=0) || (isnan(gsl_vector_get(gans,0))) ); - rtnl_mtx_solve(rm, rvec, rans); + transform_fractional_coords_rtnl(rm, rvec, rans); for ( i=0; i<size; i++ ) { if ( fabs(rtnl_as_double(rans[i]) - gsl_vector_get(gans, i) > 0.001) ) |