Package solvers

Examples of solvers.Solver


 
  /** A term CSP with a name and a solver*/
  public TermCSP(String n,int solverType,int f) {
    name = n;
    status = new SolverStatus(n);
    s = new Solver(solverType);
    setConstraintBlock(s);
    setIntVarBlock(s,f);
  }
View Full Code Here

TOP

Related Classes of solvers.Solver

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.