├── .travis.yml ├── LICENSE ├── README.md ├── dfs ├── dfs.go └── dfs_test.go ├── doc.go ├── doc ├── av.dot ├── av.dot.png ├── base.dot ├── base.dot.png ├── each_predecessor.dot ├── each_predecessor.dot.png ├── each_successor.dot ├── each_successor.dot.png ├── eaf.dot ├── eaf.dot.png ├── eat.dot ├── eat.dot.png ├── ee.dot ├── ee.dot.png ├── eeit.dot ├── eeit.dot.png ├── ev.dot ├── ev.dot.png └── gen-all.sh ├── edge.go ├── edge_list.go ├── edge_test.go ├── graph.go ├── graph └── al │ ├── al.go │ ├── al_shared.go │ ├── al_test.go │ ├── data.go │ ├── directed.go │ ├── graph_bench_test.go │ ├── labeled.go │ ├── undirected.go │ └── weighted.go ├── null.go ├── null_test.go ├── rand ├── bernoulli.go └── bernoulli_test.go ├── spec ├── graph_spec.go ├── literal.go ├── suite_basicmut.go ├── suite_count.go ├── suite_data.go ├── suite_digraph.go ├── suite_graph.go ├── suite_label.go ├── suite_simple.go └── suite_weighted.go ├── test-coverage.sh ├── util.go ├── util_test.go ├── vertex.go └── wercker.yml /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdboyer/gogl/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdboyer/gogl/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdboyer/gogl/HEAD/README.md -------------------------------------------------------------------------------- /dfs/dfs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdboyer/gogl/HEAD/dfs/dfs.go -------------------------------------------------------------------------------- /dfs/dfs_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdboyer/gogl/HEAD/dfs/dfs_test.go -------------------------------------------------------------------------------- /doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdboyer/gogl/HEAD/doc.go -------------------------------------------------------------------------------- /doc/av.dot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdboyer/gogl/HEAD/doc/av.dot -------------------------------------------------------------------------------- /doc/av.dot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdboyer/gogl/HEAD/doc/av.dot.png -------------------------------------------------------------------------------- /doc/base.dot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdboyer/gogl/HEAD/doc/base.dot -------------------------------------------------------------------------------- /doc/base.dot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdboyer/gogl/HEAD/doc/base.dot.png -------------------------------------------------------------------------------- /doc/each_predecessor.dot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdboyer/gogl/HEAD/doc/each_predecessor.dot -------------------------------------------------------------------------------- /doc/each_predecessor.dot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdboyer/gogl/HEAD/doc/each_predecessor.dot.png -------------------------------------------------------------------------------- /doc/each_successor.dot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdboyer/gogl/HEAD/doc/each_successor.dot -------------------------------------------------------------------------------- /doc/each_successor.dot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdboyer/gogl/HEAD/doc/each_successor.dot.png -------------------------------------------------------------------------------- /doc/eaf.dot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdboyer/gogl/HEAD/doc/eaf.dot -------------------------------------------------------------------------------- /doc/eaf.dot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdboyer/gogl/HEAD/doc/eaf.dot.png -------------------------------------------------------------------------------- /doc/eat.dot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdboyer/gogl/HEAD/doc/eat.dot -------------------------------------------------------------------------------- /doc/eat.dot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdboyer/gogl/HEAD/doc/eat.dot.png -------------------------------------------------------------------------------- /doc/ee.dot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdboyer/gogl/HEAD/doc/ee.dot -------------------------------------------------------------------------------- /doc/ee.dot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdboyer/gogl/HEAD/doc/ee.dot.png -------------------------------------------------------------------------------- /doc/eeit.dot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdboyer/gogl/HEAD/doc/eeit.dot -------------------------------------------------------------------------------- /doc/eeit.dot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdboyer/gogl/HEAD/doc/eeit.dot.png -------------------------------------------------------------------------------- /doc/ev.dot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdboyer/gogl/HEAD/doc/ev.dot -------------------------------------------------------------------------------- /doc/ev.dot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdboyer/gogl/HEAD/doc/ev.dot.png -------------------------------------------------------------------------------- /doc/gen-all.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdboyer/gogl/HEAD/doc/gen-all.sh -------------------------------------------------------------------------------- /edge.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdboyer/gogl/HEAD/edge.go -------------------------------------------------------------------------------- /edge_list.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdboyer/gogl/HEAD/edge_list.go -------------------------------------------------------------------------------- /edge_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdboyer/gogl/HEAD/edge_test.go -------------------------------------------------------------------------------- /graph.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdboyer/gogl/HEAD/graph.go -------------------------------------------------------------------------------- /graph/al/al.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdboyer/gogl/HEAD/graph/al/al.go -------------------------------------------------------------------------------- /graph/al/al_shared.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdboyer/gogl/HEAD/graph/al/al_shared.go -------------------------------------------------------------------------------- /graph/al/al_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdboyer/gogl/HEAD/graph/al/al_test.go -------------------------------------------------------------------------------- /graph/al/data.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdboyer/gogl/HEAD/graph/al/data.go -------------------------------------------------------------------------------- /graph/al/directed.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdboyer/gogl/HEAD/graph/al/directed.go -------------------------------------------------------------------------------- /graph/al/graph_bench_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdboyer/gogl/HEAD/graph/al/graph_bench_test.go -------------------------------------------------------------------------------- /graph/al/labeled.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdboyer/gogl/HEAD/graph/al/labeled.go -------------------------------------------------------------------------------- /graph/al/undirected.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdboyer/gogl/HEAD/graph/al/undirected.go -------------------------------------------------------------------------------- /graph/al/weighted.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdboyer/gogl/HEAD/graph/al/weighted.go -------------------------------------------------------------------------------- /null.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdboyer/gogl/HEAD/null.go -------------------------------------------------------------------------------- /null_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdboyer/gogl/HEAD/null_test.go -------------------------------------------------------------------------------- /rand/bernoulli.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdboyer/gogl/HEAD/rand/bernoulli.go -------------------------------------------------------------------------------- /rand/bernoulli_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdboyer/gogl/HEAD/rand/bernoulli_test.go -------------------------------------------------------------------------------- /spec/graph_spec.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdboyer/gogl/HEAD/spec/graph_spec.go -------------------------------------------------------------------------------- /spec/literal.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdboyer/gogl/HEAD/spec/literal.go -------------------------------------------------------------------------------- /spec/suite_basicmut.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdboyer/gogl/HEAD/spec/suite_basicmut.go -------------------------------------------------------------------------------- /spec/suite_count.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdboyer/gogl/HEAD/spec/suite_count.go -------------------------------------------------------------------------------- /spec/suite_data.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdboyer/gogl/HEAD/spec/suite_data.go -------------------------------------------------------------------------------- /spec/suite_digraph.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdboyer/gogl/HEAD/spec/suite_digraph.go -------------------------------------------------------------------------------- /spec/suite_graph.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdboyer/gogl/HEAD/spec/suite_graph.go -------------------------------------------------------------------------------- /spec/suite_label.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdboyer/gogl/HEAD/spec/suite_label.go -------------------------------------------------------------------------------- /spec/suite_simple.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdboyer/gogl/HEAD/spec/suite_simple.go -------------------------------------------------------------------------------- /spec/suite_weighted.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdboyer/gogl/HEAD/spec/suite_weighted.go -------------------------------------------------------------------------------- /test-coverage.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdboyer/gogl/HEAD/test-coverage.sh -------------------------------------------------------------------------------- /util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdboyer/gogl/HEAD/util.go -------------------------------------------------------------------------------- /util_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdboyer/gogl/HEAD/util_test.go -------------------------------------------------------------------------------- /vertex.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sdboyer/gogl/HEAD/vertex.go -------------------------------------------------------------------------------- /wercker.yml: -------------------------------------------------------------------------------- 1 | box: wercker/golang@1.1.2 2 | 3 | --------------------------------------------------------------------------------