COIN-OR::LEMON - Graph Library

source: lemon-0.x/src/test/graph_utils_test.cc @ 970:09f9abe22df2

Last change on this file since 970:09f9abe22df2 was 946:c94ef40a22ce, checked in by Mihaly Barasz, 19 years ago

The graph_factory branch (@ 1321) has been merged to trunk.

File size: 455 bytes
Line 
1// -*- c++ -*-
2
3#include <iostream>
4#include <vector>
5
6#include <lemon/list_graph.h>
7#include <lemon/smart_graph.h>
8#include <lemon/full_graph.h>
9
10#include "test_tools.h"
11#include "graph_utils_test.h"
12
13
14using namespace lemon;
15
16
17int main() {
18  ///\file
19  { // checking list graph
20    checkGraphCounters<ListGraph>();
21  }
22  { // checking smart graph
23    checkGraphCounters<SmartGraph>();
24  }
25
26  std::cout << __FILE__ ": All tests passed.\n";
27
28  return 0;
29}
Note: See TracBrowser for help on using the repository browser.