Ignore:
Timestamp:
04/19/10 16:26:55 (15 years ago)
Author:
Mathieu Morlighem
Message:

removed exprintf of all ISSMERROR (not needed anymore)
Fixed Discontinuous Galerkin (missing thickness in inflow BC)"

File:
1 edited

Legend:

Unmodified
Added
Removed
  • issm/trunk/src/c/InterpFromMeshToMesh2dx/InterpFromMeshToMesh2dx.cpp

    r3332 r3570  
    3434        /*Checks*/
    3535        if (data_cols<=0){
    36                 ISSMERROR(exprintf("data provided has a negative number of columns"));
     36                ISSMERROR("data provided has a negative number of columns");
    3737        }
    3838        if (data_rows!=nods_data && data_rows!=nels_data){
    39                 ISSMERROR(exprintf("data provided should have either %i or %i lines (not %i)",nods_data,nels_data,data_rows));
     39                ISSMERROR("data provided should have either %i or %i lines (not %i)",nods_data,nels_data,data_rows);
    4040        }
    4141
     
    101101                        for (j=0;j<data_cols;j++){
    102102                                if (it<0 || it>=nels_data){
    103                                         ISSMERROR(exprintf("Triangle number %i not in [0 %i], because not correctly implemented yet... interpolate on grid first",it,nels_data));
     103                                        ISSMERROR("Triangle number %i not in [0 %i], because not correctly implemented yet... interpolate on grid first",it,nels_data);
    104104                                }
    105105                                data_interp[i*data_cols+j]=data[data_cols*it+j];
Note: See TracChangeset for help on using the changeset viewer.