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

de.learnlib.algorithms.rpni.AbstractBlueFringeRPNI 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.rpni;

import java.util.Objects;
import java.util.Optional;
import java.util.Queue;
import java.util.stream.Stream;

import javax.annotation.Nonnull;

import de.learnlib.api.algorithm.PassiveLearningAlgorithm;
import de.learnlib.datastructure.pta.bluefringe.DefaultProcessingOrders;
import de.learnlib.datastructure.pta.bluefringe.ProcessingOrder;
import de.learnlib.datastructure.pta.pta.BlueFringePTA;
import de.learnlib.datastructure.pta.pta.BlueFringePTAState;
import de.learnlib.datastructure.pta.pta.PTATransition;
import de.learnlib.datastructure.pta.pta.RedBlueMerge;
import net.automatalib.words.Alphabet;

/**
 * Abstract base class for Blue-Fringe-RPNI algorithms.
 * 

* Unlike most descriptions of RPNI in the literature, the Blue Fringe version of RPNI does not consider all possible * pairs of states for merging, but instead maintains a monotonically growing set of "red states", the immediate non-red * successors of which are called blue states. In each iteration of the main loop, an attempt is made to merge a blue * state into any red state. If this is impossible, the blue state is promoted, meaning it is converted into a red state * itself. The procedure terminates when all states are red. *

* A blue fringe version of RPNI is described in the book "Grammatical Inference" by Colin de la Higuera. * * @param * input symbol type * @param * output domain type * @param * state property type * @param * transition property type * @param * model type * * @author Malte Isberner */ public abstract class AbstractBlueFringeRPNI implements PassiveLearningAlgorithm { protected final Alphabet alphabet; protected final int alphabetSize; @Nonnull protected final ProcessingOrder order = DefaultProcessingOrders.CANONICAL_ORDER; protected boolean parallel = true; protected boolean deterministic; /** * Constructor. * * @param alphabet * the alphabet */ public AbstractBlueFringeRPNI(Alphabet alphabet) { this.alphabet = alphabet; this.alphabetSize = alphabet.size(); } /** * Sets whether attempts to merge a blue into a red state are conducted in parallel. *

* Note that setting this to {@code true} does not inhibit the possibility of deterministic algorithm runs (see * {@link #setDeterministic(boolean)}). * * @param parallel * whether to parallelize the process of finding a possible merge */ public void setParallel(boolean parallel) { this.parallel = parallel; } /** * Sets whether the outcome of the algorithm is required to be deterministic (i.e., subsequent calls of {@link * #computeModel()} on the same input data will perform the same merges and return the same result). *

* Note that if parallel execution is disabled (see {@link #setParallel(boolean)}), the algorithm will most likely * (but is not required to) behave deterministically even with this set to {@code false}. However, if * parallelization is enabled, results of subsequent invocations will most likely differ with this parameter set to * {@code false}. * * @param deterministic * whether to enforce deterministic algorithm behavior */ public void setDeterministic(boolean deterministic) { this.deterministic = deterministic; } @Override public M computeModel() { BlueFringePTA pta = new BlueFringePTA<>(alphabetSize); initializePTA(pta); Queue>> blue = order.createWorklist(); pta.init(blue::offer); PTATransition> qbRef; while ((qbRef = blue.poll()) != null) { BlueFringePTAState qb = qbRef.getTarget(); Stream> stream = pta.redStatesStream(); if (parallel) { stream = stream.parallel(); } Stream>> filtered = stream.map(qr -> tryMerge(pta, qr, qb)).filter(Objects::nonNull).filter(this::decideOnValidMerge); Optional>> result = (deterministic) ? filtered.findFirst() : filtered.findAny(); if (result.isPresent()) { RedBlueMerge> mod = result.get(); mod.apply(pta, blue::offer); } else { pta.promote(qb, blue::offer); } } return ptaToModel(pta); } /** * Initializes an empty PTA with sample data. * * @param pta * the PTA to initialize */ protected abstract void initializePTA(BlueFringePTA pta); /** * Attempts to merge a blue state into a red state. * * @param pta * the blue fringe PTA * @param qr * the red state (i.e., the merge target) * @param qb * the blue state (i.e., the merge source) * * @return a valid {@link RedBlueMerge} object representing a possible merge of {@code qb} into {@code qr}, or * {@code null} if the merge is impossible */ protected RedBlueMerge> tryMerge(BlueFringePTA pta, BlueFringePTAState qr, BlueFringePTAState qb) { return pta.tryMerge(qr, qb); } /** * Transforms the final PTA into a model. * * @param pta * the final PTA * * @return a model built from the final PTA */ protected abstract M ptaToModel(BlueFringePTA pta); /** * Implementing the method allows subclasses to decide (and possible reject) valid merges. * * @param merge * the prosed (valid) merge * * @return {@code true} if the suggested merge should be performed, {@code false} otherwise */ protected boolean decideOnValidMerge(RedBlueMerge> merge) { // by default we are greedy and try to merge the first pair of valid states return true; } }