Go to the documentation of this file.
31 #define DEBUG_TIMER_START clock_t debug_timer_start = clock();
32 #define DEBUG_TIMER_END \
33 clock_t debug_timer_end = clock(); \
34 std::cerr << "DEBUG TIME: " << 1.0e6*static_cast<Real>(debug_timer_end-debug_timer_start)/CLOCKS_PER_SEC << " us (" << (debug_timer_end-debug_timer_start) << " ticks)" << std::endl;