IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Changeset 37645


Ignore:
Timestamp:
Nov 20, 2014, 6:30:12 AM (12 years ago)
Author:
eugene
Message:

fix a typo

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/eam_branches/ipp-20140904/Ohana/src/libohana/src/gaussj.c

    r37643 r37645  
    108108    if (fabs(A[maxcol][maxcol]) < MIN_PIVOT) {
    109109      // we are ill-conditioned.  set this row & col to 0.0, 1.0 on pivot
    110       fprintf (stderr, "WARNING: elliminating degenerate pivot %lf @ A[%d][%d]\n", A[maxcol][maxcol], maxcol, maxcol);
     110      fprintf (stderr, "WARNING: eliminating degenerate pivot %lf @ A[%d][%d]\n", A[maxcol][maxcol], maxcol, maxcol);
    111111      for (col = 0; col < N; col++) A[maxcol][col] = 0.0;
    112112      for (col = 0; col < M; col++) B[maxcol][col] = 0.0;
Note: See TracChangeset for help on using the changeset viewer.