Package org.optaplanner.core.impl.phase.custom

Examples of org.optaplanner.core.impl.phase.custom.CustomPhaseCommand


                    "Configure at least 1 <customPhaseCommandClass> in the <customPhase> configuration.");
        }
        List<CustomPhaseCommand> customPhaseCommandList
                = new ArrayList<CustomPhaseCommand>(customPhaseCommandClassList.size());
        for (Class<? extends CustomPhaseCommand> customPhaseCommandClass : customPhaseCommandClassList) {
            CustomPhaseCommand customPhaseCommand = ConfigUtils.newInstance(this,
                    "customPhaseCommandClass", customPhaseCommandClass);
            customPhaseCommandList.add(customPhaseCommand);
        }
        customPhase.setCustomPhaseCommandList(customPhaseCommandList);
        customPhase.setForceUpdateBestSolution(forceUpdateBestSolution == null ? false : forceUpdateBestSolution);
View Full Code Here

TOP

Related Classes of org.optaplanner.core.impl.phase.custom.CustomPhaseCommand

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.