# HG changeset patch # User Alpar Juttner # Date 1521815843 -3600 # Node ID 50b7e16a135a46619a6f04717ca4461774efeec4 # Parent 881e4168c65fd2bf0ec522fd6a795705a63b1eb9# Parent ad22262328b3fbdec2b41f70fa65a65b9ccf752b Merge bugfix #609 diff -r 881e4168c65f -r 50b7e16a135a tools/dimacs-solver.cc --- a/tools/dimacs-solver.cc Sat Oct 07 00:21:15 2017 +0200 +++ b/tools/dimacs-solver.cc Fri Mar 23 15:37:23 2018 +0100 @@ -222,11 +222,13 @@ if (!output) { throw IoError("Cannot open the file for writing", ap.files()[1]); } + // fall through case 1: input.open(ap.files()[0].c_str()); if (!input) { throw IoError("File cannot be found", ap.files()[0]); } + // fall through case 0: break; default: @@ -251,6 +253,7 @@ break; case DimacsDescriptor::SP: std::cout << "sp"; + break; case DimacsDescriptor::MAT: std::cout << "mat"; break;