Changeset 23045


Ignore:
Timestamp:
08/02/18 16:36:49 (7 years ago)
Author:
jdquinn
Message:

CHG: Converted all Promises to success/warning/error callback model

Location:
issm/trunk-jpl
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • issm/trunk-jpl/jenkins/macosx_pine-island

    r21871 r23045  
    55
    66#MATLAB path
    7 MATLAB_PATH="/Applications/MATLAB_R2015b.app/"
     7MATLAB_PATH="/Applications/MATLAB_R2017b.app/"
    88
    99#ISSM CONFIGURATION
  • issm/trunk-jpl/jenkins/macosx_pine-island_static

    r22821 r23045  
    55
    66#MATLAB path
    7 MATLAB_PATH="/Applications/MATLAB_R2015b.app/"
     7MATLAB_PATH="/Applications/MATLAB_R2017b.app/"
    88
    99#ISSM CONFIGURATION
     
    2323        --with-m1qn3-dir=$ISSM_DIR/externalpackages/m1qn3/install \
    2424        --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-darwin14/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" \
    2626        --with-numthreads=4'
    2727
  • issm/trunk-jpl/src/c/classes/FemModel.cpp

    r23020 r23045  
    48244824        /*Open output file once for all and add output file descriptor to parameters*/
    48254825        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");
    48274827        this->parameters->SetParam(output_fid,OutputFilePointerEnum);
    48284828        this->parameters->AddObject(new GenericParam<char**>(&outputbuffer,OutputBufferPointerEnum));
  • issm/trunk-jpl/src/c/modules/InterpFromGridToMeshx/InterpFromGridToMeshx.cpp

    r21110 r23045  
    2424        double* y=NULL;
    2525        int     i;
     26
     27        // TEST
     28        _printf_("\r      N: "<<N<<" M:"<<M<<"\n");
    2629
    2730        /*Some checks on arguments: */
  • issm/trunk-jpl/src/wrappers/InterpFromGridToMesh/InterpFromGridToMesh.js

    r22685 r23045  
    9999        nods            = xMeshIn.length;
    100100        meshNumRows     = xMeshIn.length;
     101        console.log('InterpFromGridToMesh.js: meshNumRows => ' + meshNumRows);
    101102       
    102103       
Note: See TracChangeset for help on using the changeset viewer.