Package dk.brics.string.grammar.operations

Examples of dk.brics.string.grammar.operations.AssertionCycleApproximation


    /**
     * Breaks operation cycles using {@link AssertionCycleApproximation} and then
     * approximates the remaining operation cycles with {@link OperationCycleApproximation}.
     */
    public void approximateOperationCycles() {
        new AssertionCycleApproximation(this).approximate();
        new OperationCycleApproximation(this).approximate();
    }
View Full Code Here

TOP

Related Classes of dk.brics.string.grammar.operations.AssertionCycleApproximation

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.