alpar@906: /* -*- C++ -*- alpar@906: * alpar@1956: * This file is a part of LEMON, a generic C++ optimization library alpar@1956: * alpar@2391: * Copyright (C) 2003-2007 alpar@1956: * Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport alpar@1359: * (Egervary Research Group on Combinatorial Optimization, EGRES). alpar@906: * alpar@906: * Permission to use, modify and distribute this software is granted alpar@906: * provided that this copyright notice appears in all copies. For alpar@906: * precise terms see the accompanying LICENSE file. alpar@906: * alpar@906: * This software is provided "AS IS" with no warranty of any kind, alpar@906: * express or implied, and with no claim as to its suitability for any alpar@906: * purpose. alpar@906: * alpar@906: */ alpar@906: hegyi@820: #include hegyi@820: #include deba@2247: alpar@2260: #include alpar@2260: #include deba@2247: alpar@921: #include alpar@921: #include hegyi@820: deba@2247: #include "test_tools.h" deba@2247: hegyi@820: using namespace std; alpar@921: using namespace lemon; hegyi@820: deba@2247: void check_concepts() { deba@2335: checkConcept, concepts::Path >(); alpar@2260: checkConcept, Path >(); deba@2335: checkConcept, SimplePath >(); deba@2335: checkConcept, StaticPath >(); deba@2335: checkConcept, ListPath >(); hegyi@820: } hegyi@820: deba@2247: int main() { deba@2335: check_concepts(); deba@2247: return 0; hegyi@820: }