From 975f9c159a5d282968cd241bc32c5864c2bbe273 Mon Sep 17 00:00:00 2001 From: ccremers Date: Fri, 27 Feb 2004 15:04:32 +0000 Subject: [PATCH] - Implemented the new algorithm -t6. Note: it is currently worse than -t5, and the reason is that it is good to do the sends first, to avoid branching. - Fixed a flaw in the flag returned by match_basic. --- spdl/ns3-extreme.spdl | 18 ++++++++---------- 1 file changed, 8 insertions(+), 10 deletions(-) diff --git a/spdl/ns3-extreme.spdl b/spdl/ns3-extreme.spdl index 1d760f9..e338ccd 100644 --- a/spdl/ns3-extreme.spdl +++ b/spdl/ns3-extreme.spdl @@ -37,13 +37,11 @@ compromised sk(Eve); /* pre-defined 10 runs, limit using --max-runs parameters */ -run ns3.I(Alice,Bob); - run ns3.R(Alice,Bob); -run ns3.I(Alice,Eve); - run ns3.R(Eve,Bob); -run ns3.I(Bob,Alice); - run ns3.R(Bob,Alice); -run ns3.I(Bob,Eve); - run ns3.R(Eve,Alice); -run ns3.I(Alice,Alice); - run ns3.R(Bob,Bob); +run ns3.I(Agent,Agent); +run ns3.R(Agent,Agent); +run ns3.I(Agent,Agent); +run ns3.R(Agent,Agent); +run ns3.I(Agent,Agent); +run ns3.R(Agent,Agent); +run ns3.I(Agent,Agent); +run ns3.R(Agent,Agent);