COIN-OR::LEMON - Graph Library

Changes in / [115:7b44eea654d0:114:c837d1e449dc] in lemon-1.0


Ignore:
Files:
1 deleted
4 edited

Legend:

Unmodified
Added
Removed
  • .hgignore

    r111 r85  
    55*~
    66*.o
     7.#.*
    78*.log
    89*.lo
     
    2728
    2829syntax: regexp
    29 (.*/)?\#[^/]*\#$
    3030^doc/html/.*
    3131^autom4te.cache/.*
  • lemon/Makefile.am

    r109 r108  
    3232        lemon/path.h \
    3333        lemon/random.h \
    34         lemon/smart_graph.h \
    3534        lemon/tolerance.h \
    3635        lemon/unionfind.h
  • lemon/random.h

    r110 r102  
    6666#include <iterator>
    6767#include <vector>
    68 #include <limits>
     68
     69#include <ctime>
    6970
    7071#include <lemon/math.h>
  • test/graph_test.cc

    r109 r107  
    1919#include <lemon/concepts/graph.h>
    2020#include <lemon/list_graph.h>
    21 #include <lemon/smart_graph.h>
     21// #include <lemon/smart_graph.h>
    2222// #include <lemon/full_graph.h>
    2323// #include <lemon/grid_graph.h>
     
    4848  {
    4949    checkConcept<Graph, ListGraph>();   
    50     checkConcept<Graph, SmartGraph>();   
     50//     checkConcept<Graph, SmartGraph>();   
    5151//     checkConcept<Graph, FullGraph>();   
    5252//     checkConcept<Graph, Graph>();   
     
    189189
    190190  check_graph<ListGraph>();
    191   check_graph<SmartGraph>();
     191//  check_graph<SmartGraph>();
    192192
    193193//   {
Note: See TracChangeset for help on using the changeset viewer.