Changeset 1424:7edc220d6244 in lemon
- Timestamp:
- 05/15/19 13:33:55 (6 years ago)
- Branch:
- 1.2
- Phase:
- public
- Amend:
- 64656133343266303432616633616532343038303566396637363761343462333836636530353933
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
lemon/list_graph.h
r1355 r1424 1210 1210 ListGraph() {} 1211 1211 1212 typedef Parent:: OutArcIt IncEdgeIt;1212 typedef Parent::IncEdgeIt IncEdgeIt; 1213 1213 1214 1214 /// \brief Add a new node to the graph. -
tools/dimacs-solver.cc
r1169 r1424 222 222 throw IoError("Cannot open the file for writing", ap.files()[1]); 223 223 } 224 // fall through 224 225 case 1: 225 226 input.open(ap.files()[0].c_str()); … … 227 228 throw IoError("File cannot be found", ap.files()[0]); 228 229 } 230 // fall through 229 231 case 0: 230 232 break; … … 251 253 case DimacsDescriptor::SP: 252 254 std::cout << "sp"; 255 break; 253 256 case DimacsDescriptor::MAT: 254 257 std::cout << "mat"; -
tools/dimacs-to-lgf.cc
r631 r1397 74 74 throw IoError("Cannot open the file for writing", ap.files()[1]); 75 75 } 76 // fall through 76 77 case 1: 77 78 input.open(ap.files()[0].c_str()); … … 79 80 throw IoError("File cannot be found", ap.files()[0]); 80 81 } 82 // fall through 81 83 case 0: 82 84 break;
Note: See TracChangeset
for help on using the changeset viewer.