Network Topology Generator
Last update : 1/3/2007
routing_flood_topo - Perform 5 routing tables with the flood method
Calling Sequence
-
[table_routage_1,table_routage_2,table_routage_3,table_routage_4,table_routage_5]=routing_flood_topo(g,name)
Parameters
-
g
: network graph
-
name
: backup name
-
table_routage_1
: routing table 1
-
table_routage_2
: routing table 2
-
table_routage_3
: routing table 3
-
table_routage_4
: routing table 4
-
table_routage_5
: routing table 5
Description
-
Perform 5 routing table with the flood method. They give distinct routes for a connection between two network nodes.
Examples
L=1000;
n=25;
[g,conn]=waxmanconnex(0.3,0.5,n,L);
show_graph(g);
g=weightgraph(g);
[table_routage_1,table_routage_2,table_routage_3,table_routage_4,table_routage_5]=routing_flood_topo(g,'test.dat');
Authors
-
Foued Melakessou
University of Luxembourg
Bibliography
Intra Project 2004-2007
Used Function
dijkstra, mpath, disjoint, rvector.
See Also
dijkstra
,
mpath
,
disjoint
,
rvector
,