Skip to content

Commit

Permalink
debug failing build
Browse files Browse the repository at this point in the history
  • Loading branch information
breandan committed Apr 28, 2024
1 parent 80de042 commit ec3d8da
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -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<Automaton<String, Double>>(
both = { a, b -> if (a == null) b else if (b == null) a else Concatenation(a, b) },
Expand Down

0 comments on commit ec3d8da

Please sign in to comment.