Ignore:
Timestamp:
Sep 9, 2009 7:06:42 PM (15 years ago)
Author:
Gervaise Alina <gervyh@…>
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:
3b865c1
Parents:
d2caa18
Message:

wrote unittest for all model untested , haven' test critial point error handling

File:
1 edited

Legend:

Unmodified
Added
Removed
  • sansmodels/src/sans/models/c_models/CBinaryHSModel.cpp

    r5eb9154 r9ce41c6  
    1818 * 
    1919 * WARNING: THIS FILE WAS GENERATED BY WRAPPERGENERATOR.PY 
    20  *          DO NOT MODIFY THIS FILE, MODIFY binaryHS.h 
     20 *          DO NOT MODIFY THIS FILE, MODIFY binaryHs.h 
    2121 *          AND RE-RUN THE GENERATOR SCRIPT 
    2222 * 
     
    3333#include <math.h> 
    3434#include <time.h> 
    35 #include "binaryHS.h" 
     35#include "binaryHs.h" 
    3636} 
    3737 
     
    192192        if (PyArray_Check(x) && PyArray_Check(y)) { 
    193193                 
    194             x_len = dims[1]= x->dimensions[0]; 
    195         y_len = dims[0]= y->dimensions[1]; 
     194            x_len = dims[1]= x->dimensions[1]; 
     195        y_len = dims[0]= y->dimensions[0]; 
    196196             
    197197            // Make a new double matrix of same dims 
     
    206206        for ( j=0; j< y_len; j++) { 
    207207            for ( i=0; i< x_len; i++) { 
    208                 double x_value = *(double *)(x->data + i*x->strides[0]); 
    209                     double y_value = *(double *)(y->data + j*y->strides[1]); 
     208                double x_value = *(double *)(x->data + i*x->strides[1]); 
     209                    double y_value = *(double *)(y->data + j*y->strides[0]); 
    210210                        double *result_value = (double *)(result->data + 
    211211                              j*result->strides[0] + i*result->strides[1]); 
Note: See TracChangeset for help on using the changeset viewer.