Changeset e0a8a3c in sasview
- Timestamp:
- Aug 24, 2009 2:59:30 PM (15 years ago)
- Branches:
- master, ESS_GUI, ESS_GUI_Docs, ESS_GUI_batch_fitting, ESS_GUI_bumps_abstraction, ESS_GUI_iss1116, ESS_GUI_iss879, ESS_GUI_iss959, ESS_GUI_opencl, ESS_GUI_ordering, ESS_GUI_sync_sascalc, costrafo411, magnetic_scatt, release-4.1.1, release-4.1.2, release-4.2.2, release_4.0.1, ticket-1009, ticket-1094-headless, ticket-1242-2d-resolution, ticket-1243, ticket-1249, ticket885, unittest-saveload
- Children:
- 1943097
- Parents:
- 8a25523
- Location:
- sansmodels/src/sans/models
- Files:
-
- 22 added
- 32 edited
Legend:
- Unmodified
- Added
- Removed
-
sansmodels/src/sans/models/c_models/CBinaryHSModel.cpp
ra8d6888 re0a8a3c 204 204 205 205 /* Do the calculation. */ 206 for ( i=0; i< x_len; i++) {207 for ( j=0; j< y_len; j++) {206 for ( j=0; j< y_len; j++) { 207 for ( i=0; i< x_len; i++) { 208 208 double x_value = *(double *)(x->data + i*x->strides[1]); 209 209 double y_value = *(double *)(y->data + j*y->strides[0]); … … 291 291 return NULL; 292 292 } 293 } else{294 293 } 294 PyErr_SetString(CBinaryHSModelError, 295 295 "CBinaryHSModel.evalDistribution couln't be run."); 296 297 }296 return NULL; 297 298 298 } 299 299 -
sansmodels/src/sans/models/c_models/CBinaryHSPSF11Model.cpp
ra8d6888 re0a8a3c 204 204 205 205 /* Do the calculation. */ 206 for ( i=0; i< x_len; i++) {207 for ( j=0; j< y_len; j++) {206 for ( j=0; j< y_len; j++) { 207 for ( i=0; i< x_len; i++) { 208 208 double x_value = *(double *)(x->data + i*x->strides[1]); 209 209 double y_value = *(double *)(y->data + j*y->strides[0]); … … 291 291 return NULL; 292 292 } 293 } else{294 293 } 294 PyErr_SetString(CBinaryHSPSF11ModelError, 295 295 "CBinaryHSPSF11Model.evalDistribution couln't be run."); 296 297 }296 return NULL; 297 298 298 } 299 299 -
sansmodels/src/sans/models/c_models/CCoreShellCylinderModel.cpp
ra8d6888 re0a8a3c 215 215 216 216 /* Do the calculation. */ 217 for ( i=0; i< x_len; i++) {218 for ( j=0; j< y_len; j++) {217 for ( j=0; j< y_len; j++) { 218 for ( i=0; i< x_len; i++) { 219 219 double x_value = *(double *)(x->data + i*x->strides[1]); 220 220 double y_value = *(double *)(y->data + j*y->strides[0]); … … 310 310 return NULL; 311 311 } 312 } else{313 312 } 313 PyErr_SetString(CCoreShellCylinderModelError, 314 314 "CCoreShellCylinderModel.evalDistribution couln't be run."); 315 316 }315 return NULL; 316 317 317 } 318 318 -
sansmodels/src/sans/models/c_models/CCoreShellEllipsoidModel.cpp
ra8d6888 re0a8a3c 218 218 219 219 /* Do the calculation. */ 220 for ( i=0; i< x_len; i++) {221 for ( j=0; j< y_len; j++) {220 for ( j=0; j< y_len; j++) { 221 for ( i=0; i< x_len; i++) { 222 222 double x_value = *(double *)(x->data + i*x->strides[1]); 223 223 double y_value = *(double *)(y->data + j*y->strides[0]); … … 315 315 return NULL; 316 316 } 317 } else{318 317 } 318 PyErr_SetString(CCoreShellEllipsoidModelError, 319 319 "CCoreShellEllipsoidModel.evalDistribution couln't be run."); 320 321 }320 return NULL; 321 322 322 } 323 323 -
sansmodels/src/sans/models/c_models/CCoreShellModel.cpp
ra8d6888 re0a8a3c 203 203 204 204 /* Do the calculation. */ 205 for ( i=0; i< x_len; i++) {206 for ( j=0; j< y_len; j++) {205 for ( j=0; j< y_len; j++) { 206 for ( i=0; i< x_len; i++) { 207 207 double x_value = *(double *)(x->data + i*x->strides[1]); 208 208 double y_value = *(double *)(y->data + j*y->strides[0]); … … 289 289 return NULL; 290 290 } 291 } else{292 291 } 292 PyErr_SetString(CCoreShellModelError, 293 293 "CCoreShellModel.evalDistribution couln't be run."); 294 295 }294 return NULL; 295 296 296 } 297 297 -
sansmodels/src/sans/models/c_models/CCylinderModel.cpp
ra8d6888 re0a8a3c 209 209 210 210 /* Do the calculation. */ 211 for ( i=0; i< x_len; i++) {212 for ( j=0; j< y_len; j++) {211 for ( j=0; j< y_len; j++) { 212 for ( i=0; i< x_len; i++) { 213 213 double x_value = *(double *)(x->data + i*x->strides[1]); 214 214 double y_value = *(double *)(y->data + j*y->strides[0]); … … 299 299 return NULL; 300 300 } 301 } else{302 301 } 302 PyErr_SetString(CCylinderModelError, 303 303 "CCylinderModel.evalDistribution couln't be run."); 304 305 }304 return NULL; 305 306 306 } 307 307 -
sansmodels/src/sans/models/c_models/CDiamCylFunc.cpp
ra8d6888 re0a8a3c 198 198 199 199 /* Do the calculation. */ 200 for ( i=0; i< x_len; i++) {201 for ( j=0; j< y_len; j++) {200 for ( j=0; j< y_len; j++) { 201 for ( i=0; i< x_len; i++) { 202 202 double x_value = *(double *)(x->data + i*x->strides[1]); 203 203 double y_value = *(double *)(y->data + j*y->strides[0]); … … 279 279 return NULL; 280 280 } 281 } else{282 281 } 282 PyErr_SetString(CDiamCylFuncError, 283 283 "CDiamCylFunc.evalDistribution couln't be run."); 284 285 }284 return NULL; 285 286 286 } 287 287 -
sansmodels/src/sans/models/c_models/CDiamEllipFunc.cpp
ra8d6888 re0a8a3c 198 198 199 199 /* Do the calculation. */ 200 for ( i=0; i< x_len; i++) {201 for ( j=0; j< y_len; j++) {200 for ( j=0; j< y_len; j++) { 201 for ( i=0; i< x_len; i++) { 202 202 double x_value = *(double *)(x->data + i*x->strides[1]); 203 203 double y_value = *(double *)(y->data + j*y->strides[0]); … … 279 279 return NULL; 280 280 } 281 } else{282 281 } 282 PyErr_SetString(CDiamEllipFuncError, 283 283 "CDiamEllipFunc.evalDistribution couln't be run."); 284 285 }284 return NULL; 285 286 286 } 287 287 -
sansmodels/src/sans/models/c_models/CEllipsoidModel.cpp
ra8d6888 re0a8a3c 209 209 210 210 /* Do the calculation. */ 211 for ( i=0; i< x_len; i++) {212 for ( j=0; j< y_len; j++) {211 for ( j=0; j< y_len; j++) { 212 for ( i=0; i< x_len; i++) { 213 213 double x_value = *(double *)(x->data + i*x->strides[1]); 214 214 double y_value = *(double *)(y->data + j*y->strides[0]); … … 299 299 return NULL; 300 300 } 301 } else{302 301 } 302 PyErr_SetString(CEllipsoidModelError, 303 303 "CEllipsoidModel.evalDistribution couln't be run."); 304 305 }304 return NULL; 305 306 306 } 307 307 -
sansmodels/src/sans/models/c_models/CEllipticalCylinderModel.cpp
ra8d6888 re0a8a3c 217 217 218 218 /* Do the calculation. */ 219 for ( i=0; i< x_len; i++) {220 for ( j=0; j< y_len; j++) {219 for ( j=0; j< y_len; j++) { 220 for ( i=0; i< x_len; i++) { 221 221 double x_value = *(double *)(x->data + i*x->strides[1]); 222 222 double y_value = *(double *)(y->data + j*y->strides[0]); … … 313 313 return NULL; 314 314 } 315 } else{316 315 } 316 PyErr_SetString(CEllipticalCylinderModelError, 317 317 "CEllipticalCylinderModel.evalDistribution couln't be run."); 318 319 }318 return NULL; 319 320 320 } 321 321 -
sansmodels/src/sans/models/c_models/CFlexibleCylinderModel.cpp
ra8d6888 re0a8a3c 205 205 206 206 /* Do the calculation. */ 207 for ( i=0; i< x_len; i++) {208 for ( j=0; j< y_len; j++) {207 for ( j=0; j< y_len; j++) { 208 for ( i=0; i< x_len; i++) { 209 209 double x_value = *(double *)(x->data + i*x->strides[1]); 210 210 double y_value = *(double *)(y->data + j*y->strides[0]); … … 292 292 return NULL; 293 293 } 294 } else{295 294 } 295 PyErr_SetString(CFlexibleCylinderModelError, 296 296 "CFlexibleCylinderModel.evalDistribution couln't be run."); 297 298 }297 return NULL; 298 299 299 } 300 300 -
sansmodels/src/sans/models/c_models/CGaussian.cpp
ra8d6888 re0a8a3c 193 193 194 194 /* Do the calculation. */ 195 for ( i=0; i< x_len; i++) {196 for ( j=0; j< y_len; j++) {195 for ( j=0; j< y_len; j++) { 196 for ( i=0; i< x_len; i++) { 197 197 double x_value = *(double *)(x->data + i*x->strides[1]); 198 198 double y_value = *(double *)(y->data + j*y->strides[0]); … … 271 271 return NULL; 272 272 } 273 } else{274 273 } 274 PyErr_SetString(CGaussianError, 275 275 "CGaussian.evalDistribution couln't be run."); 276 277 }276 return NULL; 277 278 278 } 279 279 -
sansmodels/src/sans/models/c_models/CHardsphereStructure.cpp
ra8d6888 re0a8a3c 195 195 196 196 /* Do the calculation. */ 197 for ( i=0; i< x_len; i++) {198 for ( j=0; j< y_len; j++) {197 for ( j=0; j< y_len; j++) { 198 for ( i=0; i< x_len; i++) { 199 199 double x_value = *(double *)(x->data + i*x->strides[1]); 200 200 double y_value = *(double *)(y->data + j*y->strides[0]); … … 274 274 return NULL; 275 275 } 276 } else{277 276 } 277 PyErr_SetString(CHardsphereStructureError, 278 278 "CHardsphereStructure.evalDistribution couln't be run."); 279 280 }279 return NULL; 280 281 281 } 282 282 -
sansmodels/src/sans/models/c_models/CHayterMSAStructure.cpp
ra8d6888 re0a8a3c 199 199 200 200 /* Do the calculation. */ 201 for ( i=0; i< x_len; i++) {202 for ( j=0; j< y_len; j++) {201 for ( j=0; j< y_len; j++) { 202 for ( i=0; i< x_len; i++) { 203 203 double x_value = *(double *)(x->data + i*x->strides[1]); 204 204 double y_value = *(double *)(y->data + j*y->strides[0]); … … 282 282 return NULL; 283 283 } 284 } else{285 284 } 285 PyErr_SetString(CHayterMSAStructureError, 286 286 "CHayterMSAStructure.evalDistribution couln't be run."); 287 288 }287 return NULL; 288 289 289 } 290 290 -
sansmodels/src/sans/models/c_models/CHollowCylinderModel.cpp
ra8d6888 re0a8a3c 213 213 214 214 /* Do the calculation. */ 215 for ( i=0; i< x_len; i++) {216 for ( j=0; j< y_len; j++) {215 for ( j=0; j< y_len; j++) { 216 for ( i=0; i< x_len; i++) { 217 217 double x_value = *(double *)(x->data + i*x->strides[1]); 218 218 double y_value = *(double *)(y->data + j*y->strides[0]); … … 306 306 return NULL; 307 307 } 308 } else{309 308 } 309 PyErr_SetString(CHollowCylinderModelError, 310 310 "CHollowCylinderModel.evalDistribution couln't be run."); 311 312 }311 return NULL; 312 313 313 } 314 314 -
sansmodels/src/sans/models/c_models/CLamellarFFHGModel.cpp
ra8d6888 re0a8a3c 203 203 204 204 /* Do the calculation. */ 205 for ( i=0; i< x_len; i++) {206 for ( j=0; j< y_len; j++) {205 for ( j=0; j< y_len; j++) { 206 for ( i=0; i< x_len; i++) { 207 207 double x_value = *(double *)(x->data + i*x->strides[1]); 208 208 double y_value = *(double *)(y->data + j*y->strides[0]); … … 289 289 return NULL; 290 290 } 291 } else{292 291 } 292 PyErr_SetString(CLamellarFFHGModelError, 293 293 "CLamellarFFHGModel.evalDistribution couln't be run."); 294 295 }294 return NULL; 295 296 296 } 297 297 -
sansmodels/src/sans/models/c_models/CLamellarModel.cpp
ra8d6888 re0a8a3c 198 198 199 199 /* Do the calculation. */ 200 for ( i=0; i< x_len; i++) {201 for ( j=0; j< y_len; j++) {200 for ( j=0; j< y_len; j++) { 201 for ( i=0; i< x_len; i++) { 202 202 double x_value = *(double *)(x->data + i*x->strides[1]); 203 203 double y_value = *(double *)(y->data + j*y->strides[0]); … … 280 280 return NULL; 281 281 } 282 } else{283 282 } 283 PyErr_SetString(CLamellarModelError, 284 284 "CLamellarModel.evalDistribution couln't be run."); 285 286 }285 return NULL; 286 287 287 } 288 288 -
sansmodels/src/sans/models/c_models/CLamellarPSHGModel.cpp
ra8d6888 re0a8a3c 209 209 210 210 /* Do the calculation. */ 211 for ( i=0; i< x_len; i++) {212 for ( j=0; j< y_len; j++) {211 for ( j=0; j< y_len; j++) { 212 for ( i=0; i< x_len; i++) { 213 213 double x_value = *(double *)(x->data + i*x->strides[1]); 214 214 double y_value = *(double *)(y->data + j*y->strides[0]); … … 300 300 return NULL; 301 301 } 302 } else{303 302 } 303 PyErr_SetString(CLamellarPSHGModelError, 304 304 "CLamellarPSHGModel.evalDistribution couln't be run."); 305 306 }305 return NULL; 306 307 307 } 308 308 -
sansmodels/src/sans/models/c_models/CLamellarPSModel.cpp
ra8d6888 re0a8a3c 203 203 204 204 /* Do the calculation. */ 205 for ( i=0; i< x_len; i++) {206 for ( j=0; j< y_len; j++) {205 for ( j=0; j< y_len; j++) { 206 for ( i=0; i< x_len; i++) { 207 207 double x_value = *(double *)(x->data + i*x->strides[1]); 208 208 double y_value = *(double *)(y->data + j*y->strides[0]); … … 289 289 return NULL; 290 290 } 291 } else{292 291 } 292 PyErr_SetString(CLamellarPSModelError, 293 293 "CLamellarPSModel.evalDistribution couln't be run."); 294 295 }294 return NULL; 295 296 296 } 297 297 -
sansmodels/src/sans/models/c_models/CLogNormal.cpp
ra8d6888 re0a8a3c 193 193 194 194 /* Do the calculation. */ 195 for ( i=0; i< x_len; i++) {196 for ( j=0; j< y_len; j++) {195 for ( j=0; j< y_len; j++) { 196 for ( i=0; i< x_len; i++) { 197 197 double x_value = *(double *)(x->data + i*x->strides[1]); 198 198 double y_value = *(double *)(y->data + j*y->strides[0]); … … 271 271 return NULL; 272 272 } 273 } else{274 273 } 274 PyErr_SetString(CLogNormalError, 275 275 "CLogNormal.evalDistribution couln't be run."); 276 277 }276 return NULL; 277 278 278 } 279 279 -
sansmodels/src/sans/models/c_models/CLorentzian.cpp
ra8d6888 re0a8a3c 193 193 194 194 /* Do the calculation. */ 195 for ( i=0; i< x_len; i++) {196 for ( j=0; j< y_len; j++) {195 for ( j=0; j< y_len; j++) { 196 for ( i=0; i< x_len; i++) { 197 197 double x_value = *(double *)(x->data + i*x->strides[1]); 198 198 double y_value = *(double *)(y->data + j*y->strides[0]); … … 271 271 return NULL; 272 272 } 273 } else{274 273 } 274 PyErr_SetString(CLorentzianError, 275 275 "CLorentzian.evalDistribution couln't be run."); 276 277 }276 return NULL; 277 278 278 } 279 279 -
sansmodels/src/sans/models/c_models/CMultiShellModel.cpp
ra8d6888 re0a8a3c 207 207 208 208 /* Do the calculation. */ 209 for ( i=0; i< x_len; i++) {210 for ( j=0; j< y_len; j++) {209 for ( j=0; j< y_len; j++) { 210 for ( i=0; i< x_len; i++) { 211 211 double x_value = *(double *)(x->data + i*x->strides[1]); 212 212 double y_value = *(double *)(y->data + j*y->strides[0]); … … 296 296 return NULL; 297 297 } 298 } else{299 298 } 299 PyErr_SetString(CMultiShellModelError, 300 300 "CMultiShellModel.evalDistribution couln't be run."); 301 302 }301 return NULL; 302 303 303 } 304 304 -
sansmodels/src/sans/models/c_models/COblateModel.cpp
ra8d6888 re0a8a3c 212 212 213 213 /* Do the calculation. */ 214 for ( i=0; i< x_len; i++) {215 for ( j=0; j< y_len; j++) {214 for ( j=0; j< y_len; j++) { 215 for ( i=0; i< x_len; i++) { 216 216 double x_value = *(double *)(x->data + i*x->strides[1]); 217 217 double y_value = *(double *)(y->data + j*y->strides[0]); … … 305 305 return NULL; 306 306 } 307 } else{308 307 } 308 PyErr_SetString(COblateModelError, 309 309 "COblateModel.evalDistribution couln't be run."); 310 311 }310 return NULL; 311 312 312 } 313 313 -
sansmodels/src/sans/models/c_models/CParallelepipedModel.cpp
ra8d6888 re0a8a3c 217 217 218 218 /* Do the calculation. */ 219 for ( i=0; i< x_len; i++) {220 for ( j=0; j< y_len; j++) {219 for ( j=0; j< y_len; j++) { 220 for ( i=0; i< x_len; i++) { 221 221 double x_value = *(double *)(x->data + i*x->strides[1]); 222 222 double y_value = *(double *)(y->data + j*y->strides[0]); … … 313 313 return NULL; 314 314 } 315 } else{316 315 } 316 PyErr_SetString(CParallelepipedModelError, 317 317 "CParallelepipedModel.evalDistribution couln't be run."); 318 319 }318 return NULL; 319 320 320 } 321 321 -
sansmodels/src/sans/models/c_models/CProlateModel.cpp
ra8d6888 re0a8a3c 210 210 211 211 /* Do the calculation. */ 212 for ( i=0; i< x_len; i++) {213 for ( j=0; j< y_len; j++) {212 for ( j=0; j< y_len; j++) { 213 for ( i=0; i< x_len; i++) { 214 214 double x_value = *(double *)(x->data + i*x->strides[1]); 215 215 double y_value = *(double *)(y->data + j*y->strides[0]); … … 301 301 return NULL; 302 302 } 303 } else{304 303 } 304 PyErr_SetString(CProlateModelError, 305 305 "CProlateModel.evalDistribution couln't be run."); 306 307 }306 return NULL; 307 308 308 } 309 309 -
sansmodels/src/sans/models/c_models/CSphereModel.cpp
ra8d6888 re0a8a3c 197 197 198 198 /* Do the calculation. */ 199 for ( i=0; i< x_len; i++) {200 for ( j=0; j< y_len; j++) {199 for ( j=0; j< y_len; j++) { 200 for ( i=0; i< x_len; i++) { 201 201 double x_value = *(double *)(x->data + i*x->strides[1]); 202 202 double y_value = *(double *)(y->data + j*y->strides[0]); … … 278 278 return NULL; 279 279 } 280 } else{281 280 } 281 PyErr_SetString(CSphereModelError, 282 282 "CSphereModel.evalDistribution couln't be run."); 283 284 }283 return NULL; 284 285 285 } 286 286 -
sansmodels/src/sans/models/c_models/CSquareWellStructure.cpp
ra8d6888 re0a8a3c 197 197 198 198 /* Do the calculation. */ 199 for ( i=0; i< x_len; i++) {200 for ( j=0; j< y_len; j++) {199 for ( j=0; j< y_len; j++) { 200 for ( i=0; i< x_len; i++) { 201 201 double x_value = *(double *)(x->data + i*x->strides[1]); 202 202 double y_value = *(double *)(y->data + j*y->strides[0]); … … 278 278 return NULL; 279 279 } 280 } else{281 280 } 281 PyErr_SetString(CSquareWellStructureError, 282 282 "CSquareWellStructure.evalDistribution couln't be run."); 283 284 }283 return NULL; 284 285 285 } 286 286 -
sansmodels/src/sans/models/c_models/CStackedDisksModel.cpp
ra8d6888 re0a8a3c 217 217 218 218 /* Do the calculation. */ 219 for ( i=0; i< x_len; i++) {220 for ( j=0; j< y_len; j++) {219 for ( j=0; j< y_len; j++) { 220 for ( i=0; i< x_len; i++) { 221 221 double x_value = *(double *)(x->data + i*x->strides[1]); 222 222 double y_value = *(double *)(y->data + j*y->strides[0]); … … 314 314 return NULL; 315 315 } 316 } else{317 316 } 317 PyErr_SetString(CStackedDisksModelError, 318 318 "CStackedDisksModel.evalDistribution couln't be run."); 319 320 }319 return NULL; 320 321 321 } 322 322 -
sansmodels/src/sans/models/c_models/CStickyHSStructure.cpp
ra8d6888 re0a8a3c 197 197 198 198 /* Do the calculation. */ 199 for ( i=0; i< x_len; i++) {200 for ( j=0; j< y_len; j++) {199 for ( j=0; j< y_len; j++) { 200 for ( i=0; i< x_len; i++) { 201 201 double x_value = *(double *)(x->data + i*x->strides[1]); 202 202 double y_value = *(double *)(y->data + j*y->strides[0]); … … 278 278 return NULL; 279 279 } 280 } else{281 280 } 281 PyErr_SetString(CStickyHSStructureError, 282 282 "CStickyHSStructure.evalDistribution couln't be run."); 283 284 }283 return NULL; 284 285 285 } 286 286 -
sansmodels/src/sans/models/c_models/CTriaxialEllipsoidModel.cpp
ra8d6888 re0a8a3c 208 208 209 209 /* Do the calculation. */ 210 for ( i=0; i< x_len; i++) {211 for ( j=0; j< y_len; j++) {210 for ( j=0; j< y_len; j++) { 211 for ( i=0; i< x_len; i++) { 212 212 double x_value = *(double *)(x->data + i*x->strides[1]); 213 213 double y_value = *(double *)(y->data + j*y->strides[0]); … … 298 298 return NULL; 299 299 } 300 } else{301 300 } 301 PyErr_SetString(CTriaxialEllipsoidModelError, 302 302 "CTriaxialEllipsoidModel.evalDistribution couln't be run."); 303 304 }303 return NULL; 304 305 305 } 306 306 -
sansmodels/src/sans/models/c_models/CVesicleModel.cpp
ra8d6888 re0a8a3c 202 202 203 203 /* Do the calculation. */ 204 for ( i=0; i< x_len; i++) {205 for ( j=0; j< y_len; j++) {204 for ( j=0; j< y_len; j++) { 205 for ( i=0; i< x_len; i++) { 206 206 double x_value = *(double *)(x->data + i*x->strides[1]); 207 207 double y_value = *(double *)(y->data + j*y->strides[0]); … … 287 287 return NULL; 288 288 } 289 } else{290 289 } 290 PyErr_SetString(CVesicleModelError, 291 291 "CVesicleModel.evalDistribution couln't be run."); 292 293 }292 return NULL; 293 294 294 } 295 295 -
sansmodels/src/sans/models/c_models/classTemplate.txt
ra8d6888 re0a8a3c 183 183 184 184 /* Do the calculation. */ 185 for ( i=0; i< x_len; i++) {186 for ( j=0; j< y_len; j++) {185 for ( j=0; j< y_len; j++) { 186 for ( i=0; i< x_len; i++) { 187 187 double x_value = *(double *)(x->data + i*x->strides[1]); 188 188 double y_value = *(double *)(y->data + j*y->strides[0]); … … 254 254 return NULL; 255 255 } 256 } else{257 256 } 257 PyErr_SetString([PYTHONCLASS]Error, 258 258 "[PYTHONCLASS].evalDistribution couln't be run."); 259 260 }259 return NULL; 260 261 261 } 262 262
Note: See TracChangeset
for help on using the changeset viewer.