IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Sep 7, 2005, 2:02:48 PM (21 years ago)
Author:
gusciora
Message:

....

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/psLib/src/math/psPolynomial.h

    r4963 r4969  
    1111 *  @author GLG, MHPCC
    1212 *
    13  *  @version $Revision: 1.54 $ $Name: not supported by cvs2svn $
    14  *  @date $Date: 2005-09-07 23:46:04 $
     13 *  @version $Revision: 1.55 $ $Name: not supported by cvs2svn $
     14 *  @date $Date: 2005-09-08 00:02:48 $
    1515 *
    1616 *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
     
    246246);
    247247
     248/** Checks the type of a particular pointer.
     249 *
     250 *  Uses the appropriate deallocation function in psMemBlock to check the ptr datatype.
     251 *
     252 *  @return bool:       True if the pointer matches a psPolynomial1D structure, false otherwise.
     253 */
     254bool psMemCheckPolynomial1D(
     255    psPtr ptr                          ///< the pointer whose type to check
     256);
     257
     258/** Checks the type of a particular pointer.
     259 *
     260 *  Uses the appropriate deallocation function in psMemBlock to check the ptr datatype.
     261 *
     262 *  @return bool:       True if the pointer matches a psPolynomial2D structure, false otherwise.
     263 */
     264bool psMemCheckPolynomial2D(
     265    psPtr ptr                          ///< the pointer whose type to check
     266);
     267
     268/** Checks the type of a particular pointer.
     269 *
     270 *  Uses the appropriate deallocation function in psMemBlock to check the ptr datatype.
     271 *
     272 *  @return bool:       True if the pointer matches a psPolynomial3D structure, false otherwise.
     273 */
     274bool psMemCheckPolynomial3D(
     275    psPtr ptr                          ///< the pointer whose type to check
     276);
     277
     278/** Checks the type of a particular pointer.
     279 *
     280 *  Uses the appropriate deallocation function in psMemBlock to check the ptr datatype.
     281 *
     282 *  @return bool:       True if the pointer matches a psPolynomial4D structure, false otherwise.
     283 */
     284bool psMemCheckPolynomial4D(
     285    psPtr ptr                          ///< the pointer whose type to check
     286);
     287
    248288/** \} */ // End of MathGroup Functions
    249289
Note: See TracChangeset for help on using the changeset viewer.