Changeset 6437 for issm/trunk


Ignore:
Timestamp:
10/27/10 13:32:22 (14 years ago)
Author:
Mathieu Morlighem
Message:

printf instead or error if T<0 for now

File:
1 edited

Legend:

Unmodified
Added
Removed
  • issm/trunk/src/c/objects/Elements/Penta.cpp

    r6436 r6437  
    45134513                /*Check solution*/
    45144514                if(isnan(values[i])) _error_("NaN found in solution vector");
    4515                 if(values[i]<0)      _error_("temperature < 0°K found in solution vector");
     4515                if(values[i]<0)      printf("temperature < 0°K found in solution vector\n");
    45164516                if(values[i]>275)    printf("temperature > 275°K found in solution vector (Paterson's rheology associated is negative)\n");
    45174517        }
Note: See TracChangeset for help on using the changeset viewer.