Package org.optaplanner.core.impl.heuristic.selector.value

Examples of org.optaplanner.core.impl.heuristic.selector.value.FromEntityPropertyValueSelector


        if (valueRangeDescriptor.isEntityIndependent()) {
            return new FromSolutionPropertyValueSelector(
                    (EntityIndependentValueRangeDescriptor) valueRangeDescriptor, minimumCacheType, randomSelection);
        } else {
            // TODO Do not allow PHASE cache on FromEntityPropertyValueSelector, except if the moveSelector is PHASE cached too.
            return new FromEntityPropertyValueSelector(valueRangeDescriptor, randomSelection);
        }
    }
View Full Code Here

TOP

Related Classes of org.optaplanner.core.impl.heuristic.selector.value.FromEntityPropertyValueSelector

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.