Changeset 25390
- Timestamp:
- 08/13/20 15:19:27 (5 years ago)
- Location:
- issm/trunk-jpl/src/c/toolkits
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk-jpl/src/c/toolkits/issm/IssmVec.h
r23643 r25390 158 158 IssmVec<doubletype>* Duplicate(void){/*{{{*/ 159 159 160 _assert_(this); 160 161 IssmVec<doubletype>* issmvector=NULL; 161 162 -
issm/trunk-jpl/src/c/toolkits/petsc/objects/PetscSolver.cpp
r23308 r25390 36 36 37 37 /*Output: */ 38 Vec uf 38 Vec uf = NULL; 39 39 40 40 /*Intermediary: */ … … 83 83 PetscOptionsGetString(NULL,PETSC_NULL,"-ksp_type",ksp_type,49,&flg); 84 84 #endif 85 if (strcmp(ksp_type,"preonly")==0)uf0=NULL; 85 if(flg!=PETSC_TRUE) _error_("could not find option -ksp_type, maybe you are not using the right toolkit?"); 86 if (strcmp(ksp_type,"preonly")==0) uf0=NULL; 86 87 87 88 /*If initial guess for the solution exists, use it to create uf, otherwise,
Note:
See TracChangeset
for help on using the changeset viewer.