IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
May 4, 2008, 2:09:04 PM (18 years ago)
Author:
eugene
Message:

merging from eam_branch_20080430 : cleanups for tests, minor fixes from tests, reduced verbosity level in some places, add UPDATE and RESET directives to MULTI and METADATA in config files

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/psLib/test/math/tap_psPolynomial.c

    r13307 r17515  
    1616*    XXX: Compare to FLT_EPSILON
    1717*
    18 *    @version $Revision: 1.4 $  $Name: not supported by cvs2svn $
    19 *    @date $Date: 2007-05-08 06:35:16 $
     18*    @version $Revision: 1.5 $  $Name: not supported by cvs2svn $
     19*    @date $Date: 2008-05-05 00:09:04 $
    2020*
    2121*  Copyright 2004-2005 Maui High Performance Computing Center, Univ. of Hawaii
     
    6161                errorFlag = true;
    6262            }
    63             if (my1DPoly->mask[i] != 0) {
    64                 diag("Mask[%d] %d not as expected %d", i, my1DPoly->mask[i], 0);
     63            if (my1DPoly->coeffMask[i] != 0) {
     64                diag("Mask[%d] %d not as expected %d", i, my1DPoly->coeffMask[i], 0);
    6565                errorFlag = true;
    6666            }
     
    135135                    errorFlag = true;
    136136                }
    137                 if (my2DPoly->mask[i][j] != 0) {
    138                     diag("Mask[%d][%d] %d not as expected %d", i, j, my2DPoly->mask[i][j], 0);
     137                if (my2DPoly->coeffMask[i][j] != 0) {
     138                    diag("Mask[%d][%d] %d not as expected %d", i, j, my2DPoly->coeffMask[i][j], 0);
    139139                    errorFlag = true;
    140140                }
     
    214214                        errorFlag = true;
    215215                    }
    216                     if (my3DPoly->mask[i][j][k] != 0) {
     216                    if (my3DPoly->coeffMask[i][j][k] != 0) {
    217217                        diag("Mask[%d][%d][%d] %d not as expected %d",
    218                              i, j, k, my3DPoly->mask[i][j][k], 0);
     218                             i, j, k, my3DPoly->coeffMask[i][j][k], 0);
    219219                        errorFlag = true;
    220220                    }
     
    301301                            errorFlag = true;
    302302                        }
    303                         if (my4DPoly->mask[i][j][k][l] != 0) {
     303                        if (my4DPoly->coeffMask[i][j][k][l] != 0) {
    304304                            diag("Mask[%d][%d][%d][%d] %d not as expected %d",
    305                                  i, j, k, l, my4DPoly->mask[i][j][k][l], 0);
     305                                 i, j, k, l, my4DPoly->coeffMask[i][j][k][l], 0);
    306306                            errorFlag = true;
    307307                        }
Note: See TracChangeset for help on using the changeset viewer.