Package wyautl.util

Examples of wyautl.util.BinaryMatrix


   *            --- Returns a mapping of states in the original automaton to
   *            their representative states in the minimised automaton. This
   *            array must be at least of size <code>nStates</code>.
   */
  private void minimise(int[] binding) {
    BinaryMatrix equivs = new BinaryMatrix(nStates, nStates, true);
    Automata.determineEquivalenceClasses(this, equivs);
    Automata.determineRepresentativeStates(this, equivs, binding);

    // First, remap states so all references are to the unique
    // representatives.
View Full Code Here

TOP

Related Classes of wyautl.util.BinaryMatrix

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.