Commit 69ea3bd4 authored by Davis King's avatar Davis King

Fixed timing print() so the output scales are set correctly.

parent 50de3da9
......@@ -155,9 +155,9 @@ namespace dlib
if (time < 1000)
cout << " " << name << ": " << time << " milliseconds" << endl;
else if (time < 1000*1000)
else if (time < 1000*60)
cout << " " << name << ": " << time/1000.0 << " seconds" << endl;
else if (time < 1000*1000*60)
else if (time < 1000*60*60)
cout << " " << name << ": " << time/1000.0/60.0 << " minutes" << endl;
else
cout << " " << name << ": " << time/1000.0/60.0/60.0 << " hours" << endl;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment