Skip to content

Commit

Permalink
[PLE] Don't simplify Z3Nodes waiting for feedback on Z3Prover/z3#7179
Browse files Browse the repository at this point in the history
  • Loading branch information
shingarov committed May 5, 2024
1 parent b3cc126 commit 30aebb1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/PLE/Z3Node.extension.st
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ notGuardedApps :: Expr -> [Expr]

{ #category : #'*PLE' }
Z3Node >> simplify: γ in: ictx [
^[ :x | (x simplifyStep: γ in: ictx) simplify ] fix: self
^[ :x | (x simplifyStep: γ in: ictx) "simplify" ] fix: self
]

{ #category : #'*PLE' }
Expand Down
2 changes: 1 addition & 1 deletion src/Z3/Z3Node.class.st
Original file line number Diff line number Diff line change
Expand Up @@ -200,7 +200,7 @@ Z3Node >> inEnvironment: aDictionary [
to add:(var coerce: val).
]
].
^(self substituteAll: from withoutNils with: to withoutNils) simplify
^(self substituteAll: from withoutNils with: to withoutNils) "simplify"
]

{ #category : #'term rewriting' }
Expand Down

0 comments on commit 30aebb1

Please sign in to comment.