Skip to content
Permalink
master
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
#!/bin/bash
#
# generate synthetic graphs
#
#for n in 500 1000 2000 5000 10000 20000 30000 ; do
# for m in 1 2 5 10 20 30 ; do
# python graphgen.py -n $n -m $m -o "g_"$n"_"$m".txt"
# done
#done
for n in 3000 ; do
for m in 1 2 5 10 20 30 ; do
python graphgen.py -n $n -m $m -o "g_"$n"_"$m".txt"
done
done