Skip to content

Commit

Permalink
some comments
Browse files Browse the repository at this point in the history
  • Loading branch information
pruemmer committed Sep 14, 2024
1 parent ceeddef commit be9f17c
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/main/scala/lazabs/horn/symex/Symex.scala
Original file line number Diff line number Diff line change
Expand Up @@ -86,6 +86,9 @@ abstract class Symex[CC](iClauses: Iterable[CC])(
// Note that the prover must be manually shut down for clean-up.
implicit val prover: SimpleAPI = SimpleAPI.spawn
prover.addTheories(theories)

// TODO: keeping preds as a set is problematic, it will introduced
// non-determinism. Turn the preds field into a Seq[Predicate]?
prover.addRelations(preds)

// Keeps track of all the terms and adds new symbols to the prover
Expand Down Expand Up @@ -123,6 +126,7 @@ abstract class Symex[CC](iClauses: Iterable[CC])(
(rel, normClauses.filter(_._1.head._1 == rel).map(_._1))
}).toMap

// TODO: this block will not have any effect?
for (pred <- preds) {

normClauses.filter(
Expand Down

0 comments on commit be9f17c

Please sign in to comment.