From ec3d8da547ef9367cb8a8e6e1ba91c8eb040ec51 Mon Sep 17 00:00:00 2001 From: breandan Date: Sun, 28 Apr 2024 10:13:51 -0400 Subject: [PATCH] debug failing build --- .../kotlin/ai/hypergraph/kaliningraph/automata/WFSATest.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/jvmTest/kotlin/ai/hypergraph/kaliningraph/automata/WFSATest.kt b/src/jvmTest/kotlin/ai/hypergraph/kaliningraph/automata/WFSATest.kt index 60d482d8..d67be00a 100644 --- a/src/jvmTest/kotlin/ai/hypergraph/kaliningraph/automata/WFSATest.kt +++ b/src/jvmTest/kotlin/ai/hypergraph/kaliningraph/automata/WFSATest.kt @@ -39,7 +39,7 @@ class WFSATest { @Test fun testLBHRepair() { val toRepair = "NAME : NEWLINE NAME = STRING NEWLINE NAME = NAME . NAME ( STRING ) NEWLINE" - val pt = Grammars.seq2parsePythonCFG.makeLevPTree(toRepair, 2) + val pt = Grammars.seq2parsePythonCFG.makeLevPTree(toRepair, 1) measureTimedValue { pt.propagator>( both = { a, b -> if (a == null) b else if (b == null) a else Concatenation(a, b) },