memgraph/tests/macro_benchmark/groups/create_parallel/edge.run.py
Mislav Bradac 6d78873ace Initialize seed in macro benchmark generators
Reviewers: dgleich, buda, florijan

Reviewed By: dgleich

Subscribers: pullbot

Differential Revision: https://phabricator.memgraph.io/D984
2017-11-15 16:36:43 +01:00

10 lines
306 B
Python

import random
import common
random.seed(0)
for i in range(common.VERTEX_COUNT * common.QUERIES_PER_VERTEX):
a = int(random.random() * common.VERTEX_COUNT)
b = int(random.random() * common.VERTEX_COUNT)
print("MATCH (a: Node {id: %d}), (b: Node {id: %d}) CREATE (a)-[:Friend]->(b);" % (a, b))