Timeline
10/05/09:
- 22:46 Blog: Version 2.0 of graph-tool released! edited by
- 22:41 WikiStart edited by
- (diff)
- 22:39 Blog: Version 2.0 of graph-tool released! edited by
- 22:38 WikiStart edited by
- (diff)
- 21:57 WikiStart edited by
- (diff)
- 21:55 WikiStart edited by
- (diff)
- 17:13 WikiStart edited by
- (diff)
- 17:11 RelatedSoftware edited by
- (diff)
- 17:10 RelatedSoftware edited by
- (diff)
- 17:10 RelatedSoftware created by
- 16:14 Blog: Version 2.0 of graph-tool released! edited by
- 16:06 Ticket #50 (Adding new algorithms in the BGL 1.35) closed by
- fixed: Most of these were added, and are now available in the 2.0 version.
- 16:03 Ticket #18 (Add support for graph spectral properties) closed by
- fixed: This was fixed in [455e3f5].
- 16:00 Blog: Version 2.0 of graph-tool released! edited by
- 15:59 Blog: Version 2.0 of graph-tool released! edited by
- 15:58 WikiStart edited by
- (diff)
- 15:57 WikiStart edited by
- (diff)
- 15:53 Blog: Version 2.0 of graph-tool released! created by
- 15:47 Changeset [49e60e] by
- masterpython3Bump version to 2.0.1dev
- 15:47 Changeset [0cdce1] by
- Bump version to 2.0.1dev
- 12:05 GraphToolDownload edited by
- (diff)
- 12:05 GraphToolDownload edited by
- (diff)
- 12:03 GraphToolDownload edited by
- (diff)
- 08:11 Changeset [f30e6d] by
- masterpython3Bump version to 2.0.0
- 08:11 Changeset [f309f0] by
- Modify README and Changelog
- 08:11 Changeset [f0524b] by
- masterpython3Fix missing files in Makefile.am
- 08:11 Changeset [bced84] by
- Fix missing files in Makefile.am
- 08:11 Changeset [bb47db] by
- Synchronize graphviz support with boost 1.40
- 08:11 Changeset [92402e] by
- masterpython3Synchronize graphviz support with boost 1.40
- 08:11 Changeset [1cd98d] by
- Bump version to 2.0.0
- 08:11 Changeset [079301] by
- masterpython3Modify README and Changelog
- 08:11 Changeset [d89bc9] by
- Several documentation fixes and extensions This completes all the documentation up to this point.
- 08:11 Changeset [2db745] by
- masterpython3Several documentation fixes and extensions This completes all the documentation up to this point.
10/04/09:
- 23:00 Milestone 2.0 completed
- * fully featured graph_tool python module * Integration with scipy/numpy …
10/03/09:
- 22:41 Changeset [bb499c] by
- masterpython3Rename dominator_tree()
- 22:41 Changeset [25f10c] by
- Rename dominator_tree()
09/18/09:
- 15:36 Changeset [8aba5e] by
- masterpython3Fix 'penwidth' parameter in graph_draw()
- 15:36 Changeset [556a84] by
- Return None in PropertyMap.a if no array is available
- 15:36 Changeset [402021] by
- Fix 'penwidth' parameter in graph_draw()
- 15:36 Changeset [1d47731] by
- masterpython3Return None in PropertyMap.a if no array is available
- 15:36 Changeset [f63585] by
- Modify absolute_centrality implementation This dumps the random-path approach, and implements a deterministic, priority queue algorithm.
- 15:36 Changeset [f12d54] by
- masterpython3Modify absolute_centrality implementation This dumps the random-path approach, and implements a deterministic, priority queue algorithm.
- 15:36 Changeset [c6c01d] by
- masterpython3Edge and vertex descriptors now carry a weakref to their Graphs This fixes an obvious problem, where the graph gets deleted, and the descriptors are still lying around. Usage of orphaned descriptors will now just raise a ValueError. The __repr__ function of Edge, Vertex, and PropertyMap now give something more informative about each object.
- 15:36 Changeset [405276] by
- Edge and vertex descriptors now carry a weakref to their Graphs This fixes an obvious problem, where the graph gets deleted, and the descriptors are still lying around. Usage of orphaned descriptors will now just raise a ValueError. The __repr__ function of Edge, Vertex, and PropertyMap now give something more informative about each object.
09/12/09:
- 17:23 Changeset [1c1cd9] by
- Speed up motifs() and motif_significance() In both functions we can save some time by hashing the subgraphs found, according to their degree distribution signature (instead of number of edges). This avoids a large number of useless exactness or isomorphism comparisons. This also removes the "seed" parameter, which is redundant to the numpy.random.seed() function.
- 17:23 Changeset [06b291] by
- masterpython3Speed up motifs() and motif_significance() In both functions we can save some time by hashing the subgraphs found, according to their degree distribution signature (instead of number of edges). This avoids a large number of useless exactness or isomorphism comparisons. This also removes the "seed" parameter, which is redundant to the numpy.random.seed() function.
09/07/09:
- 07:32 Changeset [fd64d2] by
- Assorted docstring inclusions/modifications Mostly in the flow and spectral modules.
- 07:32 Changeset [4d69fc] by
- masterpython3Assorted docstring inclusions/modifications Mostly in the flow and spectral modules.
09/06/09:
- 18:19 Changeset [effd22] by
- masterpython3Fix Makefile.am in generation module The file graph_predecessor.hh was missing.
- 18:19 Changeset [20cb56] by
- Fix Makefile.am in generation module The file graph_predecessor.hh was missing.
- 17:18 Changeset [a32d92] by
- Fix bug in community_structure() documentation The value "random" should be "uncorrelated" instead.
- 17:18 Changeset [8b1d33] by
- masterpython3Fix bug in community_structure() documentation The value "random" should be "uncorrelated" instead.
- 17:17 Changeset [2d5dca] by
- masterpython3Trivial fix for several compilation warnings
- 17:17 Changeset [2ab972] by
- Trivial fix for several compilation warnings
- 17:16 Changeset [eb864e] by
- Fix openmp bug in community_structure() Call to random() must be protected by "omp critical".
- 17:16 Changeset [c1c2aa] by
- masterpython3Fix openmp bug in community_structure() Call to random() must be protected by "omp critical".
- 17:15 Changeset [251fc5] by
- Implement graph_union() This returns the union of two graphs, and optionally specified property maps.
- 17:15 Changeset [0ac9b1] by
- masterpython3Implement graph_union() This returns the union of two graphs, and optionally specified property maps.
- 17:13 Changeset [9d0fe5] by
- Enable value type selection in Graph.copy_property()
- 17:13 Changeset [389812] by
- masterpython3Enable value type selection in Graph.copy_property()
- 17:12 Changeset [a64da5] by
- masterpython3Enable -Wall in compilation
- 17:12 Changeset [1b9433] by
- Enable -Wall in compilation
09/05/09:
- 11:49 Changeset [a89027] by
- Allow for simple scaling in vertex and edge sizes in graph_draw()
- 11:49 Changeset [494a20] by
- masterpython3Allow for simple scaling in vertex and edge sizes in graph_draw()
- 11:48 Changeset [f9a039] by
- Include PropertyMap.a property This provides convienent access to the underlying array values, such as: p.a = random(len(p.a)) instead of: p.get_array()[:] = random(len(p.get_array())) (the latter is still supported)
- 11:48 Changeset [5540d1] by
- masterpython3Include PropertyMap.a property This provides convienent access to the underlying array values, such as: p.a = random(len(p.a)) instead of: p.get_array()[:] = random(len(p.get_array())) (the latter is still supported)
- 11:46 Changeset [769643] by
- Change default number of shuffles to 100 in motif_significance()
- 11:46 Changeset [41a677] by
- masterpython3Change default number of shuffles to 100 in motif_significance()
- 11:45 Changeset [88fe82] by
- masterpython3Implement 'spectral' module This includes generations of releated matrices for spectral analysis, such as the adjacency matrix, laplacian matrix and incidence matrix.
- 11:45 Changeset [455e3f] by
- Implement 'spectral' module This includes generations of releated matrices for spectral analysis, such as the adjacency matrix, laplacian matrix and incidence matrix.
Note: See TracTimeline
for information about the timeline view.


