Package validation.variables

Examples of validation.variables.IntegerVariable


  ///////////////////////////
 
 
  // add an integer variable with name n
  public IntegerVariable addIntVar(String n) {
    IntegerVariable v = intVar.addVar(n);
    csp.addVar(v.name());
    return v;
  }
View Full Code Here

TOP

Related Classes of validation.variables.IntegerVariable

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.