commit | f410daf319da2e12346b80f7f842d93352248683 | [log] [tgz] |
---|---|---|
author | Alexander Afanasyev <alexander.afanasyev@ucla.edu> | Sun Jan 22 17:18:41 2012 -0800 |
committer | Alexander Afanasyev <alexander.afanasyev@ucla.edu> | Sun Jan 22 17:18:41 2012 -0800 |
tree | 946aa3620ea528be386499dda753e10f651495e9 | |
parent | 1e9348fb8dbcb8020f95888314d9e16db78fb5a7 [diff] |
Making progress report only every 5 seconds
diff --git a/examples/base-experiment.h b/examples/base-experiment.h index 3c9e710..0a83131 100644 --- a/examples/base-experiment.h +++ b/examples/base-experiment.h
@@ -27,7 +27,7 @@ { cout << "Progress: " << Simulator::Now ().ToDouble (Time::S) << "s" << endl; - Simulator::Schedule (Seconds (1.0), PrintTime); + Simulator::Schedule (Seconds (5.0), PrintTime); } class BaseExperiment