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 |
--------------------------------------------------------------------------------
/algorithms/active/lstar/src/main/java/de/learnlib/algorithm/lstar/dfa/LStarDFAUtil.java:
--------------------------------------------------------------------------------
1 | /* Copyright (C) 2013-2025 TU Dortmund University
2 | * This file is part of LearnLib