diff options
Diffstat (limited to 'src/boost/libs/graph/test/dimacs.cpp')
-rw-r--r-- | src/boost/libs/graph/test/dimacs.cpp | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/src/boost/libs/graph/test/dimacs.cpp b/src/boost/libs/graph/test/dimacs.cpp new file mode 100644 index 00000000..7cad5ec0 --- /dev/null +++ b/src/boost/libs/graph/test/dimacs.cpp @@ -0,0 +1,16 @@ +// (C) Copyright Andrew Sutton 2009 +// +// Use, modification and distribution are subject to the +// Boost Software License, Version 1.0 (See accompanying file +// LICENSE_1_0.txt or http://www.boost.org/LICENSE_1_0.txt) + +#include <boost/graph/read_dimacs.hpp> +#include <boost/graph/write_dimacs.hpp> + +// This is obviously just a stub test. It's currently only used as a compile +// check to make sure that the includes are appropriate. + +int main() +{ + return 0; +} |