diff options
Diffstat (limited to 'src/libs/lprof/cmsmatn.cpp')
-rw-r--r-- | src/libs/lprof/cmsmatn.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/libs/lprof/cmsmatn.cpp b/src/libs/lprof/cmsmatn.cpp index bca52717..bf583db3 100644 --- a/src/libs/lprof/cmsmatn.cpp +++ b/src/libs/lprof/cmsmatn.cpp @@ -44,7 +44,7 @@ LPMATN cdecl MATNmult(LPMATN a1, LPMATN a2); double cdecl MATNcross(LPMATN a); void cdecl MATNscalar (LPMATN a, double scl, LPMATN b); LPMATN cdecl MATNtranspose (LPMATN a); -BOOL cdecl MATNsolve(LPMATN a, LPMATN b); +bool cdecl MATNsolve(LPMATN a, LPMATN b); /* ------------------------------------------------------------ Implementation */ @@ -108,9 +108,9 @@ LPMATN MATNalloc(int Rows, int Cols) /* Gauss-Jordan elimination. There is also a more */ /* exahustive non-singular matrix checking part. */ -BOOL MATNsolve(LPMATN a, LPMATN b) +bool MATNsolve(LPMATN a, LPMATN b) { - BOOL status; + bool status; int n = a->Rows; int i, iCol=0, iRow=0, j, k; double fMax, fAbs, fSave, fInf, temp; |