summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar Peter Collingbourne <peter@pcc.me.uk>2012-06-18 20:30:22 +0100
committerGravatar Peter Collingbourne <peter@pcc.me.uk>2012-06-18 20:30:22 +0100
commit241d8e34ebf7de2a2eae71095255d2d05f9a2566 (patch)
tree5735bc9514f8c71ce87fbf8487c0ffd725c755b0
parent7d20a47bf564a67cc21ddfdb52c32951f7b9f087 (diff)
Fix line endings
-rwxr-xr-xSource/VCGeneration/BlockPredicator.cs6
1 files changed, 3 insertions, 3 deletions
diff --git a/Source/VCGeneration/BlockPredicator.cs b/Source/VCGeneration/BlockPredicator.cs
index 284247e6..f4e82182 100755
--- a/Source/VCGeneration/BlockPredicator.cs
+++ b/Source/VCGeneration/BlockPredicator.cs
@@ -28,7 +28,7 @@ public class BlockPredicator {
BlockPredicator(Program p, Implementation i, bool cci, bool upp) {
prog = p;
- impl = i;
+ impl = i;
createCandidateInvariants = cci;
useProcedurePredicates = upp;
}
@@ -278,8 +278,8 @@ public class BlockPredicator {
"non-uniform loop"));
}
- public static void Predicate(Program p,
- bool createCandidateInvariants = true,
+ public static void Predicate(Program p,
+ bool createCandidateInvariants = true,
bool useProcedurePredicates = true) {
foreach (var decl in p.TopLevelDeclarations.ToList()) {
if (useProcedurePredicates && decl is DeclWithFormals && !(decl is Function)) {