Turn off treeview in the doc.
make now recognises if Doxygen.in has updated. (Thanks to Akos)
     1 /* -*- mode: C++; indent-tabs-mode: nil; -*-
 
     3  * This file is a part of LEMON, a generic C++ optimization library.
 
     5  * Copyright (C) 2003-2008
 
     6  * Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport
 
     7  * (Egervary Research Group on Combinatorial Optimization, EGRES).
 
     9  * Permission to use, modify and distribute this software is granted
 
    10  * provided that this copyright notice appears in all copies. For
 
    11  * precise terms see the accompanying LICENSE file.
 
    13  * This software is provided "AS IS" with no warranty of any kind,
 
    14  * express or implied, and with no claim as to its suitability for any
 
    19 #include <lemon/dim2.h>
 
    21 #include "test_tools.h"
 
    24 using namespace lemon;
 
    28   typedef dim2::Point<int> Point;
 
    31   check(p.size()==2, "Wrong dim2::Point initialization.");
 
    35   check(a[0]==1 && a[1]==2, "Wrong dim2::Point initialization.");
 
    38   check(p.x==4 && p.y==6, "Wrong dim2::Point addition.");
 
    41   check(p.x==-2 && p.y==-2, "Wrong dim2::Point subtraction.");
 
    43   check(a.normSquare()==5,"Wrong dim2::Point norm calculation.");
 
    44   check(a*b==11, "Wrong dim2::Point scalar product.");
 
    48   check(p.x==2 && p.y==4, "Wrong dim2::Point multiplication by a scalar.");
 
    51   check(p.x==1 && p.y==2, "Wrong dim2::Point division by a scalar.");
 
    53   typedef dim2::BoundingBox<int> BB;
 
    55   check(box1.empty(), "Wrong empty() in dim2::BoundingBox.");
 
    58   check(!box1.empty(), "Wrong empty() in dim2::BoundingBox.");
 
    61   check(box1.bottomLeft().x==1 &&
 
    62         box1.bottomLeft().y==2 &&
 
    63         box1.topRight().x==3 &&
 
    65         "Wrong addition of points to dim2::BoundingBox.");
 
    68   check(box1.inside(p), "Wrong inside() in dim2::BoundingBox.");
 
    71   check(box1.inside(p), "Wrong inside() in dim2::BoundingBox.");
 
    74   check(!box1.inside(p), "Wrong inside() in dim2::BoundingBox.");
 
    77   check(!box2.empty(), "Wrong empty() in dim2::BoundingBox.");
 
    80   check(box2.inside(p), "Wrong inside() in dim2::BoundingBox.");