Package solver.constraints.nary.automata

Examples of solver.constraints.nary.automata.PropRegular$RemProc


     *
     * @param VARS      sequence of variables
     * @param AUTOMATON a deterministic finite automaton defining the regular language
     */
    public static Constraint regular(IntVar[] VARS, IAutomaton AUTOMATON) {
        return new Constraint("Regular", new PropRegular(VARS, AUTOMATON));
    }
View Full Code Here

TOP

Related Classes of solver.constraints.nary.automata.PropRegular$RemProc

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.