IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Changeset 37689


Ignore:
Timestamp:
Nov 28, 2014, 3:09:10 PM (12 years ago)
Author:
eugene
Message:

remove verbosity

File:
1 edited

Legend:

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

    r37645 r37689  
    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: eliminating 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.