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

io.jenetics.ext.moea.ElementComparator Maven / Gradle / Ivy

/*
 * Java Genetic Algorithm Library (jenetics-8.1.0).
 * Copyright (c) 2007-2024 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.moea;

import java.util.Comparator;
import java.util.function.Function;

/**
 * Defines the order of two elements of a given vector type {@code V}.
 * The following example creates an {@code ElementComparator} function for a
 * {@code double[] array}:
 * {@snippet lang="java":
 * final ElementComparator comp =
 *     (u, v, i) -> Double.compare(u[i], v[i]);
 * }
 *
 * @param  the vector type
 *
 * @author Franz Wilhelmstötter
 * @version 4.1
 * @since 4.1
 */
@FunctionalInterface
public interface ElementComparator {

	/**
	 * Compares the components of {@code a} and {@code b} at the given
	 * {@code index}. E.g.
	 * {@snippet lang="java":
	 * final ElementComparator comp =
	 *     (u, v, i) -> Double.compare(u[i], v[i]);
	 * }
	 *
	 * @param u the first vector
	 * @param v the second vector
	 * @param index the vector index
	 * @return a negative integer, zero, or a positive integer as the
	 *         first argument is less than, equal to, or greater than the
	 *         second.
	 * @throws NullPointerException if either {@code a} or {@code b} is
	 *        {@code null}
	 * @throws IndexOutOfBoundsException if the index is out of range
	 *         {@code (index < 0 || index >= length(a)  || index >= length(b))}
	 */
	int compare(final V u, final V v, final int index);

	/**
	 * Returns a comparator that imposes the reverse ordering of this
	 * comparator.
	 *
	 * @return a comparator that imposes the reverse ordering of this
	 *         comparator.
	 */
	default ElementComparator reversed() {
		return (u, v, i) -> compare(v, u, i);
	}

	/**
	 * Return an element comparator for the mapped type {@code T}.
	 *
	 * @param mapper the mapper function
	 * @param  the new comparator type
	 * @return an element comparator for the mapped type {@code T}
	 */
	default  ElementComparator
	map(final Function mapper) {
		return (u, v, i) -> compare(mapper.apply(u), mapper.apply(v), i);
	}

	/**
	 * Return a comparator which takes the component at the give {@code index}
	 * for comparison two objects of type {@code T}.
	 *
	 * @param index the component index
	 * @return the component comparator for the given {@code index}
	 */
	default Comparator ofIndex(final int index) {
		return (a, b) -> compare(a, b, index);
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy