| Prefix | Suffixes | |||
|---|---|---|---|---|
| A | B | A B | ||
| A | out: 0 | out: 1 | out: 2 | out: 3 |
| A B | out: 3 | out: 2 | out: 1 | out: 0 |
| A B C | out: 0123 | out: 0123 | out: 0123 | out: 0123 |
parent; 24 | public final T value; 25 | 26 | public ArenaNode(@Nullable Pair
parent, T value) {
27 | this.parent = parent;
28 | this.value = value;
29 | }
30 |
31 | public ArenaNode(T value) {
32 | this(null, value);
33 | }
34 |
35 | }
36 |
--------------------------------------------------------------------------------
/filters/cache/src/test/java/de/learnlib/filter/cache/mealy/MealyDAGMapperCacheTest.java:
--------------------------------------------------------------------------------
1 | /* Copyright (C) 2013-2025 TU Dortmund University
2 | * This file is part of LearnLib
20 | * This module is provided by the following Maven dependency:
21 | *
21 | * Parallel oracles usually use one or more dedicated worker threads in which the processing of queries is performed.
22 | * Since these do not have a defined life span, they must be terminated explicitly using {@link #shutdown()} or {@link
23 | * #shutdownNow()}.
24 | *
25 | * @param
26 | * input symbol type
27 | * @param
22 | * <dependency>
23 | * <groupId>de.learnlib</groupId>
24 | * <artifactId>learnlib-symbol-filters</artifactId>
25 | * <version>${version}</version>
26 | * </dependency>
27 | *
28 | */
29 | open module de.learnlib.filter.symbol {
30 |
31 | requires de.learnlib.api;
32 | requires net.automatalib.api;
33 |
34 | exports de.learnlib.filter.symbol;
35 | }
36 |
--------------------------------------------------------------------------------
/filters/cache/src/test/java/de/learnlib/filter/cache/mealy/DynamicMealyTreeMapperCacheTest.java:
--------------------------------------------------------------------------------
1 | /* Copyright (C) 2013-2025 TU Dortmund University
2 | * This file is part of LearnLib Optional hypothesis,
29 | Alphabet alphabet,
30 | Set targets);
31 |
32 | }
33 |
--------------------------------------------------------------------------------
/algorithms/active/lambda/src/test/java/de/learnlib/algorithm/lambda/ttt/dfa/TTTLambdaDFAGrowingAlphabetTest.java:
--------------------------------------------------------------------------------
1 | /* Copyright (C) 2013-2025 TU Dortmund University
2 | * This file is part of LearnLib