Changeset 16127
- Timestamp:
- 09/12/13 09:54:17 (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk-jpl/src/c/analyses/dakota_core.cpp
r15771 r16127 177 177 // Instantiate/initialize the parallel library and problem description 178 178 // database objects. 179 Dakota::ParallelLibrary parallel_lib("serial"); //use our own ISSM Dakota library mode constructor, which only fires up Dakota on CPU 0. 179 char* dakotamode=xNew<char>(strlen("serial")+1); 180 xMemCpy<char>(dakotamode,"serial",strlen("serial")+1); 181 Dakota::ParallelLibrary parallel_lib(dakotamode); //use our own ISSM Dakota library mode constructor, which only fires up Dakota on CPU 0. 180 182 Dakota::ProblemDescDB problem_db(parallel_lib); 183 xDelete<char>(dakotamode); 181 184 182 185 // Manage input file parsing, output redirection, and restart processing
Note:
See TracChangeset
for help on using the changeset viewer.