Exemplo n.º 1
0
    def __init__(self):
        Benchmark.__init__(self, 'All Pairs Comparison')

        self.NUM_NODES = 200
        self.NUM_SOURCES = 20
        self.P = 0.05
Exemplo n.º 2
0
    def __init__(self):
        Benchmark.__init__(self, 'Dijkstra')

        self.NUM_NODES = 200
        self.NUM_SOURCES = 20
        self.P = 0.05
Exemplo n.º 3
0
    def __init__(self):
        Benchmark.__init__(self, 'Floyd-Warshall')

        self.NUM_NODES = 200
        self.NUM_SOURCES = 20
        self.P = 0.05
Exemplo n.º 4
0
    def __init__(self):
        Benchmark.__init__(self, 'Unweighted SSSP')

        self.NUM_NODES = 200
        self.NUM_SOURCES = 20
        self.P = 0.05
Exemplo n.º 5
0
    def __init__(self):
        Benchmark.__init__(self, 'Loading Edgelist Data')

        self.NUM_NODES = 1000
Exemplo n.º 6
0
    def __init__(self):
        Benchmark.__init__(self, 'Random Graph Creation')

        self.NUM_NODES = 100000
        self.NUM_EDGES = 100000
Exemplo n.º 7
0
	def __init__(self):
		Benchmark.__init__(self,'Dijkstra')

		self.NUM_NODES = 200
		self.NUM_SOURCES = 20
		self.P = 0.05
Exemplo n.º 8
0
	def __init__(self):
		Benchmark.__init__(self,'Unweighted SSSP')
		
		self.NUM_NODES = 200
		self.NUM_SOURCES = 20
		self.P = 0.05
Exemplo n.º 9
0
	def __init__(self):
		Benchmark.__init__(self,'Floyd-Warshall')

		self.NUM_NODES = 200
		self.NUM_SOURCES = 20
		self.P = 0.05
Exemplo n.º 10
0
	def __init__(self):
		Benchmark.__init__(self,'Minimum Spanning Tree')
		self.NUM_NODES = 2000
		self.P = 0.05
		self.weights = []
Exemplo n.º 11
0
	def __init__(self):
		Benchmark.__init__(self,'All Pairs Comparison')
		
		self.NUM_NODES = 200
		self.NUM_SOURCES = 20
		self.P = 0.05
Exemplo n.º 12
0
	def __init__(self):
		Benchmark.__init__(self,'Loading Edgelist Data')
		
		self.NUM_NODES = 1000
Exemplo n.º 13
0
	def __init__(self):
		Benchmark.__init__(self,'Random Graph Creation')
		
		self.NUM_NODES = 100000
		self.NUM_EDGES = 100000