From 22be8b7ae6c8689ff3d6c20f3e9d0ac4a5bb78df Mon Sep 17 00:00:00 2001 From: Tom Henderson Date: Sat, 19 May 2018 22:21:00 -0700 Subject: [PATCH] backout accidentally committed debugging code --- scratch/scratch-simulator.cc | 4 ---- 1 file changed, 4 deletions(-) diff --git a/scratch/scratch-simulator.cc b/scratch/scratch-simulator.cc index acd414dbc..aa7cc6fa4 100644 --- a/scratch/scratch-simulator.cc +++ b/scratch/scratch-simulator.cc @@ -25,10 +25,6 @@ main (int argc, char *argv[]) { NS_LOG_UNCOND ("Scratch Simulator"); - Time retry = std::pow (2, 3 - 1) * Seconds (3); - uint16_t backoffFactor = 3 - 1; - Time retry2 = Seconds (3) * (1 << backoffFactor); - std::cout << "Retry " << retry.GetSeconds () << " " << retry2.GetSeconds () << std::endl; Simulator::Run (); Simulator::Destroy (); }