All Downloads are FREE. Search and download functionalities are using the official Maven repository.

de.learnlib.algorithms.adt.api.ADTExtender Maven / Gradle / Ivy

/* Copyright (C) 2013-2018 TU Dortmund
 * This file is part of LearnLib, http://www.learnlib.de/.
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *     http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
package de.learnlib.algorithms.adt.api;

import javax.annotation.ParametersAreNonnullByDefault;

import de.learnlib.algorithms.adt.adt.ADTNode;
import de.learnlib.algorithms.adt.automaton.ADTHypothesis;
import de.learnlib.algorithms.adt.automaton.ADTState;
import de.learnlib.algorithms.adt.model.ExtensionResult;

/**
 * Interface for configuration objects that specify how to finalize the temporary splitter given by regular
 * counterexample decomposition.
 *
 * @author frohme
 */
@ParametersAreNonnullByDefault
public interface ADTExtender {

    /**
     * Compute the ADT whose root node should replace the root of the temporary splitter in the current ADT.
     *
     * @param hypothesis
     *         the current hypothesis (with potentially undefined transitions/outputs)
     * @param pta
     *         the {@link PartialTransitionAnalyzer} for managing partial transitions
     * @param temporarySplitter
     *         the current temporary ADT based on the decomposed counterexample
     * @param 
     *         input alphabet type
     * @param 
     *         output alphabet type
     *
     * @return the extension result
     */
     ExtensionResult, I, O> computeExtension(ADTHypothesis hypothesis,
                                                                  PartialTransitionAnalyzer, I> pta,
                                                                  ADTNode, I, O> temporarySplitter);

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy