https://github.com/kit-parco/networkit
Raw File
Tip revision: f5585caf898df1a7c49826420c2146ceeb909268 authored by petholza on 19 January 2024, 11:49:27 UTC
cpp: improves RmatGenerator and tests
Tip revision: f5585ca
base.pxd
from libcpp cimport bool as bool_t

cdef extern from "<networkit/base/Algorithm.hpp>" namespace "NetworKit":
	cdef cppclass _Algorithm "NetworKit::Algorithm":
		_Algorithm()
		void run() nogil except +
		bool_t hasFinished() except +

cdef class _CythonParentClass:
	cdef _Algorithm *_this

cdef class Algorithm(_CythonParentClass):
	pass
back to top