memgraph/tests/macro_benchmark/groups/bfs_parallel/bfs.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

16 lines
565 B
Python

import random
import common
# Here we set seed to 1, instead of 0, because seed in setup is 0 and we want to
# be sure here that we will generate different numbers.
random.seed(1)
for i in range(common.BFS_ITERS):
a = int(random.random() * common.VERTEX_COUNT)
b = int(random.random() * common.VERTEX_COUNT)
print("MATCH (from: Node {id: %d}) WITH from "
"MATCH (to: Node {id: %d}) WITH to "
"MATCH path = (from)-[*bfs..%d (e, n | true)]->(to) WITH path "
"LIMIT 10 RETURN 0;"
% (a, b, common.PATH_LENGTH))