Changeset 5074 for trunk/psLib/src/math/psPolynomial.c
- Timestamp:
- Sep 20, 2005, 10:48:35 AM (21 years ago)
- File:
-
- 1 edited
-
trunk/psLib/src/math/psPolynomial.c (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/psLib/src/math/psPolynomial.c
r5066 r5074 7 7 * polynomials. It also contains a Gaussian functions. 8 8 * 9 * @version $Revision: 1.12 1$ $Name: not supported by cvs2svn $10 * @date $Date: 2005-09- 19 19:53:13$9 * @version $Revision: 1.122 $ $Name: not supported by cvs2svn $ 10 * @date $Date: 2005-09-20 20:48:35 $ 11 11 * 12 12 * Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii … … 218 218 for (loop_x = 0; loop_x < poly->n; loop_x++) { 219 219 if (poly->mask[loop_x] == 0) { 220 psTrace(".psLib.dataManip.psPolynomial.ordPolynomial1DEval", 10, 220 // XXX: If you set the tracelevel to 10 here, and later set the tracelevel to 221 // 2 or higher in the test code, you get seg faults. 222 psTrace(".psLib.dataManip.psPolynomial.ordPolynomial1DEval", 8, 221 223 "polysum+= sum*coeff [%lf+= (%lf * %lf)\n", polySum, xSum, poly->coeff[loop_x]); 222 224 polySum += xSum * poly->coeff[loop_x];
Note:
See TracChangeset
for help on using the changeset viewer.
