diff --git a/abrak/bullgraph.pdf b/abrak/bullgraph.pdf new file mode 100644 index 0000000..863ac98 Binary files /dev/null and b/abrak/bullgraph.pdf differ diff --git a/abrak/igraph_ow8m6ld.png b/abrak/igraph_ow8m6ld.png new file mode 100644 index 0000000..9046d85 Binary files /dev/null and b/abrak/igraph_ow8m6ld.png differ diff --git a/abrak/igraphr1i7p56p.png b/abrak/igraphr1i7p56p.png new file mode 100644 index 0000000..1982bba Binary files /dev/null and b/abrak/igraphr1i7p56p.png differ diff --git a/generate-modified-graph.py b/generate-modified-graph.py new file mode 100644 index 0000000..d9785cf --- /dev/null +++ b/generate-modified-graph.py @@ -0,0 +1,14 @@ +#!/usr/bin/env python3 + +from igraph import * + + +def generate_graph(): + g = Graph() + g.add_vertices(5) + g.add_edges([(0, 1), (1, 2), (2, 3), (3, 4)]) + plot(g) + + +if __name__ == "__main__": + generate_graph()