Sha256: 0480c5e865e401f1f0d14e8328f84ee4df4d97439c7d4f3aec43a8d709f49fab
Contents?: true
Size: 1.05 KB
Versions: 1
Compression:
Stored size: 1.05 KB
Contents
/* * Main authors: * Grégoire Dooms <dooms@info.ucl.ac.be> * * Copyright: * Université catholique de Louvain, 2005 * * Last modified: * $Date: 2006-05-22 22:19:52 +0200 (Mon, 22 May 2006) $ * $Revision: 476 $ * * This file is part of CP(Graph) * * See the file "contribs/graph/LICENSE" for information on usage and * redistribution of this file, and for a * DISCLAIMER OF ALL WARRANTIES. * */ #ifndef __GECODE_GRAPH_HH__ #define __GECODE_GRAPH_HH__ #if !defined(GECODE_STATIC_LIBS) && \ (defined(__CYGWIN__) || defined(__MINGW32__) || defined(_MSC_VER)) #ifdef GECODE_BUILD_GRAPH #define GECODE_GRAPH_EXPORT __declspec( dllexport ) #else #define GECODE_GRAPH_EXPORT __declspec( dllimport ) #endif #else #define GECODE_GRAPH_EXPORT #endif #include "kernel.hh" #include "set.hh" #include "int.hh" using namespace Gecode; using namespace Gecode::Set; using namespace std; #include "var.icc" #include "view.icc" #include "path.hh" #include "binarysimple.hh" #include "branch/branch.icc" #endif //__GECODE_GRAPH_HH
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
gecoder-with-gecode-0.7.1 | ext/gecode-1.3.1/contribs/graph/graph.hh |