Package statechum.analysis.learning.TestFSMAlgo

Examples of statechum.analysis.learning.TestFSMAlgo.DifferentFSMException


public class TestTransform322 {
  private final String relabelFSM = "A-a->B-a->C-b->B-c->B";
  /** Converts the existing checkM into its equivalent in version 322. */
  public static DifferentFSMException checkM(FSMStructure A, String Ainit, FSMStructure B, String Binit)
  {
    DifferentFSMException result = null;
    try {
      TestFSMAlgo.checkM(A, B, Ainit, Binit);
    } catch (DifferentFSMException e) {
      result = e;
    }
View Full Code Here


  }
 
  /** Converts the existing checkM into its equivalent in version 322. */
  public static DifferentFSMException checkM(FSMStructure A, FSMStructure B)
  {
    DifferentFSMException result = null;
    try {
      TestFSMAlgo.checkM(A, B, A.init, B.init);
    } catch (DifferentFSMException e) {
      result = e;
    }
View Full Code Here

TOP

Related Classes of statechum.analysis.learning.TestFSMAlgo.DifferentFSMException

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.