- Timestamp:
- 08/20/12 17:39:30 (13 years ago)
- Location:
- issm/branches/trunk-jpl-damage
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/branches/trunk-jpl-damage
- Property svn:ignore
-
old new 1 projects 1 2 autom4te.cache 2 3 aclocal.m4
-
- Property svn:mergeinfo changed
/issm/trunk-jpl merged: 12948-13099
- Property svn:ignore
-
issm/branches/trunk-jpl-damage/src/c/classes/bamg/Triangle.cpp
r12821 r13101 19 19 long nbv = Th->nbv; 20 20 if (i<0 || j<0 || k<0){ 21 _error 2_("i<0 || j<0 || k<0");21 _error_("i<0 || j<0 || k<0"); 22 22 } 23 23 if (i>=nbv || j>=nbv || k>=nbv){ 24 _error 2_("i>=nbv || j>=nbv || k>=nbv");24 _error_("i>=nbv || j>=nbv || k>=nbv"); 25 25 } 26 26 vertices[0]=v+i; … … 173 173 //check number of iterations 174 174 if (k>=2000){ 175 _error 2_("too many iteration in Triangle::FindBoundaryEdge (k>=2000)");175 _error_("too many iteration in Triangle::FindBoundaryEdge (k>=2000)"); 176 176 } 177 177 } while (this!= t); … … 213 213 do { 214 214 while (t->swap(j,koption)){ 215 if (k>=20000) _error 2_("k>=20000");215 if (k>=20000) _error_("k>=20000"); 216 216 NbSwap++; 217 217 k++;
Note:
See TracChangeset
for help on using the changeset viewer.