Skip to content

Commit bd62ec6

Browse files
fix function name and mark test as broken
1 parent 2f67dec commit bd62ec6

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

src/tests/test_determinant.c

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88

99
#include "test_determinant.h"
1010

11+
/* XXX this test is broken at the moment XXX */
1112
int test_determinant()
1213
{
1314
const char *methods[] = { "QR_FLOAT80", "LU_FLOAT80", NULL };
@@ -36,7 +37,7 @@ int test_determinant()
3637
matrix_set(M, 1,0, log80(1e-1000L));
3738
matrix_set(M, 1,1, log80(1L));
3839

39-
AssertAlmostEqual(&test, matrix_logdet1mM(&casimir, M, M_sign), log(14));
40+
AssertAlmostEqual(&test, matrix_logdetIdpM(&casimir, M, M_sign), log(14));
4041
}
4142

4243
matrix_float80_free(M);

0 commit comments

Comments
 (0)