Searched refs:InvalidRepresentationException (Results 1 - 4 of 4) sorted by relevance

/external/apache-commons-math/src/main/java/org/apache/commons/math/genetics/
H A DInvalidRepresentationException.java25 public class InvalidRepresentationException extends Exception { class in inherits:Exception
33 public InvalidRepresentationException() { method in class:InvalidRepresentationException
38 * Construct an InvalidRepresentationException
41 public InvalidRepresentationException(String arg0) { method in class:InvalidRepresentationException
46 * Construct an InvalidRepresentationException
49 public InvalidRepresentationException(Throwable arg0) { method in class:InvalidRepresentationException
54 * Construct an InvalidRepresentationException
59 public InvalidRepresentationException(String arg0, Throwable arg1) { method in class:InvalidRepresentationException
H A DAbstractListChromosome.java43 } catch (InvalidRepresentationException e) {
61 * @throws InvalidRepresentationException iff the <code>representation</code> can not represent
64 protected abstract void checkValidity(List<T> chromosomeRepresentation) throws InvalidRepresentationException;
H A DBinaryChromosome.java51 protected void checkValidity(List<Integer> chromosomeRepresentation) throws InvalidRepresentationException {
54 throw new InvalidRepresentationException("Elements can be only 0 or 1.");
H A DRandomKey.java175 protected void checkValidity(java.util.List<Double> chromosomeRepresentation) throws InvalidRepresentationException {
178 throw new InvalidRepresentationException("Values of representation must be in [0,1] interval");

Completed in 3741 milliseconds