Changeset 8669 for trunk/psModules/src/imcombine/pmImageSubtract.c
- Timestamp:
- Aug 29, 2006, 11:39:44 AM (20 years ago)
- File:
-
- 1 edited
-
trunk/psModules/src/imcombine/pmImageSubtract.c (modified) (9 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/psModules/src/imcombine/pmImageSubtract.c
r8246 r8669 7 7 * @author GLG, MHPCC 8 8 * 9 * @version $Revision: 1. 4$ $Name: not supported by cvs2svn $10 * @date $Date: 2006-08- 09 02:37:07$9 * @version $Revision: 1.5 $ $Name: not supported by cvs2svn $ 10 * @date $Date: 2006-08-29 21:39:44 $ 11 11 * 12 12 * Copyright 2004 Maui High Performance Computing Center, University of Hawaii … … 191 191 PS_ASSERT_VECTOR_NON_NULL(orders, NULL); 192 192 psTrace("psModules.imcombine", 3, 193 "Calling pmSubtractionKernelsAllocISIS(% d, %d, %d, %d)\n",193 "Calling pmSubtractionKernelsAllocISIS(%ld, %ld, %d, %d)\n", 194 194 sigmas->n, orders->n, size, spatialOrder); 195 195 PS_ASSERT_INT_POSITIVE(size, NULL); … … 307 307 308 308 psTrace("psModules.imcombine", 3, 309 "Exiting pmSubtractionKernelsAllocISIS(% d, %d, %d, %d)\n",309 "Exiting pmSubtractionKernelsAllocISIS(%ld, %ld, %d, %d)\n", 310 310 sigmas->n, orders->n, size, spatialOrder); 311 311 return(tmp); … … 679 679 } 680 680 psS32 nBF = kernels->u->n; 681 PS_ASSERT_VECTOR_SIZE(solution, nBF+1, NULL);681 PS_ASSERT_VECTOR_SIZE(solution, (long)nBF+1, NULL); 682 682 683 683 psS32 numCols = input->numCols; … … 826 826 } else { 827 827 PS_ASSERT_VECTOR_TYPE(stampVector, PS_TYPE_F64, false); 828 PS_ASSERT_VECTOR_SIZE(stampVector, numSolveParams, false);828 PS_ASSERT_VECTOR_SIZE(stampVector, (long)numSolveParams, false); 829 829 } 830 830 psVectorInit(stampVector, 0.0); … … 1038 1038 if (solution != NULL) { 1039 1039 PS_ASSERT_VECTOR_TYPE(solution, PS_TYPE_F64, NULL); 1040 PS_ASSERT_VECTOR_SIZE(solution, size, NULL);1040 PS_ASSERT_VECTOR_SIZE(solution, (long)size, NULL); 1041 1041 } else { 1042 1042 solution = psVectorAlloc(size, PS_TYPE_F64); … … 1070 1070 psVector *stampVector = stamp->vector; 1071 1071 PS_ASSERT_VECTOR_TYPE(stampVector, PS_TYPE_F64, NULL); 1072 PS_ASSERT_VECTOR_SIZE(stampVector, size, NULL);1072 PS_ASSERT_VECTOR_SIZE(stampVector, (long)size, NULL); 1073 1073 PS_ASSERT_IMAGE_TYPE(stampMatrix, PS_TYPE_F64, NULL); 1074 1074 PS_ASSERT_IMAGE_SIZE(stampMatrix, size, size, NULL); … … 1177 1177 } 1178 1178 psS32 nBF = kernels->u->n; 1179 PS_ASSERT_VECTOR_SIZE(solution, nBF+1, NULL);1179 PS_ASSERT_VECTOR_SIZE(solution, (long)nBF+1, NULL); 1180 1180 1181 1181 psS32 kernelSize = kernels->size; … … 1269 1269 1270 1270 psS32 nBF = kernels->u->n; 1271 PS_ASSERT_VECTOR_SIZE(solution, nBF+1, false);1271 PS_ASSERT_VECTOR_SIZE(solution, (long)nBF+1, false); 1272 1272 1273 1273 psVector *deviations = CalculateDeviations(NULL,
Note:
See TracChangeset
for help on using the changeset viewer.
