diff options
author | Valentin Wüstholz <wuestholz@gmail.com> | 2015-05-17 13:42:49 +0200 |
---|---|---|
committer | Valentin Wüstholz <wuestholz@gmail.com> | 2015-05-17 13:42:49 +0200 |
commit | b8984d6c6d7495f19c70bbc1e3a364f8b0a4e206 (patch) | |
tree | 1f157f7ebc0354ef7c15612182b71f0189acfdff /Source/Core | |
parent | 6d5ddf853694b2b8014585dd1e40cc10efbaddea (diff) |
Minor refactoring
Diffstat (limited to 'Source/Core')
-rw-r--r-- | Source/Core/AbsyCmd.cs | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/Source/Core/AbsyCmd.cs b/Source/Core/AbsyCmd.cs index eb8b8e1e..f659f9ea 100644 --- a/Source/Core/AbsyCmd.cs +++ b/Source/Core/AbsyCmd.cs @@ -1529,18 +1529,6 @@ namespace Microsoft.Boogie { }
public override void Emit(TokenTextWriter stream, int level) {
- if (stream.UseForComputingChecksums)
- {
- var lhs = Lhss.FirstOrDefault() as SimpleAssignLhs;
- if (lhs != null
- && lhs.AssignedVariable.Decl != null
- && (QKeyValue.FindBoolAttribute(lhs.AssignedVariable.Decl.Attributes, "assumption")
- || lhs.AssignedVariable.Decl.Name.Contains("##old##")))
- {
- return;
- }
- }
-
stream.Write(this, level, "");
string/*!*/ sep = "";
@@ -3213,9 +3201,6 @@ namespace Microsoft.Boogie { }
public override void Emit(TokenTextWriter stream, int level) {
//Contract.Requires(stream != null);
-
- if (stream.UseForComputingChecksums && QKeyValue.FindBoolAttribute(Attributes, "precondition_previous_snapshot")) { return; }
-
stream.Write(this, level, "assume ");
EmitAttributes(stream, Attributes);
this.Expr.Emit(stream);
|