Package kodkod.engine.config

Examples of kodkod.engine.config.Options


   * default Options object.
   * @effects this.instance' = instance && this.options' = new Options()
   * @throws NullPointerException - instance = null
   */
  public Evaluator(Instance instance) {
    this(instance, new Options());
  }
View Full Code Here


  /**
   * Constructs a new Solver with the default options.
   * @effects this.options' = new Options()
   */
  public Solver() {
    this.options = new Options();
  }
View Full Code Here

TOP

Related Classes of kodkod.engine.config.Options

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.