org.optaplanner.constraint.streams.bavet.tri.AbstractGroupTriNode Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of optaplanner-constraint-streams-bavet Show documentation
Show all versions of optaplanner-constraint-streams-bavet Show documentation
OptaPlanner solves planning problems.
This lightweight, embeddable planning engine implements powerful and scalable algorithms
to optimize business resource scheduling and planning.
This module contains implementation of Constraint streams (Bavet).
package org.optaplanner.constraint.streams.bavet.tri;
import java.util.function.Function;
import org.optaplanner.constraint.streams.bavet.common.AbstractGroupNode;
import org.optaplanner.constraint.streams.bavet.common.Tuple;
import org.optaplanner.constraint.streams.bavet.common.TupleLifecycle;
import org.optaplanner.core.api.function.QuadFunction;
import org.optaplanner.core.api.score.stream.tri.TriConstraintCollector;
abstract class AbstractGroupTriNode
extends
AbstractGroupNode, OutTuple_, MutableOutTuple_, GroupKey_, ResultContainer_, Result_> {
private final QuadFunction accumulator;
protected AbstractGroupTriNode(int groupStoreIndex,
Function, GroupKey_> groupKeyFunction,
TriConstraintCollector collector,
TupleLifecycle nextNodesTupleLifecycle) {
super(groupStoreIndex, groupKeyFunction,
collector == null ? null : collector.supplier(),
collector == null ? null : collector.finisher(),
nextNodesTupleLifecycle);
accumulator = collector == null ? null : collector.accumulator();
}
@Override
protected final Runnable accumulate(ResultContainer_ resultContainer, TriTuple tuple) {
return accumulator.apply(resultContainer, tuple.getFactA(), tuple.getFactB(), tuple.getFactC());
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy