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
support.py
import os
import sys

class MissingDependencyError (RuntimeError):
	def __init__(self, package):
		self.package = package
		super().__init__("Optional dependency {} is not installed".format(package))

back to top