dimacs.cpp 463 B

12345678910111213141516
  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. #include <boost/graph/read_dimacs.hpp>
  7. #include <boost/graph/write_dimacs.hpp>
  8. // This is obviously just a stub test. It's currently only used as a compile
  9. // check to make sure that the includes are appropriate.
  10. int main()
  11. {
  12. return 0;
  13. }