[15999] in North American Network Operators' Group
Re: Dijkstra Simulator
daemon@ATHENA.MIT.EDU (Daniel O. Awduche)
Mon Apr 6 11:03:23 1998
Date: Sun, 05 Apr 1998 22:49:18 -0400
From: "Daniel O. Awduche" <awduche@uu.net>
Reply-To: awduche@uu.net
To: alan@globalcenter.net
CC: nanog@merit.edu
The WANDL network planning and analysis software can be used
for this purpose (and much more).
Alternatively, you can trivially write an all "pairs shortest
path" program, using, for example, the Floyd-Warshall dynamic
programming algorithm (See "Introduction to Algorithms," by
Corman, Leiserson, and Rivest). The same result can be gotten
by running Dijkstra's algorithm |V| times (once for each node),
where |V| is the cardinality of the set of nodes in your network
graph.
/Dan.
Alan Hannan said:
>
> Could someone provide a reference for a Dijkstra simulator?
>
> Ideally this would take three sets of inputs (links, nodes,
> metrics) and produce edge-pair traffic flows.
>
> Any suggestions appreciated, especially for GPL stuff that has
> code.
>
> -a