Changeset 5542 for trunk/psLib/src/math/psPolynomial.c
- Timestamp:
- Nov 18, 2005, 9:39:29 AM (20 years ago)
- File:
-
- 1 edited
-
trunk/psLib/src/math/psPolynomial.c (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/psLib/src/math/psPolynomial.c
r5294 r5542 7 7 * polynomials. It also contains a Gaussian functions. 8 8 * 9 * @version $Revision: 1.13 0$ $Name: not supported by cvs2svn $10 * @date $Date: 2005-1 0-12 21:02:20$9 * @version $Revision: 1.131 $ $Name: not supported by cvs2svn $ 10 * @date $Date: 2005-11-18 19:39:29 $ 11 11 * 12 12 * Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii … … 644 644 psPolynomialType type) 645 645 { 646 PS_ASSERT_INT_ POSITIVE(nX, NULL);647 PS_ASSERT_INT_ POSITIVE(nY, NULL);646 PS_ASSERT_INT_NONNEGATIVE(nX, NULL); 647 PS_ASSERT_INT_NONNEGATIVE(nY, NULL); 648 648 649 649 unsigned int x = 0; … … 682 682 psPolynomialType type) 683 683 { 684 PS_ASSERT_INT_ POSITIVE(nX, NULL);685 PS_ASSERT_INT_ POSITIVE(nY, NULL);686 PS_ASSERT_INT_ POSITIVE(nZ, NULL);684 PS_ASSERT_INT_NONNEGATIVE(nX, NULL); 685 PS_ASSERT_INT_NONNEGATIVE(nY, NULL); 686 PS_ASSERT_INT_NONNEGATIVE(nZ, NULL); 687 687 688 688 unsigned int x = 0; … … 731 731 psPolynomialType type) 732 732 { 733 PS_ASSERT_INT_ POSITIVE(nX, NULL);734 PS_ASSERT_INT_ POSITIVE(nY, NULL);735 PS_ASSERT_INT_ POSITIVE(nZ, NULL);736 PS_ASSERT_INT_ POSITIVE(nT, NULL);733 PS_ASSERT_INT_NONNEGATIVE(nX, NULL); 734 PS_ASSERT_INT_NONNEGATIVE(nY, NULL); 735 PS_ASSERT_INT_NONNEGATIVE(nZ, NULL); 736 PS_ASSERT_INT_NONNEGATIVE(nT, NULL); 737 737 738 738 unsigned int x = 0;
Note:
See TracChangeset
for help on using the changeset viewer.
