From 09b031253a7c6c23a6ec514a490aa510520dab4a Mon Sep 17 00:00:00 2001 From: Jonathon Lynn Duerig Date: Fri, 3 Aug 2007 20:53:19 +0000 Subject: [PATCH] Quick undo of last edit. I realized that randomization has other implications which have to be worked out. --- pelab/bw-bottleneck/gather-dest.pl | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/pelab/bw-bottleneck/gather-dest.pl b/pelab/bw-bottleneck/gather-dest.pl index f5581a889..06a4fd8d3 100644 --- a/pelab/bw-bottleneck/gather-dest.pl +++ b/pelab/bw-bottleneck/gather-dest.pl @@ -94,8 +94,10 @@ for ($i = 0; $i < $nodeCount; ++$i) { for ($j = $i + 1; $j < $nodeCount; ++$j) { - $dest1 = $randList[$i]; - $dest2 = $randList[$j]; +# $dest1 = $randList[$i]; +# $dest2 = $randList[$j]; + $dest1 = $i + 1; + $dest2 = $j + 1; if ($dest1 != $source && $dest2 != $source) { -- GitLab