it.unimi.dsi.Util.randomSeed()方法的使用及代码示例

x33g5p2x  于2022-02-01 转载在 其他  
字(4.5k)|赞(0)|评价(0)|浏览(210)

本文整理了Java中it.unimi.dsi.Util.randomSeed()方法的一些代码示例,展示了Util.randomSeed()的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Util.randomSeed()方法的具体详情如下:
包路径:it.unimi.dsi.Util
类名称:Util
方法名:randomSeed

Util.randomSeed介绍

[英]Returns a random seed generated by taking the output of a XoRoShiRo128PlusRandomGenerator(seeded at startup with System#nanoTime()) and xoring it with System#nanoTime().
[中]返回通过获取XoRoShiRo128PlusRandomGenerator(在启动时使用System#nanoTime()进行种子设定)的输出并使用System#nanoTime()进行xoring生成的随机种子。

代码示例

代码示例来源:origin: it.unimi.dsi/dsiutils

  1. /** Returns a random seed generated by {@link #randomSeed()} under the form of an array of eight bytes.
  2. *
  3. * @return a reasonably good random seed.
  4. */
  5. public static byte[] randomSeedBytes() {
  6. final long seed = Util.randomSeed();
  7. final byte[] s = new byte[8];
  8. for(int i = Long.SIZE / Byte.SIZE; i-- != 0;) s[i] = (byte)(seed >>> i);
  9. return s;
  10. }

代码示例来源:origin: it.unimi.dsi/webgraph

  1. /** Creates an Erdős–Rényi graph with given parameters and random seed.
  2. *
  3. * @param n the number of nodes.
  4. * @param m the expected number of arcs.
  5. * @param loops whether loops are allowed or not.
  6. */
  7. public ErdosRenyiGraph(final int n, final long m, final boolean loops) {
  8. this(n, m, Util.randomSeed(), loops);
  9. }

代码示例来源:origin: it.unimi.dsi/dsiutils

  1. /**
  2. * Creates a new array of counters.
  3. *
  4. * @param arraySize the number of counters.
  5. * @param n the expected number of elements.
  6. * @param log2m the logarithm of the number of registers per counter (at most 30).
  7. */
  8. public HyperLogLogCounterArray(final long arraySize, final long n, final int log2m) {
  9. this(arraySize, n, log2m, Util.randomSeed());
  10. }

代码示例来源:origin: it.unimi.dsi/dsiutils

  1. /** Creates a new generator seeded using {@link Util#randomSeed()}. */
  2. public XorShift1024StarPhiRandom() {
  3. this(Util.randomSeed());
  4. }

代码示例来源:origin: it.unimi.dsi/dsiutils

  1. /** Creates a new generator seeded using {@link Util#randomSeed()}. */
  2. public XorShift128PlusRandomGenerator() {
  3. this(Util.randomSeed());
  4. }

代码示例来源:origin: it.unimi.dsi/dsiutils

  1. /** Creates a new generator seeded using {@link Util#randomSeed()}. */
  2. public XoShiRo256PlusRandom() {
  3. this(Util.randomSeed());
  4. }

代码示例来源:origin: it.unimi.dsi/dsiutils

  1. /** Creates a new generator seeded using {@link Util#randomSeed()}. */
  2. public XorShift1024StarRandomGenerator() {
  3. this(Util.randomSeed());
  4. }

代码示例来源:origin: it.unimi.dsi/dsiutils

  1. /** Creates a new generator seeded using {@link Util#randomSeed()}. */
  2. public SplitMix64RandomGenerator() {
  3. this(Util.randomSeed());
  4. }

代码示例来源:origin: it.unimi.dsi/webgraph

  1. /** Creates an Erdős–Rényi graph with given parameters.
  2. *
  3. * @param n the number of nodes.
  4. * @param p the probability of generating an arc.
  5. * @param loops whether loops are allowed or not.
  6. */
  7. public ErdosRenyiGraph(final int n, final double p, final boolean loops) {
  8. this(n, p, Util.randomSeed(), loops);
  9. }

代码示例来源:origin: it.unimi.dsi/dsiutils

  1. /** Creates a new generator seeded using {@link Util#randomSeed()}. */
  2. public XorShift1024StarRandom() {
  3. this(Util.randomSeed());
  4. }

代码示例来源:origin: it.unimi.dsi/dsiutils

  1. /** Creates a new generator seeded using {@link Util#randomSeed()}. */
  2. public XoRoShiRo128StarStarRandomGenerator() {
  3. this(Util.randomSeed());
  4. }

代码示例来源:origin: it.unimi.dsi/dsiutils

  1. /** Creates a new generator seeded using {@link Util#randomSeed()}. */
  2. public XorShift64StarRandom() {
  3. this(Util.randomSeed());
  4. }

代码示例来源:origin: it.unimi.dsi/dsiutils

  1. /** Creates a new generator seeded using {@link Util#randomSeed()}. */
  2. public XoRoShiRo128StarStarRandom() {
  3. this(Util.randomSeed());
  4. }

代码示例来源:origin: it.unimi.dsi/dsiutils

  1. /** Creates a new generator seeded using {@link Util#randomSeed()}. */
  2. public XoShiRo256StarStarRandomGenerator() {
  3. this(Util.randomSeed());
  4. }

代码示例来源:origin: it.unimi.dsi/dsiutils

  1. /** Creates a new generator seeded using {@link Util#randomSeed()}. */
  2. public XoShiRo256StarStarRandom() {
  3. this(Util.randomSeed());
  4. }

代码示例来源:origin: it.unimi.dsi/dsiutils

  1. /** Creates a new generator seeded using {@link Util#randomSeed()}. */
  2. public XoRoShiRo128PlusRandomGenerator() {
  3. this(Util.randomSeed());
  4. }

代码示例来源:origin: it.unimi.dsi/dsiutils

  1. /** Creates a new generator seeded using {@link Util#randomSeed()}. */
  2. public XorShift64StarRandomGenerator() {
  3. this(Util.randomSeed());
  4. }

代码示例来源:origin: it.unimi.dsi/dsiutils

  1. /** Creates a new generator seeded using {@link Util#randomSeed()}. */
  2. public XoRoShiRo128PlusRandom() {
  3. this(Util.randomSeed());
  4. }

代码示例来源:origin: it.unimi.dsi/dsiutils

  1. /** Creates a new generator seeded using {@link Util#randomSeed()}. */
  2. public SplitMix64Random() {
  3. this(Util.randomSeed());
  4. }

代码示例来源:origin: it.unimi.dsi/webgraph

  1. /** Generates an Erdős–Rényi graph.
  2. *
  3. * <p>This method exists only for backward compatibility.
  4. *
  5. * @return the generated graph.
  6. * @deprecated An instance of this class is already an {@link ImmutableSequentialGraph}.
  7. */
  8. @Deprecated
  9. public ImmutableGraph generate() {
  10. return generate(Util.randomSeed());
  11. }

相关文章