Package solver.search.loop.monitors

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

Related Classes of solver.search.loop.monitors.IMonitorInitPropagation

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.