From 40d8f3d8745cc9479bb490794f72519321480108 Mon Sep 17 00:00:00 2001 From: Stefan Derkits Date: Thu, 13 Jun 2013 16:10:18 +0200 Subject: [PATCH] lower timestamp advance in JobGenerator --- src/at/ac/tuwien/lsdc/JobGenerator.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/at/ac/tuwien/lsdc/JobGenerator.java b/src/at/ac/tuwien/lsdc/JobGenerator.java index 091ecc3..02ee329 100644 --- a/src/at/ac/tuwien/lsdc/JobGenerator.java +++ b/src/at/ac/tuwien/lsdc/JobGenerator.java @@ -47,7 +47,7 @@ public class JobGenerator { writeCSVHeader(); int timestamp = 1; for (int i = 0; i < count; i++) { - timestamp = timestamp + randomInt(0, 4); + timestamp = timestamp + randomInt(0, 2); switch (scenario) { case A: generateWBA(timestamp); -- 2.43.0