Ticket #439: bug_here.cpp
File bug_here.cpp, 352 bytes (added by , 13 years ago) |
---|
Line | |
---|---|
1 | #include <iostream> |
2 | #include <lemon/list_graph.h> |
3 | #include <lemon/connectivity.h> |
4 | #include <lemon/lgf_reader.h> |
5 | |
6 | using namespace lemon; |
7 | using namespace std; |
8 | |
9 | int main() |
10 | { |
11 | ListGraph g; |
12 | graphReader(g,"problematic_graph.lgf").run(); |
13 | graphWriter(g,cout).run(); |
14 | if (biNodeConnected(g)) |
15 | cout<<"Ez 2-osszefuggo a lemon fuggveny szerint"; |
16 | cin.get(); |
17 | } |