Package wyautl.rw

Examples of wyautl.rw.IterativeRewriter


    //
    IterativeRewriter.Strategy<InferenceRule> inferenceStrategy = new UnfairRuleStateRewriteStrategy<InferenceRule>(
        automaton, Types.inferences);
    IterativeRewriter.Strategy<ReductionRule> reductionStrategy = new UnfairRuleStateRewriteStrategy<ReductionRule>(
        automaton, Types.reductions);
    IterativeRewriter rw = new IterativeRewriter(automaton,
        inferenceStrategy, reductionStrategy, Types.SCHEMA);
    rw.apply();
    //
//    try {
//      new PrettyAutomataWriter(System.err, SCHEMA, "And",
//          "Or").write(automaton);
//      System.out.println();
View Full Code Here

TOP

Related Classes of wyautl.rw.IterativeRewriter

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.