Here is the piece of code, which is really close to the example provided in your files. As you can see, I only try to generate a graph of 10 vertices, with 10 edges which are all directed into the first vertice.
I've randomly generating the edges' weights with 'double' and also i've tried with some 'integer'. I've also check if my memory range was not the problem, but everything looked correct.
Note that, if I change the weight to a fixed value for every edge, I can increase the 'N' variable to 250 until it throws me the same error, which is slighty better but still low in memory storage.
The problem is raised when the function : edmonds_optimum_branching is called
Have you any idea of where the problem could come from ?
Hello,
I'm currently running into a core dump error when I'm trying to use the library.
Here is the piece of code, which is really close to the example provided in your files. As you can see, I only try to generate a graph of 10 vertices, with 10 edges which are all directed into the first vertice.
I've randomly generating the edges' weights with 'double' and also i've tried with some 'integer'. I've also check if my memory range was not the problem, but everything looked correct.
Note that, if I change the weight to a fixed value for every edge, I can increase the 'N' variable to 250 until it throws me the same error, which is slighty better but still low in memory storage.
The problem is raised when the function :
edmonds_optimum_branching
is calledHave you any idea of where the problem could come from ?