#include #include #include using namespace lemon; std::string instance_name; int testMain(std::istream &input); int main(int argc, char **argv) { if(argc!=2) exit(1); std::ifstream input; input.open((DATADIR_PATH+"/"+argv[1]).c_str()); instance_name = argv[1]; Timer ti; testMain(input); logTime("total",ti); }