Examples of IMonitorInitPropagation


Examples of solver.search.loop.monitors.IMonitorInitPropagation

  @Override
  public void configureSearch() {
    // bottom-up optimisation, then classical branching
    solver.set(ISF.lexico_LB(nbValues), ISF.minDom_LB(assignment));
    // displays the root lower bound
    solver.plugMonitor(new IMonitorInitPropagation() {
      public void beforeInitialPropagation() {
      }

      public void afterInitialPropagation() {
        System.out.println("bound after initial propagation : " + nbValues);
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.