*** isomorphism.cpp.orig Mon Jan 3 18:24:38 2005 --- isomorphism.cpp Mon Jan 3 18:27:17 2005 *************** *** 148,153 **** --- 148,157 ---- } } + #ifndef BOOST_NO_STDC_NAMESPACE + namespace std { using ::atoi; using ::atof; } + #endif + int test_main(int argc, char* argv[]) { if (argc < 3) { *************** *** 155,166 **** return 0; } ! #ifndef BOOST_NO_STDC_NAMESPACE ! using std::atoi; ! using std::atof; ! #endif ! int n = atoi(argv[1]); ! double edge_prob = atof(argv[2]); test_isomorphism(n, edge_prob); return 0; --- 159,166 ---- return 0; } ! int n = std::atoi(argv[1]); ! double edge_prob = std::atof(argv[2]); test_isomorphism(n, edge_prob); return 0;