diff options
author | stobies <unknown> | 2009-09-07 06:44:27 +0000 |
---|---|---|
committer | stobies <unknown> | 2009-09-07 06:44:27 +0000 |
commit | a4f2bf6414f35907ab135cc6723683fe632467c4 (patch) | |
tree | a642e976f34ec4abb203ede7ac7e819161eefc0e /Source/Core/Util.ssc | |
parent | 00dbdfbb3cd610873676050dafbb4e9bcf9d4672 (diff) |
Renaming ExtractExpr into BvExtractExpr to fit naming scheme of the other bitvector operations
Diffstat (limited to 'Source/Core/Util.ssc')
-rw-r--r-- | Source/Core/Util.ssc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/Core/Util.ssc b/Source/Core/Util.ssc index 914ccf09..e90358ac 100644 --- a/Source/Core/Util.ssc +++ b/Source/Core/Util.ssc @@ -266,7 +266,7 @@ namespace Microsoft.Boogie }
public static string! PrettyPrintBplExpr (Expr! e) {
// anything that is unknown will just be printed via ToString
- // OldExpr and QuantifierExpr, ExtractExpr, BvConcatExpr are ignored for now
+ // OldExpr and QuantifierExpr, BvExtractExpr, BvConcatExpr are ignored for now
// LiteralExpr is printed as itself by ToString
if (e is IdentifierExpr) {
string s = e.ToString();
|