Changeset 5541
- Timestamp:
- Nov 17, 2005, 5:05:52 PM (20 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/eam_rel8_b0/psLib/src/math/psPolynomial.c
r5294 r5541 7 7 * polynomials. It also contains a Gaussian functions. 8 8 * 9 * @version $Revision: 1.130 $ $Name: not supported by cvs2svn $10 * @date $Date: 2005-1 0-12 21:02:20$9 * @version $Revision: 1.130.4.1 $ $Name: not supported by cvs2svn $ 10 * @date $Date: 2005-11-18 03:05:52 $ 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.
