/* Compute the determinant of a number matrix */ #ifndef DETERMINANT_H #define DETERMINANT_H #include "types.h" // determinant of a matrix int determinant_inplace(Number_Matrix M, Number* out); // LU decomposition int LU_dcmp_inplace(Number_Matrix M, int* sign_correction); #endif