Changeset 3465 for trunk/GSASIIspc.py
- Timestamp:
- Jul 10, 2018 11:41:00 AM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/GSASIIspc.py
r3450 r3465 1042 1042 ip = len(op) 1043 1043 if '/' in op: 1044 if CIF:1044 try: #mcif format 1045 1045 nP = op.count('+') 1046 1046 opMT = op.split('+') … … 1048 1048 if nP == 2: 1049 1049 opMT[0] = '+'.join(opMT[0:2]) 1050 e lse:1050 except NameError: #normal cif format 1051 1051 ip = op.index('/') 1052 1052 T.append(eval(op[:ip+2]))
Note: See TracChangeset
for help on using the changeset viewer.