| author | deba | 
| Mon, 24 Jul 2006 09:50:40 +0000 | |
| changeset 2161 | a21d1e88d389 | 
| parent 2160 | abd867cf8a9c | 
| child 2162 | 6831fa007688 | 
1.1 --- a/demo/strongly_connected_orientation.cc Mon Jul 24 09:49:50 2006 +0000 1.2 +++ b/demo/strongly_connected_orientation.cc Mon Jul 24 09:50:40 2006 +0000 1.3 @@ -104,7 +104,9 @@ 1.4 int num_scc = countStronglyConnectedComponents(dgraph); 1.5 int num_becc = countBiEdgeConnectedComponents(ugraph); 1.6 1.7 - LEMON_ASSERT(num_scc == num_becc, "Wrong Orientation"); 1.8 + if (num_scc != num_becc) { 1.9 + std::cerr << "Wrong Orientation" << std::endl; 1.10 + } 1.11 1.12 return 0; 1.13 }