Changeset 27077
- Timestamp:
- 06/19/22 15:34:34 (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/branches/trunk-larour-SLPS2022/src/c/classes/Dakota/IssmParallelDirectApplicInterface.cpp
r26468 r27077 20 20 int world_rank; 21 21 ISSM_MPI_Comm_rank(ISSM_MPI_COMM_WORLD,&world_rank); 22 void (*solutionprecore)(FemModel*) = NULL; 23 int solution_type; 22 24 23 25 /*Build an femmodel if you are a slave, using the corresponding communicator:*/ … … 25 27 femmodel_init= new FemModel(argc,argv,evaluation_comm); 26 28 femmodel_init->profiler->Start(CORE); 29 30 /*Launch cores that build data only once, for all future solutions during the uncertainty quantification: */ 31 femmodel_init->parameters->FindParam(&solution_type,SolutionTypeEnum); 32 WrapperPreCorePointerFromSolutionEnum(&solutionprecore,femmodel_init->parameters,solution_type); 33 if(solutionprecore)solutionprecore(femmodel_init); 27 34 } 28 35 … … 55 62 bool control_analysis = false; 56 63 void (*solutioncore)(FemModel*) = NULL; 57 void (*solutionprecore)(FemModel*) = NULL;58 64 bool nodakotacore = true; 59 65 … … 94 100 /*Initialize responses: */ 95 101 responses=xNewZeroInit<IssmDouble>(numFns); 96 97 /*Launch cores that are not used during the uncertainty quantification: */98 WrapperPreCorePointerFromSolutionEnum(&solutionprecore,femmodel_init->parameters,solution_type);99 if(solutionprecore)solutionprecore(femmodel_init);100 102 101 103 /*Make a copy of femmodel, so we start this new evaluation run for this specific sample with a brand
Note:
See TracChangeset
for help on using the changeset viewer.