COIN-OR::LEMON - Graph Library

Changeset 2260:4274224f8a7d in lemon-0.x for test/path_test.cc


Ignore:
Timestamp:
10/24/06 19:19:16 (17 years ago)
Author:
Alpar Juttner
Branch:
default
Phase:
public
Convert:
svn:c9d7d8f5-90d6-0310-b91f-818b3a526b0e/lemon/trunk@3016
Message:

concept -> concepts (namespace & directory)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • test/path_test.cc

    r2247 r2260  
    2020#include <iostream>
    2121
    22 #include <lemon/concept/path.h>
    23 #include <lemon/concept/graph.h>
     22#include <lemon/concepts/path.h>
     23#include <lemon/concepts/graph.h>
    2424
    2525#include <lemon/path.h>
     
    3232
    3333void check_concepts() {
    34   checkConcept<concept::Path<concept::Graph>,
    35     concept::Path<concept::Graph> >();
    36   checkConcept<concept::Path<concept::Graph>,
    37     Path<concept::Graph> >();
    38   checkConcept<concept::Path<ListGraph>, Path<ListGraph> >();
     34  checkConcept<concepts::Path<concepts::Graph>,
     35    concepts::Path<concepts::Graph> >();
     36  checkConcept<concepts::Path<concepts::Graph>,
     37    Path<concepts::Graph> >();
     38  checkConcept<concepts::Path<ListGraph>, Path<ListGraph> >();
    3939}
    4040
Note: See TracChangeset for help on using the changeset viewer.