Package org.drools.planner.core.heuristic.selector.move.decorator

Examples of org.drools.planner.core.heuristic.selector.move.decorator.ShufflingMoveSelector


            if (resolvedCacheType.isNotCached()) {
                throw new IllegalArgumentException("The moveSelectorConfig (" + this
                        + ") with resolvedSelectionOrder (" + resolvedSelectionOrder
                        + ") has a resolvedCacheType (" + resolvedCacheType + ") that is not cached.");
            }
            moveSelector = new ShufflingMoveSelector(moveSelector, resolvedCacheType);
            alreadyCached = true;
        }
        if (resolvedCacheType.isCached() && !alreadyCached) {
            // TODO this might be pretty pointless for MoveListFactoryConfig, because MoveListFactory caches
            moveSelector = new CachingMoveSelector(moveSelector, resolvedCacheType,
View Full Code Here

TOP

Related Classes of org.drools.planner.core.heuristic.selector.move.decorator.ShufflingMoveSelector

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.