Skip to content

Commit 2e1ccf2

Browse files
committed
vpda: add getter for discrimination tree
1 parent e958e0f commit 2e1ccf2

File tree

1 file changed

+4
-0
lines changed
  • algorithms/active/discrimination-tree-vpda/src/main/java/de/learnlib/algorithms/discriminationtree/vpda

1 file changed

+4
-0
lines changed

algorithms/active/discrimination-tree-vpda/src/main/java/de/learnlib/algorithms/discriminationtree/vpda/AbstractVPDALearner.java

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -93,6 +93,10 @@ public OneSEVPA<?, I> getHypothesisModel() {
9393
return hypothesis;
9494
}
9595

96+
public DTree<I> getDiscriminationTree() {
97+
return dtree;
98+
}
99+
96100
protected static <I> void link(DTNode<I> leaf, HypLoc<I> loc) {
97101
assert leaf.isLeaf();
98102
leaf.setData(loc);

0 commit comments

Comments
 (0)