From f262b76a416085ed0741084825fe9318fbc640e5 Mon Sep 17 00:00:00 2001 From: "Gustavo J. A. M. Carneiro" Date: Fri, 1 Feb 2008 18:39:37 +0000 Subject: [PATCH] Put back the simulation time in 30 seconds, else we generate huge trace files. --- examples/simple-point-to-point-olsr.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/examples/simple-point-to-point-olsr.cc b/examples/simple-point-to-point-olsr.cc index ee2fa6a51..4da6a399f 100644 --- a/examples/simple-point-to-point-olsr.cc +++ b/examples/simple-point-to-point-olsr.cc @@ -212,8 +212,8 @@ main (int argc, char *argv[]) pcaptrace.TraceAllIp (); NS_LOG_INFO ("Run Simulation."); - Simulator::StopAt (Seconds (300)); - Simulator::Run (); + Simulator::StopAt (Seconds (30)); + Simulator::Run (); Simulator::Destroy (); NS_LOG_INFO ("Done."); }