about summary refs log tree commit diff
path: root/src/io.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/io.cpp')
-rw-r--r--src/io.cpp11
1 files changed, 9 insertions, 2 deletions
diff --git a/src/io.cpp b/src/io.cpp
index fb0f0e7..7e682b3 100644
--- a/src/io.cpp
+++ b/src/io.cpp
@@ -52,10 +52,17 @@ using namespace std;
 // Print progress bar.
 void ProgressBar(string str, double p, double total, double ratio) {
   assert(p<=total);
+  assert(p>=0);
+  if (total <= 0.0) return;
   const double progress = (100.0 * p / total);
   const uint barsize = (int)(progress / 2.0); // characters
-  cout << str << " ";
-  cout << std::string(barsize,'=');
+  // cout << barsize << endl;
+  // cout << str << " ";
+  // cout << p << "/" << total << endl;
+  assert(barsize < 101); // corrupted data somehow
+  if (barsize > 0) {
+    cout << std::string(barsize,'=');
+  }
   cout << std::string(50-barsize,' ');
   cout << setprecision(0) << fixed << " " << progress << "%";
   if (ratio != -1.0)