1 // (C) Copyright Andrew Sutton 2009 2 // 3 // Use, modification and distribution are subject to the 4 // Boost Software License, Version 1.0 (See accompanying file 5 // LICENSE_1_0.txt or http://www.boost.org/LICENSE_1_0.txt) 6 7 #include <boost/graph/read_dimacs.hpp> 8 #include <boost/graph/write_dimacs.hpp> 9 10 // This is obviously just a stub test. It's currently only used as a compile 11 // check to make sure that the includes are appropriate. 12 main()13int main() { return 0; } 14