summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/benchmark.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/benchmark.cpp b/src/benchmark.cpp
index 3abb4cd..e393fef 100644
--- a/src/benchmark.cpp
+++ b/src/benchmark.cpp
@@ -181,8 +181,8 @@ void benchmark_latex( std::string input_filename, bool use_binary, Ansatz_type a
reduction_algorithm( matrix );
}
- double running_time = omp_get_wtime() - reduction_timer + dualization_time;
- //double running_time = omp_get_wtime( ) - reduction_timer;
+ //double running_time = omp_get_wtime() - reduction_timer + dualization_time;
+ double running_time = omp_get_wtime( ) - reduction_timer;
double running_time_rounded = floor( running_time * 10.0 + 0.5 ) / 10.0;
std::cout << "& "<< setiosflags( std::ios::fixed ) << setiosflags( std::ios::showpoint ) << std::setprecision( 1 ) << running_time_rounded << " ";
}