Changeset 78356b31 in sasmodels
- Timestamp:
- Oct 4, 2014 6:25:14 PM (10 years ago)
- 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:
- 2d0aced
- Parents:
- 6798848
- Location:
- sasmodels
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
sasmodels/bumps_model.py
rabb22f4 r78356b31 10 10 from .gpu import load_model as _loader 11 11 except ImportError,exc: 12 import warnings 12 13 warnings.warn(str(exc)) 13 14 warnings.warn("OpenCL not available --- using ctypes instead") -
sasmodels/gen.py
r19dcb933 r78356b31 482 482 weights = [p+"_w" for p in pd_pars]+['spherical_correction'] 483 483 sasview_spherical = "" 484 elif "theta" in pd_pars:484 elif True and "theta" in pd_pars: 485 485 spherical_correction = [indent(SASVIEW_SPHERICAL_CORRECTION,depth)] 486 486 weights = [p+"_w" for p in pd_pars]
Note: See TracChangeset
for help on using the changeset viewer.