Changeset 4029 for trunk/psLib/src/math/psBinaryOp.c
- Timestamp:
- May 25, 2005, 10:26:55 AM (21 years ago)
- File:
-
- 1 edited
-
trunk/psLib/src/math/psBinaryOp.c (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/psLib/src/math/psBinaryOp.c
r3182 r4029 30 30 * @author Robert DeSonia, MHPCC 31 31 * 32 * @version $Revision: 1. 1$ $Name: not supported by cvs2svn $33 * @date $Date: 2005-0 2-10 02:36:41$32 * @version $Revision: 1.2 $ $Name: not supported by cvs2svn $ 33 * @date $Date: 2005-05-25 20:26:55 $ 34 34 * 35 35 * Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii … … 439 439 } 440 440 441 PS_ PTR_CHECK_NULL_GENERAL(input1, psBinaryOp_EXIT);442 PS_ PTR_CHECK_NULL_GENERAL(input2, psBinaryOp_EXIT);443 PS_ PTR_CHECK_NULL_GENERAL(op, psBinaryOp_EXIT);444 445 PS_ PTR_CHECK_TYPE_EQUAL_GENERAL(input1,input2, psBinaryOp_EXIT);446 447 PS_ PTR_CHECK_DIMEN_GENERAL_NOT(input1, PS_DIMEN_OTHER, psBinaryOp_EXIT);448 PS_ PTR_CHECK_DIMEN_GENERAL_NOT(input2, PS_DIMEN_OTHER, psBinaryOp_EXIT);441 PS_ASSERT_GENERAL_PTR_NON_NULL(input1, psBinaryOp_EXIT); 442 PS_ASSERT_GENERAL_PTR_NON_NULL(input2, psBinaryOp_EXIT); 443 PS_ASSERT_GENERAL_PTR_NON_NULL(op, psBinaryOp_EXIT); 444 445 PS_ASSERT_PTRS_TYPE_EQUAL_GENERAL(input1,input2, psBinaryOp_EXIT); 446 447 PS_ASSERT_PTR_DIMEN_GENERAL_NOT(input1, PS_DIMEN_OTHER, psBinaryOp_EXIT); 448 PS_ASSERT_PTR_DIMEN_GENERAL_NOT(input2, PS_DIMEN_OTHER, psBinaryOp_EXIT); 449 449 450 450 psType* psType1 = (psType*)in1;
Note:
See TracChangeset
for help on using the changeset viewer.
