1 10 package org.jgap; 11 12 import java.io.*; 13 14 26 public interface RandomGenerator 27 extends Serializable { 28 29 final static String CVS_REVISION = "$Revision: 1.7 $"; 30 31 43 public int nextInt(); 44 45 60 public int nextInt(int a_ceiling); 61 62 74 public long nextLong(); 75 76 85 public double nextDouble(); 86 87 96 public float nextFloat(); 97 98 110 public boolean nextBoolean(); 111 } 112 | Popular Tags |