Home | History | Annotate | Download | only in collect

Lines Matching defs:seed

22  * Utility class for being able to seed a {@link Random} value with a passed
23 * in seed from a benchmark parameter.
37 private final long seed;
41 this.seed = 0;
44 public SpecialRandom(long seed) {
45 super(seed);
47 this.seed = seed;
51 return hasSeed ? "(seed:" + seed : "(default seed)";