/* * Java Genetic Algorithm Library (@[email protected]). * Copyright (c) @[email protected] Franz Wilhelmstötter * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. * * Author: * Franz Wilhelmstötter ([email protected]) */ package io.jenetics.ext; import static java.util.Objects.requireNonNull; import static io.jenetics.internal.util.Hashes.hash; import static io.jenetics.util.RandomRegistry.random; import java.io.Serializable; import java.math.BigInteger; import java.util.Objects; import java.util.Random; import io.jenetics.NumericGene; import io.jenetics.internal.util.Requires; import io.jenetics.util.ISeq; import io.jenetics.util.MSeq; import io.jenetics.util.Mean; import io.jenetics.util.RandomRegistry; import io.jenetics.ext.internal.random; /** * Numeric chromosome implementation which holds an arbitrary sized integer * number. * * <p>This is a <a href="https://docs.oracle.com/javase/8/docs/api/java/lang/doc-files/ValueBased.html"> * value-based</a> class; use of identity-sensitive operations (including * reference equality ({@code ==}), identity hash code, or synchronization) on * instances of {@code IntegerGene} may have unpredictable results and should * be avoided. * * @author <a href="mailto:[email protected]">Franz Wilhelmstötter</a> * @since 3.5 * @version 6.0 */ public final class BigIntegerGene implements NumericGene<BigInteger, BigIntegerGene>, Mean<BigIntegerGene>, Serializable { private static final long serialVersionUID = 1L; private static final BigInteger TWO = BigInteger.valueOf(2); private final BigInteger _value; private final BigInteger _min; private final BigInteger _max; private BigIntegerGene( final BigInteger value, final BigInteger min, final BigInteger max ) { _value = requireNonNull(value); _min = requireNonNull(min); _max = requireNonNull(max); } @Override public BigInteger allele() { return _value; } @Override public BigInteger min() { return _min; } @Override public BigInteger max() { return _max; } @Override public BigIntegerGene mean(final BigIntegerGene that) { final BigInteger value = _value.add(that._value).divide(TWO); return of(value, _min, _max); } @Override public BigIntegerGene newInstance(final Number number) { return of(BigInteger.valueOf(number.longValue()), _min, _max); } @Override public BigIntegerGene newInstance(final BigInteger value) { return of(value, _min, _max); } @Override public BigIntegerGene newInstance() { return of(_min, _max); } @Override public int hashCode() { return hash(_value, hash(_min, hash(_max, hash(getClass())))); } @Override public boolean equals(final Object obj) { return obj == this || obj instanceof BigIntegerGene && Objects.equals(((BigIntegerGene)obj)._value, _value) && Objects.equals(((BigIntegerGene)obj)._min, _min) && Objects.equals(((BigIntegerGene)obj)._max, _max); } @Override public String toString() { return String.format("[%s]", _value); } /* ************************************************************************* * Static factory methods. **************************************************************************/ static ISeq<BigIntegerGene> seq( final BigInteger minimum, final BigInteger maximum, final int length ) { Requires.positive(length); final Random r = random(); return MSeq.<BigIntegerGene>ofLength(length) .fill(() -> new BigIntegerGene( random.nextBigInteger(minimum, maximum, r), minimum, maximum)) .toISeq(); } /** * Create a new random {@code BigIntegerGene} with the given value and the * given range. If the {@code value} isn't within the interval [min, max], * no exception is thrown. In this case the method * {@link BigIntegerGene#isValid()} returns {@code false}. * * @param value the value of the gene. * @param min the minimal valid value of this gene (inclusively). * @param max the maximal valid value of this gene (inclusively). * @return a new random {@code BigIntegerGene} * @throws NullPointerException if one of the arguments is {@code null} */ public static BigIntegerGene of( final BigInteger value, final BigInteger min, final BigInteger max ) { return new BigIntegerGene(value, min, max); } /** * Create a new random {@code BigIntegerGene}. It is guaranteed that the * value of the {@code BigIntegerGene} lies in the interval [min, max]. * * @param min the minimal valid value of this gene (inclusively). * @param max the maximal valid value of this gene (inclusively). * @return a new random {@code BigIntegerGene} * @throws NullPointerException if one of the arguments is {@code null} */ public static BigIntegerGene of(final BigInteger min, final BigInteger max) { return of( random.nextBigInteger(min, max, RandomRegistry.random()), min, max ); } }