You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In the following example sortValues doesn't contain value
with(KContext()) {
KYicesSolver(this).use { solver ->val sort = mkUninterpretedSort("sort")
val value = mkUninterpretedSortValue(sort, 0)
val a by sort
solver.assert(a neq value)
solver.check()
val model = solver.model()
val sortValues = model.uninterpretedSortUniverse(sort)!!println(value in sortValues)
}
}
The text was updated successfully, but these errors were encountered:
In the following example
sortValues
doesn't containvalue
The text was updated successfully, but these errors were encountered: