Re: [graph-tool] Accessibility from C++

2019-10-22 Thread Gerion Entrup
Am Donnerstag, 10. Januar 2019, 23:51:29 CEST schrieb Tiago de Paula Peixoto: > Am 10.01.19 um 13:48 schrieb Gerion Entrup: > > So my question is: Is it possible to get the C++ graph object out of the > > Python graph object? Is it possible to fill the C++ graph object > > directly with nodes and

Re: [graph-tool] Accessibility from C++

2019-01-26 Thread esurface
I'm looking forward to this as well. Information on compiling c++ libraries modularly would be appreciated as well. For example, I only need the core functionality and not the inference modules. Thank you! -- Sent from:

Re: [graph-tool] Accessibility from C++

2019-01-21 Thread Tiago de Paula Peixoto
Am 17.01.19 um 19:51 schrieb davidt: > Hello > > I have exactly the same requirement, but perhaps more specifically: how do I > get hold of the underlying boost::adjacency_list object to pass to C++ and > then extract from a boost::python::object? As I said before, I will provide documentation

Re: [graph-tool] Accessibility from C++

2019-01-21 Thread davidt
Hello I have exactly the same requirement, but perhaps more specifically: how do I get hold of the underlying boost::adjacency_list object to pass to C++ and then extract from a boost::python::object? To do this I just need to know two things: “stuff” and “command” in typedef

[graph-tool] Accessibility from C++

2019-01-10 Thread Tiago de Paula Peixoto
Am 10.01.19 um 13:48 schrieb Gerion Entrup: > So my question is: Is it possible to get the C++ graph object out of the > Python graph object? Is it possible to fill the C++ graph object > directly with nodes and edges? This is possible, and not very difficult. However, it's undocumented at the

[graph-tool] Accessibility from C++

2019-01-10 Thread Gerion Entrup
Hi, I need a graph library that is accessible for both Python and C++ together with a few other requirements. graph-tool seems to fulfill all this requirements. However, I don't find any information whether the library is usable from C++ code as well. My project consists out of several modules