https://github.com/kit-parco/networkit

sort by:
Revision Author Date Message Commit Date
4d9b056 closing branch 09 June 2015, 15:11:12 UTC
5e01936 Fix random seed for GraphBuilderDirectSwapGTest::testSameAsGraph 08 June 2015, 09:45:02 UTC
0c41d96 Fix direct swap in GraphBuilder for self loops in directed graphs 08 June 2015, 09:40:05 UTC
04be490 merged Dev into graphbuilder 06 June 2015, 16:59:41 UTC
8874d43 Fix exception handling in new iterators Previously, Python exception were not properly cleaned up and displayed together with new exception and there was basically no way to get rid of them. Now the exception from the passed callback is no longer directly displayed but rather the message is put into a new C++ exception which is again handled by Cython (and aborts the iteration). 03 June 2015, 15:13:47 UTC
2f960f4 Introduce base class for graph readers, release GIL during reading 03 June 2015, 14:40:10 UTC
366d1f1 trying out mesoscopic response function 03 June 2015, 13:49:29 UTC
20b65ec convenience function for reading multiple graph files from a directory 03 June 2015, 13:49:13 UTC
c9431f5 centrality.CoreDecomposition and centrality.LocalClusteringCoefficient inherit from Centrality base class 02 June 2015, 14:40:38 UTC
abfa72d all static node centrality algorithms now inherit from a Cython/Python base class, which removes much redundant wrapper code 02 June 2015, 13:48:30 UTC
8ce7565 centrality.Closeness inherits from Centrality base class - saves a lot of wrapper code 02 June 2015, 13:37:12 UTC
60d162b centrality.Betweenness inherits from Centrality base class - saves a lot of wrapper code 02 June 2015, 13:34:06 UTC
fe3062e centrality.DegreeCentrality inherits from centrality.Centrality 02 June 2015, 09:52:13 UTC
0bd3e1a Increase batch size for dynamic scheduling in GraphBuilder The default batch size is 1, increasing this 100 reduces the synchronization overhead. 01 June 2015, 15:51:45 UTC
3dd6b18 Export GCE to Python 01 June 2015, 15:49:40 UTC
18cf383 Fix performance of EdgeCut by using the weight parameter 01 June 2015, 15:48:15 UTC
329900d Parallelized ChungLuGenerator 01 June 2015, 15:30:50 UTC
c331ae5 Fix GNUC definition names for version detection 01 June 2015, 15:01:38 UTC
5fce635 Add correct references for ChungLu-generator 01 June 2015, 12:55:28 UTC
f43934c added test stub for general algorithm testing 01 June 2015, 11:59:32 UTC
f92d8ae merge pull request: https://algohub.iti.kit.edu/parco/NetworKit/NetworKit/pull-request/54 29 May 2015, 09:24:41 UTC
0074a1b first implementation of degree assortativity for directed graphs; added graph for testing purposes 26 May 2015, 16:39:41 UTC
c0c617d minor bugfix for KONECT reader when reading weighted graphs 26 May 2015, 16:34:08 UTC
b07802a removed some compiler warnings 24 May 2015, 12:34:41 UTC
cde0a1f merge 22 May 2015, 22:15:20 UTC
37d7b4b merge 22 May 2015, 22:15:10 UTC
0ffb508 Python baseclass Centrality: wrappers for centrality classes should inherit from this, makes much redundant wrapping code unnecessary 22 May 2015, 18:45:39 UTC
e6a5691 cleanup of centrality classes 22 May 2015, 18:34:43 UTC
e9236be deprecated: ClusteringCoefficient.avgLocal 22 May 2015, 18:11:09 UTC
336f943 working on profiling module 22 May 2015, 18:05:12 UTC
baea3d4 Graph.*coordinate* methods marked as deprecated 22 May 2015, 15:08:30 UTC
93d28a0 removed Globals.cpp as it is now empty 22 May 2015, 14:39:11 UTC
87559d5 removed old and unused global variables 22 May 2015, 14:36:19 UTC
be66a2d marked Graph.setCoordinate, Graph.getCoordinates, Graph.initCoordinates as deprecated since coordinates should be handled outside the graph data structure, consistent with our approach to node attributes - deprecated specialized data structures Point and Coordinates, since they should be replaced with standard library containers that are automatically mapped between C++ and Python 22 May 2015, 14:24:14 UTC
5c03fe4 fixed cythonized version of PLM 21 May 2015, 16:44:41 UTC
7edbb3b started mesoscopic scale function 21 May 2015, 12:53:14 UTC
ab556ff removed PartitionCoarsening; everything is now based on the 2 variants implemented in ParallelPartitionCoarsening; also set useGraphBuilder of ParallelPartitionCoarsening to true 20 May 2015, 14:27:45 UTC
9feca67 dropped ClusterContractor 20 May 2015, 14:03:09 UTC
18c67d0 replaced usages of ClusterContractor (seq. coarsening) with ParallelPartitionCoarsening 20 May 2015, 13:21:11 UTC
f5d46b7 forgot to remove CommunityGraph from _NetworKit.pyx 20 May 2015, 12:49:14 UTC
b25dd30 coarsening cleanup: dropped CommunityGraph 20 May 2015, 12:36:29 UTC
9e1e04a removed ipython notebooks that relied on the viztools module 20 May 2015, 12:16:19 UTC
89cbf64 dropped viztools module 20 May 2015, 12:10:16 UTC
dd8de00 viztasks is now based on networkx entirely 20 May 2015, 12:02:33 UTC
2ec538c fixed bug in networkit to networkx graph conversion: degree zero nodes are now converted to the networkx graph aswell 20 May 2015, 09:54:52 UTC
2d234de experimental: extended GraphTools with 2 functions: get the inverted node mapping; restore graph with noncontinuous node ids 18 May 2015, 15:52:34 UTC
27eaade work on properties regarding directed graphs: diameter won't be called on directed graphs anymore, adapted min and max degree 15 May 2015, 21:05:25 UTC
0653bb9 set random seed for self loop conversion test to fixed value 13 May 2015, 10:16:02 UTC
4ee0f01 removed EPPInstance as it is not necessary anymore 12 May 2015, 18:59:38 UTC
cd0d340 removed unfitting comment 12 May 2015, 14:44:18 UTC
504a2a6 manual self loop counting now takes const reference as argument 12 May 2015, 14:36:11 UTC
584ccd6 removed empty test case filled test case 12 May 2015, 14:33:01 UTC
94eff3d storing number of self loops in graph class instead of recomputing every call 11 May 2015, 13:14:56 UTC
07ac04a Export all (?) sequential iterators of Graphs to Python This also adds proper exception handling such that the execution is aborted when the callback raises an exception. 07 May 2015, 16:34:23 UTC
4af4677 removed experimental GraphEventGenerator class 07 May 2015, 16:02:35 UTC
c4a1c4d removed experimental GraphEventSource and GraphEventTarget classes 07 May 2015, 15:42:13 UTC
9a57a19 dropped template-based implementations of distance measures 07 May 2015, 15:26:11 UTC
fd7b054 Release GIL in most run methods and some other methods 07 May 2015, 14:13:25 UTC
4a92046 Dissimilarity measures: release GIL 07 May 2015, 13:42:40 UTC
9f10c29 Community detection algorithms: release GIL 07 May 2015, 13:37:51 UTC
52c8df0 *Writer classes: release GIL 07 May 2015, 13:37:33 UTC
68ff98a Add workaround for Cython < 0.22 05 May 2015, 09:11:07 UTC
775a8cd Added documentation to Graph::forEdges() 04 May 2015, 15:47:23 UTC
eff90bc Export Graph::forEdges() to Python 27 April 2015, 11:23:32 UTC
e743bb0 Made the CommunityDetector Cython class more robust 27 April 2015, 10:57:08 UTC
b587f05 Use community detection class hierarchy in Cython This ports the class hierarchy that is used for the community detection algorithms to Cython and thus greatly reduces the Cython code for the community detection algorithms. 26 March 2015, 18:59:13 UTC
819bb2d Fix EdgeListPartitionReader to use a user-provided separator 26 March 2015, 11:36:19 UTC
a733949 LocalClusteringCoefficient throws on directed graphs, constructor simplified 31 March 2015, 10:51:20 UTC
329c375 refactored ClusteringCoefficient::exactLocal to LocalClusteringCoefficient as centrality measure 31 March 2015, 08:54:02 UTC
f9b8664 graphio.readGraph sets the name of the graph to the name of the file 30 March 2015, 14:59:11 UTC
18d66e4 more informative string representation for Graph 30 March 2015, 14:57:59 UTC
1538662 more informative string representation for Graph 30 March 2015, 14:48:24 UTC
4b3dad1 Fix: if index u = 0 is representative 30 March 2015, 07:13:20 UTC
278c9fb merge 27 March 2015, 12:04:01 UTC
fba467d working on profiling module 27 March 2015, 12:03:34 UTC
3960d65 setup.py checks Python version 27 March 2015, 11:59:30 UTC
5d669f8 Fix AdjustedRandMeasure for singletons in both clusterings 25 March 2015, 14:06:57 UTC
418f65a Improve performance of JaccardMeasure and NodeStructuralRandMeasure The running time is now in O(n*log(n)) while it was previously in O(n^2). 24 March 2015, 14:07:54 UTC
6313329 Added the adjusted rand dissimilarity measure 24 March 2015, 13:49:36 UTC
ff83534 Different FunctionTraits implementation that supports more types 23 March 2015, 16:48:44 UTC
04afefd Implement __setitem__ in Partition 23 March 2015, 16:49:47 UTC
a1d0fba Graph::forEdges now uses guided scheduler 23 March 2015, 16:55:36 UTC
6ee77b2 extended profiling module 20 March 2015, 14:30:10 UTC
3253408 fixed bug in properties.overview 20 March 2015, 12:24:35 UTC
16f723d fixed bug for directed graphs in properties.density 20 March 2015, 12:16:04 UTC
cdeda42 pythonized Katz centrality: centrality.KatzCentrality 18 March 2015, 10:15:25 UTC
00717be moved CoreDecomposition to its proper place in the centrality module 17 March 2015, 17:09:16 UTC
4c9cdf9 CoreDecomposition is a centrality measure; introduced ran-flag for all centrality measures 17 March 2015, 16:38:16 UTC
e13dcec working on profiling module 17 March 2015, 15:25:50 UTC
d743bdf started profiling module 10 March 2015, 16:28:58 UTC
73c60d6 Added possibility to sort the adjacency arrays of a graph 06 March 2015, 12:37:24 UTC
76e5b87 Graph::compactEdges() now also supports graphs with weights and edge ids 13 February 2015, 13:11:19 UTC
a76feea Fix METIS graph reader (tests were failing) 02 February 2015, 12:19:18 UTC
ab9c8de Export Graph::compactEdges() to Python 02 February 2015, 11:57:58 UTC
c8ec7d8 add both half edges during reading in METISGraphReader 01 February 2015, 09:30:34 UTC
8f282a8 Graph: added method for compacting the adjacency arrays 19 December 2014, 17:18:58 UTC
c6761de Add possibility to shuffle node ids 13 February 2015, 16:06:07 UTC
03b6ad1 nxadapter: implemented support for directed graphs 05 March 2015, 18:11:08 UTC
840f82b Fix reading directed edge lists with continuous=False 04 March 2015, 12:12:34 UTC
2bf4262 merged setseed -> Dev 03 March 2015, 12:40:34 UTC
back to top