Changeset 25316
- Timestamp:
- 07/30/20 13:13:24 (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified issm/trunk-jpl/src/m/solve/WriteData.py ¶
r25313 r25316 1 from copy import deepcopy1 from copy import copy 2 2 from struct import error, pack 3 3 … … 44 44 # model fields. 45 45 # 46 # NOTE: This is a temporary fix to get builds green in Jenkins: without it, 47 # there still exists a bug wherein model fields are being modified 48 # (see https://ross.ics.uci.edu/jenkins/view/All/job/Debian_Linux-Python/1036). 49 # 50 data = deepcopy(data) 46 data = copy(data) 51 47 52 48 #Scale data if necessary
Note:
See TracChangeset
for help on using the changeset viewer.