Fix symbols used for representing links
authorRichard Whitehouse <github@richardwhiuk.com>
Tue, 17 May 2011 13:31:38 +0000 (14:31 +0100)
committerRichard Whitehouse <github@richardwhiuk.com>
Tue, 17 May 2011 13:31:38 +0000 (14:31 +0100)
implementation.tex

index d6ae326b87da7996c27ba7c2343c1d6900fbe755..851312ff17433dfde967dafdcdac011e8f8a4bf1 100644 (file)
@@ -110,7 +110,7 @@ The two trace file formats used are a ASCII format included with ns3, as describ
 
 \subsection{Topology Representation}
 
-The topology is represented internally with a a std::map between hosts and bridges, since each host may only appear on one bridge, and a std::set of pairs which contains bridge to bridge links with a custom comparator. The custom comparator is designed in order to give a total order to links, without caring about order, as links are bidirectional. Thus <1,2> is treated equal to <2,1>. The order defined is that <1,2> < <1,3> < <4,1> < <3,4>, in other words, the lower number is used for the primary sort, and the larger one as a secondary sort. These provided adequate performance for the purpose.
+The topology is represented internally with a a std::map between hosts and bridges, since each host may only appear on one bridge, and a std::set of pairs which contains bridge to bridge links with a custom comparator. The custom comparator is designed in order to give a total order to links, without caring about order, as links are bidirectional. Thus $<1,2>$ is treated equal to $<2,1>$. The order defined is that $<1,2>$ < $<1,3>$ < $<4,1>$ < $<3,4>$, in other words, the lower number is used for the primary sort, and the larger one as a secondary sort. These provided adequate performance for the purpose.
 
 \subsection{MOOSE State Tables}