summaryrefslogtreecommitdiff
path: root/src/Toplex_map/benchmark/chrono.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/Toplex_map/benchmark/chrono.cpp')
-rw-r--r--src/Toplex_map/benchmark/chrono.cpp5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/Toplex_map/benchmark/chrono.cpp b/src/Toplex_map/benchmark/chrono.cpp
index de6d701f..e6172c61 100644
--- a/src/Toplex_map/benchmark/chrono.cpp
+++ b/src/Toplex_map/benchmark/chrono.cpp
@@ -107,7 +107,10 @@ void chrono(int n, int d){
end = std::chrono::system_clock::now();
auto c2 = std::chrono::duration_cast<std::chrono::milliseconds>(end-start).count();
- std::cout << c1 << "\t \t" << c2 << "\t \t" << c3 << "\t \t" << K.num_maximal_simplices() << std::endl;
+ if (c3 > 0)
+ std::cout << c1 << "\t \t" << c2 << "\t \t" << c3 << "\t \t" << K.num_maximal_simplices() << std::endl;
+ else
+ std::cout << c1 << "\t \t" << c2 << "\t \tN/A\t \t" << K.num_maximal_simplices() << std::endl;
}
int main(){