Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions src/main/scala/viper/silver/ast/Ast.scala
Original file line number Diff line number Diff line change
Expand Up @@ -382,6 +382,12 @@ case object AutoTriggered extends Info {
override val isCached = false
}

/** An `Info` for specifying the weight of a quantifier in the SMT encoding. */
case class WeightedQuantifier(weight: Int) extends Info {
override val comment = Nil
override val isCached = false
}

/** An `Info` instance for labelling a pre-verified AST node (e.g., via caching). */
case object Cached extends Info {
override val comment = Nil
Expand Down