Changeset 7ff3cf3 in sasmodels for sasmodels/core.py


Ignore:
Timestamp:
Mar 21, 2016 2:55:33 AM (8 years ago)
Author:
Paul Kienzle <pkienzle@…>
Branches:
master, core_shell_microgels, costrafo411, magnetic_model, release_v0.94, release_v0.95, ticket-1257-vesicle-product, ticket_1156, ticket_1265_superball, ticket_822_more_unit_tests
Children:
5cf3c33, 3a45c2c
Parents:
e1bdc7e
Message:

getting past hello…

File:
1 edited

Legend:

Unmodified
Added
Removed
  • sasmodels/core.py

    r303d8d6 r7ff3cf3  
    226226        weights = np.array([1.0]) 
    227227        details = kernel.info['mono_details'] 
    228         return kernel(pars, weights, details, cutoff) 
     228        return kernel(details, pars, weights, cutoff) 
    229229    else: 
    230230        pairs = [get_weights(p, values) for p in kernel.info['parameters']] 
     
    232232        details = generate.poly_details(kernel.info, weights, pars) 
    233233        weights, pars = [np.hstack(v) for v in (weights, pars)] 
    234         return kernel(pars, weights, details, cutoff) 
     234        return kernel(details, pars, weights, cutoff) 
    235235 
    236236def call_ER_VR(model_info, vol_pars): 
Note: See TracChangeset for help on using the changeset viewer.