Changeset 22844
- Timestamp:
- 06/15/18 07:10:30 (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk-jpl/src/c/modules/ParseToolkitsOptionsx/ParseToolkitsOptionsx.cpp
r22558 r22844 1 1 /*!\file ParseToolkitsOptionsx 2 * * \brief: parse options present in a petsc file, and create petsc options 3 * objects accordingly. This will be used to drive the behaviour of Toolkits for 2 * * \brief: parse options present in a petsc file, and create petsc options 3 * objects accordingly. This will be used to drive the behaviour of Toolkits for 4 4 * each analysis type. 5 5 */ … … 59 59 strings = xNew<char*>(numanalyses); 60 60 toolkits = xNew<char*>(numanalyses); 61 for(i=0;i<numanalyses;i++) strings[i] = NULL; 62 for(i=0;i<numanalyses;i++) toolkits[i] = NULL; 61 for(i=0;i<numanalyses;i++) strings[i] = NULL; 62 for(i=0;i<numanalyses;i++) toolkits[i] = NULL; 63 63 64 64 /*Go back to beginning of file:*/ … … 66 66 numanalyses=0; 67 67 while( fgets(line, sizeof line, fid)){ 68 69 68 /*skip comments and empty lines: */ 70 69 if ((line[0]=='%') || (line[0]=='\n') || (line[0]==' ') || (line[0]=='\t') || (line[0]=='\r'))continue; … … 80 79 sscanf(line,"-%s %s",&word1[0],&word2[0]); 81 80 if(strcmp(word1,"toolkit")!=0) _error_("toolkit option does not follow analysis"); 82 toolkit=xNew<char>((strlen(word2)+1)); 81 toolkit=xNew<char>((strlen(word2)+1)); 83 82 xMemCpy<char>(toolkit,word2,(strlen(word2)+1)); 84 83 toolkits[numanalyses-1]=toolkit; … … 88 87 /*this is an option corresponding to analysis numanalyses-1. Add it to the already existing options*/ 89 88 if(strings[numanalyses-1]==NULL){ 90 string=xNew<char>((strlen(line)+1)); 89 string=xNew<char>((strlen(line)+1)); 91 90 xMemCpy<char>(string,line,(strlen(line)+1)); 92 91
Note:
See TracChangeset
for help on using the changeset viewer.