Changeset 23045
- Timestamp:
- 08/02/18 16:36:49 (7 years ago)
- Location:
- issm/trunk-jpl
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk-jpl/jenkins/macosx_pine-island
r21871 r23045 5 5 6 6 #MATLAB path 7 MATLAB_PATH="/Applications/MATLAB_R201 5b.app/"7 MATLAB_PATH="/Applications/MATLAB_R2017b.app/" 8 8 9 9 #ISSM CONFIGURATION -
issm/trunk-jpl/jenkins/macosx_pine-island_static
r22821 r23045 5 5 6 6 #MATLAB path 7 MATLAB_PATH="/Applications/MATLAB_R201 5b.app/"7 MATLAB_PATH="/Applications/MATLAB_R2017b.app/" 8 8 9 9 #ISSM CONFIGURATION … … 23 23 --with-m1qn3-dir=$ISSM_DIR/externalpackages/m1qn3/install \ 24 24 --with-math77-dir=$ISSM_DIR/externalpackages/math77/install \ 25 --with-fortran-lib="/usr/local/gfortran/lib/libgfortran.a /usr/local/gfortran/lib/libquadmath.a /usr/local/gfortran/lib/gcc/x86_64-apple-darwin1 4/5.2.0/libgcc.a" \25 --with-fortran-lib="/usr/local/gfortran/lib/libgfortran.a /usr/local/gfortran/lib/libquadmath.a /usr/local/gfortran/lib/gcc/x86_64-apple-darwin15/6.1.0/libgcc.a" \ 26 26 --with-numthreads=4' 27 27 -
issm/trunk-jpl/src/c/classes/FemModel.cpp
r23020 r23045 4824 4824 /*Open output file once for all and add output file descriptor to parameters*/ 4825 4825 output_fid=open_memstream(&outputbuffer,&outputsize); 4826 if(output_fid==NULL )_error_("could not initialize output stream");4826 if(output_fid==NULL||output_fid==0)_error_("could not initialize output stream"); 4827 4827 this->parameters->SetParam(output_fid,OutputFilePointerEnum); 4828 4828 this->parameters->AddObject(new GenericParam<char**>(&outputbuffer,OutputBufferPointerEnum)); -
issm/trunk-jpl/src/c/modules/InterpFromGridToMeshx/InterpFromGridToMeshx.cpp
r21110 r23045 24 24 double* y=NULL; 25 25 int i; 26 27 // TEST 28 _printf_("\r N: "<<N<<" M:"<<M<<"\n"); 26 29 27 30 /*Some checks on arguments: */ -
issm/trunk-jpl/src/wrappers/InterpFromGridToMesh/InterpFromGridToMesh.js
r22685 r23045 99 99 nods = xMeshIn.length; 100 100 meshNumRows = xMeshIn.length; 101 console.log('InterpFromGridToMesh.js: meshNumRows => ' + meshNumRows); 101 102 102 103
Note:
See TracChangeset
for help on using the changeset viewer.