All Downloads are FREE. Search and download functionalities are using the official Maven repository.

rinde.sim.util.SupplierRng Maven / Gradle / Ivy

There is a newer version: 4.4.6
Show newest version
package rinde.sim.util;

import com.google.common.reflect.TypeToken;

public interface SupplierRng {

  T get(long seed);

  public static abstract class DefaultSupplierRng implements SupplierRng {

    @Override
    public String toString() {
      return new TypeToken(getClass()) {}.getRawType().getSimpleName();
    }

  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy