merge changes from GSoC 2012 NS-3 LTE MAC schedulers
authorDizhi Zhou <dizhi.zhou@gmail.com>
Sun, 21 Oct 2012 22:22:45 -0300
changeset 9150 6451721140bb
parent 9149 2580b67c83b3 (current diff)
parent 9112 ede7a74e7411 (diff)
child 9151 bf8c3950df8e
merge changes from GSoC 2012 NS-3 LTE MAC schedulers
--- a/doc/tutorial/source/building-topologies.rst	Sun Oct 21 21:47:17 2012 -0300
+++ b/doc/tutorial/source/building-topologies.rst	Sun Oct 21 22:22:45 2012 -0300
@@ -267,7 +267,7 @@
 
   UdpEchoClientHelper echoClient (csmaInterfaces.GetAddress (nCsma), 9);
   echoClient.SetAttribute ("MaxPackets", UintegerValue (1));
-  echoClient.SetAttribute ("Interval", TimeValue (Seconds (1.)));
+  echoClient.SetAttribute ("Interval", TimeValue (Seconds (1.0)));
   echoClient.SetAttribute ("PacketSize", UintegerValue (1024));
 
   ApplicationContainer clientApps = echoClient.Install (p2pNodes.Get (0));
@@ -1124,7 +1124,7 @@
 
   UdpEchoClientHelper echoClient (csmaInterfaces.GetAddress (nCsma), 9);
   echoClient.SetAttribute ("MaxPackets", UintegerValue (1));
-  echoClient.SetAttribute ("Interval", TimeValue (Seconds (1.)));
+  echoClient.SetAttribute ("Interval", TimeValue (Seconds (1.0)));
   echoClient.SetAttribute ("PacketSize", UintegerValue (1024));
 
   ApplicationContainer clientApps =
--- a/doc/tutorial/source/conceptual-overview.rst	Sun Oct 21 21:47:17 2012 -0300
+++ b/doc/tutorial/source/conceptual-overview.rst	Sun Oct 21 22:22:45 2012 -0300
@@ -636,7 +636,7 @@
 
     UdpEchoClientHelper echoClient (interfaces.GetAddress (1), 9);
     echoClient.SetAttribute ("MaxPackets", UintegerValue (1));
-    echoClient.SetAttribute ("Interval", TimeValue (Seconds (1.)));
+    echoClient.SetAttribute ("Interval", TimeValue (Seconds (1.0)));
     echoClient.SetAttribute ("PacketSize", UintegerValue (1024));
 
     ApplicationContainer clientApps = echoClient.Install (nodes.Get (0));
--- a/examples/tutorial/second.cc	Sun Oct 21 21:47:17 2012 -0300
+++ b/examples/tutorial/second.cc	Sun Oct 21 22:22:45 2012 -0300
@@ -97,7 +97,7 @@
 
   UdpEchoClientHelper echoClient (csmaInterfaces.GetAddress (nCsma), 9);
   echoClient.SetAttribute ("MaxPackets", UintegerValue (1));
-  echoClient.SetAttribute ("Interval", TimeValue (Seconds (1.)));
+  echoClient.SetAttribute ("Interval", TimeValue (Seconds (1.0)));
   echoClient.SetAttribute ("PacketSize", UintegerValue (1024));
 
   ApplicationContainer clientApps = echoClient.Install (p2pNodes.Get (0));
--- a/examples/tutorial/third.cc	Sun Oct 21 21:47:17 2012 -0300
+++ b/examples/tutorial/third.cc	Sun Oct 21 22:22:45 2012 -0300
@@ -157,7 +157,7 @@
 
   UdpEchoClientHelper echoClient (csmaInterfaces.GetAddress (nCsma), 9);
   echoClient.SetAttribute ("MaxPackets", UintegerValue (1));
-  echoClient.SetAttribute ("Interval", TimeValue (Seconds (1.)));
+  echoClient.SetAttribute ("Interval", TimeValue (Seconds (1.0)));
   echoClient.SetAttribute ("PacketSize", UintegerValue (1024));
 
   ApplicationContainer clientApps =