Changeset 15692
- Timestamp:
- Nov 26, 2007, 4:27:19 PM (18 years ago)
- File:
-
- 1 edited
-
trunk/psLib/src/math/psBinaryOp.c (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/psLib/src/math/psBinaryOp.c
r12433 r15692 30 30 * @author Robert DeSonia, MHPCC 31 31 * 32 * @version $Revision: 1.1 4$ $Name: not supported by cvs2svn $33 * @date $Date: 2007- 03-14 02:35:02$32 * @version $Revision: 1.15 $ $Name: not supported by cvs2svn $ 33 * @date $Date: 2007-11-27 02:27:19 $ 34 34 * 35 35 * Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii … … 364 364 } else if (!strncmp(OP, "^", 1)) { \ 365 365 BINARY_TYPE(DIM1,DIM2,OUT,IN1,pow(*i1,*i2),IN2); \ 366 } else if (!strnc mp(OP, "min", 3)) {\366 } else if (!strncasecmp(OP, "min", 3)) { \ 367 367 BINARY_TYPE(DIM1,DIM2,OUT,IN1,fmin(*i1,*i2),IN2); \ 368 } else if (!strnc mp(OP, "max", 3)) {\368 } else if (!strncasecmp(OP, "max", 3)) { \ 369 369 BINARY_TYPE(DIM1,DIM2,OUT,IN1,fmax(*i1,*i2),IN2); \ 370 370 } else { \
Note:
See TracChangeset
for help on using the changeset viewer.
