-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuildTestGraphs.sh
More file actions
13 lines (12 loc) · 924 Bytes
/
Copy pathbuildTestGraphs.sh
File metadata and controls
13 lines (12 loc) · 924 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/bin/bash
# Builds a whole bunch of test graphs, using as many construction param combinations as possible
#build a basic directed, weighted graph
python BuildGraph.py ./testdir testDirected.graphml --directed --weighted --disallowReflexive --edgeFilter=3 --nodeFilter=3
#build a basic undirected, weighted graph
python BuildGraph.py ./testdir testDirected.graphml --weighted --disallowReflexive --edgeFilter=3 --nodeFilter=3
#build a basic directed, unweighted graph
python BuildGraph.py ./testdir testDirected.graphml --directed --disallowReflexive --edgeFilter=3 --nodeFilter=3
#build a basic undirected, unweighted graph
python BuildGraph.py ./testdir testDirected.graphml --disallowReflexive --edgeFilter=3 --nodeFilter=3
#builds the most complete graph: directed, weighted, reflexive, no filtering
python BuildGraph.py ./testdir testDirected.graphml --directed --weighted --edgeFilter=0 --nodeFilter=0