Package org.optaplanner.core.impl.heuristic.selector.move.generic.chained

Examples of org.optaplanner.core.impl.heuristic.selector.move.generic.chained.SubChainChangeMoveSelector


        if (!(valueSelector instanceof EntityIndependentValueSelector)) {
            throw new IllegalArgumentException("The moveSelectorConfig (" + this
                    + ") needs to be based on a EntityIndependentValueSelector (" + valueSelector + ")."
                    + " Check your @" + ValueRangeProvider.class.getSimpleName() + " annotations.");
        }
        return new SubChainChangeMoveSelector(subChainSelector, (EntityIndependentValueSelector) valueSelector,
                randomSelection, selectReversingMoveToo == null ? true : selectReversingMoveToo);
    }
View Full Code Here

TOP

Related Classes of org.optaplanner.core.impl.heuristic.selector.move.generic.chained.SubChainChangeMoveSelector

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.