Skip to content

Commit

Permalink
Comment out failed tests again
Browse files Browse the repository at this point in the history
  • Loading branch information
KuechA committed Nov 17, 2023
1 parent 4678e09 commit 05eb87f
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -197,7 +197,7 @@ fun max(n: Node?, eval: ValueEvaluator = MultiValueEvaluator()): QueryTree<Numbe
fun dataFlow(from: Node, to: Node): QueryTree<Boolean> {
val evalRes = from.followNextDFGEdgesUntilHit { it == to }
val allPaths = evalRes.fulfilled.map { QueryTree(it) }.toMutableList()
allPaths.addAll(evalRes.failed.map { QueryTree(it) })
// allPaths.addAll(evalRes.failed.map { QueryTree(it) })
return QueryTree(
evalRes.fulfilled.isNotEmpty(),
allPaths.toMutableList(),
Expand Down

0 comments on commit 05eb87f

Please sign in to comment.