//============================================================================= #ifndef PERFORMANCE_2_TEST_H #define PERFORMANCE_2_TEST_H //== INCLUDES ================================================================= #include #include //#include #include #include #include "Stop_watch.h" //== CLASS DEFINITION ========================================================= class Performance_test_2 { public: Performance_test_2() {} void run(const char* input, const char* output) { graphene::StopWatch timer; timer.start(); if (!read_mesh(input)) { std::cerr << "read error\n"; exit(1); } timer.stop(); std::cout << "Read mesh : " << timer << std::endl; display_info(); timer.start(); int c; for (int i=0; i<100; ++i) c = circulator_test(); timer.stop(); CGAL_assertion(c==0); std::cout << "Circulator: "<