MCPcopy Create free account
hub / github.com/SquirrelJME/SquirrelJME / main

Method main

utils-dev/SeedTest.java:18–28  ·  view source on GitHub ↗
(String... __args)

Source from the content-addressed store, hash-verified

16public class SeedTest
17{
18 public static void main(String... __args)
19 {
20 int seed = 0x917F_25C9;
21 for (int i = 0, n = Math.max(1, Integer.parseInt(
22 (__args != null && __args.length >= 1 ? __args[0] : "10"))); i < n;
23 i++)
24 {
25 seed = (seed >>> 1) ^ (-(seed & 1) & 0x80200003);
26 System.out.printf("0x%08x%n", seed);
27 }
28 }
29}
30

Callers

nothing calls this directly

Calls 3

maxMethod · 0.95
parseIntMethod · 0.95
printfMethod · 0.45

Tested by

no test coverage detected