Design
small.txt
Associated article: Simulating Small-World Networks
Tags: Mobile Design
Published source code accompanying the article by Mary Lynn Reed in which she examines some of the most popular algorithms for simulating small-world networks.
Simulating Small-World Networks
by Mary Lynn Reed
Listing One
#!/usr/bin/perl
# Generate an Erdos-Renyi Random Graph with $N nodes
# and edge probability $p using random seed $seed
#
$N = 50;
$p = 0.2;
$seed = 11967;
print "graph ER { n";
print "node [...


