COIN-OR::LEMON - Graph Library

Changeset 1588:b79bcba43661 in lemon-0.x for test


Ignore:
Timestamp:
07/26/05 16:31:29 (19 years ago)
Author:
Alpar Juttner
Branch:
default
Phase:
public
Convert:
svn:c9d7d8f5-90d6-0310-b91f-818b3a526b0e/lemon/trunk@2092
Message:

BoundingBox?<T>::operator+=() -> BoundingBox?<T>::add() ->

File:
1 edited

Legend:

Unmodified
Added
Removed
  • test/xy_test.cc

    r1435 r1588  
    5252        check(doboz1.empty(), "It should be empty.");
    5353       
    54         doboz1 += a;
     54        doboz1.add(a);
    5555        check(!doboz1.empty(), "It should not be empty.");
    56         doboz1 += b;
     56        doboz1.add(b);
    5757
    5858        check(doboz1.bottomLeft().x==1 &&
     
    7575              "It should not be empty. Constructed from 1 point.");
    7676
    77         doboz2 += doboz1;
     77        doboz2.add(doboz1);
    7878        check(doboz2.inside(seged),
    7979              "It should be inside. Incremented a box with an other.");
Note: See TracChangeset for help on using the changeset viewer.