Ignore:
Timestamp:
08/20/12 17:39:30 (13 years ago)
Author:
cborstad
Message:

merged trunk-jpl through revision 13099 into branch

Location:
issm/branches/trunk-jpl-damage
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • issm/branches/trunk-jpl-damage

    • Property svn:ignore
      •  

        old new  
         1projects
        12autom4te.cache
        23aclocal.m4
    • Property svn:mergeinfo changed
      /issm/trunk-jplmerged: 12948-13099
  • issm/branches/trunk-jpl-damage/src/c/classes/bamg/Triangle.cpp

    r12821 r13101  
    1919                long nbv = Th->nbv;
    2020                if (i<0 || j<0 || k<0){
    21                         _error2_("i<0 || j<0 || k<0");
     21                        _error_("i<0 || j<0 || k<0");
    2222                }
    2323                if (i>=nbv || j>=nbv || k>=nbv){
    24                         _error2_("i>=nbv || j>=nbv || k>=nbv");
     24                        _error_("i>=nbv || j>=nbv || k>=nbv");
    2525                }
    2626                vertices[0]=v+i;
     
    173173                        //check number of iterations
    174174                        if (k>=2000){
    175                                 _error2_("too many iteration in Triangle::FindBoundaryEdge (k>=2000)");
     175                                _error_("too many iteration in Triangle::FindBoundaryEdge (k>=2000)");
    176176                        }
    177177                } while (this!= t);
     
    213213                do {
    214214                        while (t->swap(j,koption)){
    215                                 if (k>=20000) _error2_("k>=20000");
     215                                if (k>=20000) _error_("k>=20000");
    216216                                NbSwap++;
    217217                                k++;
Note: See TracChangeset for help on using the changeset viewer.