Changeset 8232 for trunk/psLib/src/math/psPolynomial.c
- Timestamp:
- Aug 8, 2006, 1:32:23 PM (20 years ago)
- Location:
- trunk/psLib/src
- Files:
-
- 2 edited
-
. (modified) (1 prop)
-
math/psPolynomial.c (modified) (6 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/psLib/src
- Property svn:ignore
-
old new 10 10 libpslib.la.temp 11 11 config.h.in 12 psErrorText.h13 12 *.bb 14 13 *.bbg
-
- Property svn:ignore
-
trunk/psLib/src/math/psPolynomial.c
r7914 r8232 7 7 * polynomials. It also contains a Gaussian functions. 8 8 * 9 * @version $Revision: 1.14 7$ $Name: not supported by cvs2svn $10 * @date $Date: 2006-0 7-15 02:57:12$9 * @version $Revision: 1.148 $ $Name: not supported by cvs2svn $ 10 * @date $Date: 2006-08-08 23:32:23 $ 11 11 * 12 12 * Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii … … 32 32 #include "psPolynomial.h" 33 33 #include "psAssert.h" 34 #include "psErrorText.h" 34 35 35 36 36 /*****************************************************************************/ … … 795 795 } else { 796 796 psError(PS_ERR_BAD_PARAMETER_TYPE, true, 797 PS_ERRORTEXT_psPolynomial_INVALID_POLYNOMIAL_TYPE,797 _("Unknown polynomial type 0x%x found. Evaluation failed."), 798 798 poly->type); 799 799 } … … 845 845 } else { 846 846 psError(PS_ERR_BAD_PARAMETER_TYPE, true, 847 PS_ERRORTEXT_psPolynomial_INVALID_POLYNOMIAL_TYPE,847 _("Unknown polynomial type 0x%x found. Evaluation failed."), 848 848 poly->type); 849 849 } … … 924 924 } else { 925 925 psError(PS_ERR_BAD_PARAMETER_TYPE, true, 926 PS_ERRORTEXT_psPolynomial_INVALID_POLYNOMIAL_TYPE,926 _("Unknown polynomial type 0x%x found. Evaluation failed."), 927 927 poly->type); 928 928 } … … 1040 1040 } else { 1041 1041 psError(PS_ERR_BAD_PARAMETER_TYPE, true, 1042 PS_ERRORTEXT_psPolynomial_INVALID_POLYNOMIAL_TYPE,1042 _("Unknown polynomial type 0x%x found. Evaluation failed."), 1043 1043 poly->type); 1044 1044 }
Note:
See TracChangeset
for help on using the changeset viewer.
