Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove FailPredT and deprecated rewriting rules #676

Merged
merged 5 commits into from
Mar 25, 2021
Merged
Show file tree
Hide file tree
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
1 change: 1 addition & 0 deletions UNRELEASED.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@

### Removed

* Unused rewriting rules and `FailPredT` in the model checker, see #665
* Intermediate representation: removed non-standard operators subsetProper, supset, supseteq, see #615
* Intermediate representation: removed TlaArithOper.{sum,prod}, as they are not standard, see #580
* Intermediate representation: removed TlaOper.chooseIdiom
Original file line number Diff line number Diff line change
Expand Up @@ -75,10 +75,6 @@ class SymbStateDecoder(solverContext: SolverContext, rewriter: SymbStateRewriter
case IntT() =>
solverContext.evalGroundExpr(cell.toNameEx).withTag(Typed(IntT1()))

case FailPredT() =>
// FailPred will be removed soon, see: https://github.com/informalsystems/apalache/issues/665
solverContext.evalGroundExpr(cell.toNameEx).withTag(Typed(BoolT1()))

case ConstT() =>
val found = rewriter.strValueCache.findKey(cell)
if (found.isDefined) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import at.forsyte.apalache.tla.lir.{OperEx, TlaEx, ValEx}
import at.forsyte.apalache.tla.lir.UntypedPredefs._

/**
* Integer comparisons: <, <=, >, >=. For equality and inequality, check EqRule and NeqRule.
* Integer comparisons: <, <=, >, >=. For equality and inequality, check EqRule.
*
* @author Igor Konnov
*/
Expand Down

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

Loading