Network Topology Generator
Last update : 28/2/2007
multip - Multiple path discovery initialization based on a flood method
Calling Sequence
-
[mat,np]=multip(ge,ne,nr,TTL)
Parameters
-
ge
: network graph
-
ne
: emission node
-
nr
: reception node
-
TTL
: route discovery packet time to live
-
mat
: discovery packet storage matrix
-
np
: current quantity of discovery packets
Description
-
Multiple path discovery initialization based on a flood method. The set of possible routes are stored in the matrix mat (route|arrival|TTL|route length). The current quantity of discovery packet is np.
Examples
D=300;
L=1000;
n=30;
ne=1;
nr=10;
TTL=10;
[g]=ntg_locality(D,L,n);
g=weightgraph(g);
[mat,np]=multip(g,ne,nr,TTL);
Authors
-
Foued Melakessou
University of Luxembourg
Bibliography
Intra Project 2004-2007
Used Function
distance.
See Also
distance
,