IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Changeset 7325


Ignore:
Timestamp:
Jun 2, 2006, 5:55:12 PM (20 years ago)
Author:
magnier
Message:

changing psError to psTrace in psMatrixGJSolve and psMinimizeLMM in some cases

Location:
trunk/psLib/src/math
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/psLib/src/math/psMatrix.c

    r7103 r7325  
    2121 *  @author Robert DeSonia, MHPCC
    2222 *
    23  *  @version $Revision: 1.38 $ $Name: not supported by cvs2svn $
    24  *  @date $Date: 2006-05-10 01:02:55 $
     23 *  @version $Revision: 1.39 $ $Name: not supported by cvs2svn $
     24 *  @date $Date: 2006-06-03 03:55:12 $
    2525 *
    2626 *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
     
    342342                    } else {
    343343                        if (ipiv[k] > 1) {
    344                             psError(PS_ERR_BAD_PARAMETER_VALUE, true, "Singular Matrix (1).\n");
     344                            // psError(PS_ERR_BAD_PARAMETER_VALUE, true, "Singular Matrix (1).\n");
     345                            psTrace(__func__, 4, "Singular Matrix (1).\n");
    345346                            goto fescape;
    346347                        }
     
    359360        indxc[i] = icol;
    360361        if (matrix[icol][icol] == 0.0) {
    361             psError(PS_ERR_BAD_PARAMETER_VALUE, true, "Singular Matrix (2).\n");
     362            // psError(PS_ERR_BAD_PARAMETER_VALUE, true, "Singular Matrix (2).\n");
     363            psTrace (__func__, 4, "Singular Matrix (2).\n");
    362364            goto fescape;
    363365        }
  • trunk/psLib/src/math/psMinimizeLMM.c

    r7300 r7325  
    1010 *  @author EAM, IfA
    1111 *
    12  *  @version $Revision: 1.15 $ $Name: not supported by cvs2svn $
    13  *  @date $Date: 2006-06-02 21:33:34 $
     12 *  @version $Revision: 1.16 $ $Name: not supported by cvs2svn $
     13 *  @date $Date: 2006-06-03 03:55:12 $
    1414 *
    1515 *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
     
    115115
    116116    if (false == psMatrixGJSolve(Alpha, Beta)) {
    117         psError(PS_ERR_UNKNOWN, false, "singular matrix in Guess ABP\n");
     117        // psError(PS_ERR_UNKNOWN, false, "singular matrix in Guess ABP\n");
    118118        psTrace (__func__, 4, "singular matrix in Guess ABP\n");
    119119        return(false);
Note: See TracChangeset for help on using the changeset viewer.