- 21 Aug, 2020 1 commit
-
-
David Seifert authored
* `AX_LIB_EXPAT` has a big practical issue: It tries to detect expat by injecting various paths, among which is /usr/lib. This is extremely problematic, as /usr/lib usually contains 32-bit libraries on 64-bit systems and thereby kills linkers such as LLD that reject 32-bit binaries when linking 64-bit binaries. `pkg-config` does not inject /usr/lib, and can also be overridden at configure time. Closes: https://bugs.gentoo.org/737974
-
- 19 Aug, 2020 2 commits
-
-
Tiago Peixoto authored
Increase Boost Python function arity only when necessary See merge request count0/graph-tool!36
-
Alex Henrie authored
-
- 18 Aug, 2020 3 commits
-
-
Tiago Peixoto authored
Fix dot graph reader Closes #450 See merge request count0/graph-tool!35
-
Tiago Peixoto authored
Adjust use of libgvc to fix two graphviz_draw issues Closes #597 See merge request count0/graph-tool!34
-
Jeff Trull authored
The correct type for the dynamic property map key is actually graph_property_tag, not multigraph_t*. It looks like graph property maps only store a single value...
-
- 17 Aug, 2020 1 commit
-
-
Jeff Trull authored
One issue was reported to the mailing list on 2020-08-17 by Rolf Sander; the testcase is: import graph_tool.all as gt g = gt.Graph() v0 = g.add_vertex() v1 = g.add_vertex() e01 = g.add_edge(v0,v1) e11 = g.add_edge(v1,v1) # loop gt.graphviz_draw(g) The other is issue #597 "Graphviz_draw core dumping when using HTML labels" Basically these changes add extra type information for interacting with libgvc.
-
- 12 Aug, 2020 1 commit
-
-
Tiago Peixoto authored
-
- 11 Aug, 2020 2 commits
-
-
Tiago Peixoto authored
-
Tiago Peixoto authored
-
- 06 Aug, 2020 1 commit
-
-
Tiago Peixoto authored
-
- 05 Aug, 2020 1 commit
-
-
Tiago Peixoto authored
-
- 04 Aug, 2020 1 commit
-
-
Tiago Peixoto authored
-
- 02 Aug, 2020 1 commit
-
-
Tiago Peixoto authored
Remove uncessary exception throwing and property map checking.
-
- 31 Jul, 2020 1 commit
-
-
Tiago Peixoto authored
UTF8 is not strictly valid for GML, but it doesn't hurt.
-
- 29 Jul, 2020 7 commits
-
-
Tiago Peixoto authored
-
Tiago Peixoto authored
-
Tiago Peixoto authored
-
Tiago Peixoto authored
-
Tiago Peixoto authored
With this, edge properties with convertible types are always copied, regardless if the edge set is the same between target and source graphs. In case the edge set is not the same, the properties are copied only for the edges in the intersection.
-
Tiago Peixoto authored
-
Tiago Peixoto authored
-
- 19 Jul, 2020 3 commits
-
-
Tiago Peixoto authored
-
Tiago Peixoto authored
-
Tiago Peixoto authored
-
- 13 Jul, 2020 1 commit
-
-
Tiago Peixoto authored
-
- 11 Jul, 2020 6 commits
-
-
Tiago Peixoto authored
This fixes issue #668
-
Tiago Peixoto authored
-
Tiago Peixoto authored
-
Tiago Peixoto authored
-
Tiago Peixoto authored
Use lambdas and pack expansion to reduce template instantiations in action_dispatch This change produces significant reductions in compiler memory use (4.15GB to 2.81GB in my `graph_assortativity` testcase) and compiler runtime (180m to 168m overall, 206s to 188s in the testcase) by: 1. Performing type iteration with parameter pack expansion where possible 2. Testing the stored `boost::any` types sequentially instead of all at once (M+N instead of M*N operations) I see no significant change in runtime with this approach, though it should in theory be an improvement. See merge request !33
-
Jeff Trull authored
-
- 10 Jul, 2020 4 commits
-
-
Tiago Peixoto authored
Improve build times through header removal and relocation See merge request !31
-
Jeff Trull authored
- Eliminate unused headers - reduce dependencies among headers (slightly) The include-what-you-use tool (IWYU) was used to analyze header dependencies and recommend fixes; some additional manual work was then performed. Add missing include
-
Tiago Peixoto authored
Ensure supplied position map for planar_layout is owned by view See merge request !32
-
Jeff Trull authored
-
- 09 Jul, 2020 4 commits
-
-
Tiago Peixoto authored
-
Tiago Peixoto authored
-
Tiago Peixoto authored
-
Tiago Peixoto authored
-