Comparing to the surrounding functions in this file, this was clearly meant to
be checking the type of the matrix not setting it. This was benign as, due to a
separate problem, assertions are disabled in this file, making this a no-op. The
next commit will re-enable assertions, which caused this issue to be discovered
through a compiler error.
- Lefty artifacts are no longer installed when Lefty is disabled #2153
- Smyrna artifacts are no longer installed when Smyrna is disabled
- calling convention mismatches in delaunay.c’s GTS code
+- impure assertion in `jacobi`
## [2.49.3] – 2021-10-22
x = MALLOC(sizeof(real)*n);
y = MALLOC(sizeof(real)*n);
b = MALLOC(sizeof(real)*n);
- assert(A->type = MATRIX_TYPE_REAL);
+ assert(A->type == MATRIX_TYPE_REAL);
ia = A->ia; ja = A->ja; a = (real*) A->a;
for (k = 0; k < dim; k++){