I am getting a segmentation fault on this simple example. My graph is described in a dot file named graph.dot that contains this:
graph {
a -- b;
a -- c;
b -- d;
b -- e;
c -- f;
c -- g;
f -- h;
f -- i;
}
Then I do this:
using GraphViz
io = open("graph.dot","r")
dot = Graph(io)
and the last line causes a segmentation fault that kicks me out of julia:
signal (11): Segmentation fault
unknown function (ip: 0x7f4227bc4780)
Segmentation fault (core dumped)
Thanks for your help!