COIN-OR::LEMON - Graph Library

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


Ignore:
Files:
1 added
4 edited

Legend:

Unmodified
Added
Removed
  • .hgignore

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

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

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

    r107 r109  
    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.