Package dk.brics.string.grammar.operations

Examples of dk.brics.string.grammar.operations.OperationCycleApproximation$CharSetTransferVisitor


     * 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


    /**
     * See {@link OperationCycleApproximation#countCycles()}.
     */
    public int getNumberOfOperationCycles() {
        return new OperationCycleApproximation(this).countCycles();
    }
View Full Code Here

    /**
     * See {@link OperationCycleApproximation#getCharsets()}.
     */
    public String getCharsets() {
        return new OperationCycleApproximation(this).getCharsets();
    }
View Full Code Here

TOP

Related Classes of dk.brics.string.grammar.operations.OperationCycleApproximation$CharSetTransferVisitor

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.