Skip to content

Commit

Permalink
revert failing tests
Browse files Browse the repository at this point in the history
  • Loading branch information
breandan committed Apr 30, 2024
1 parent 89591fa commit 182c182
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -320,7 +320,7 @@ class BarHillelTest {
println(levBall.states.size)
// println(levBall.toDot())
// throw Exception("")
val intGram = gram.intersectLevFSA(levBall, shortS2PParikhMap)
val intGram = gram.intersectLevFSA(levBall)

val clock = TimeSource.Monotonic.markNow()

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ class ProbabilisticLBH {

val clock = TimeSource.Monotonic.markNow()
val levBall = makeLevFSA(source.tokenizeByWhitespace(), levDist)
val intGram = gram.jvmIntersectLevFSA(levBall, shortS2PParikhMap)
val intGram = gram.jvmIntersectLevFSA(levBall)
println("Finished ${intGram.size}-prod ∩-grammar in ${clock.elapsedNow()}")
val lbhSet = intGram.toPTree().sampleDirectlyWOR()
.takeWhile { clock.elapsedNow().inWholeSeconds < 30 }.collect(Collectors.toSet())
Expand Down

0 comments on commit 182c182

Please sign in to comment.