From d652155ae013f36a1ee17653a8e458baad2d9c2c Mon Sep 17 00:00:00 2001 From: Checkmate50 Date: Mon, 6 Jun 2016 23:14:18 -0600 Subject: Merging complete. Everything looks good *crosses fingers* --- Test/test15/InterpretedFunctionTests.bpl | 38 ++++++++++++++++---------------- 1 file changed, 19 insertions(+), 19 deletions(-) (limited to 'Test/test15/InterpretedFunctionTests.bpl') diff --git a/Test/test15/InterpretedFunctionTests.bpl b/Test/test15/InterpretedFunctionTests.bpl index 33db52ef..5712595e 100644 --- a/Test/test15/InterpretedFunctionTests.bpl +++ b/Test/test15/InterpretedFunctionTests.bpl @@ -1,19 +1,19 @@ -// RUN: %boogie "%s" > "%t" -// RUN: %diff "%s.expect" "%t" -procedure addition(x: int, y: int) { - assume x == 1; - assume y == 2; - assert x + y == 4; -} - -procedure subtraction(x: int, y: int) { - assume x == 1; - assume y == 2; - assert x - y == 4; //only shows x-y == -1 when run with /method:subtraction, WHY??? -} - -procedure multiplication(x: int, y: int) { - assume x == 1; - assume y == 2; - assert x * y == 4; -} +// RUN: %boogie "%s" > "%t" +// RUN: %diff "%s.expect" "%t" +procedure addition(x: int, y: int) { + assume x == 1; + assume y == 2; + assert x + y == 4; +} + +procedure subtraction(x: int, y: int) { + assume x == 1; + assume y == 2; + assert x - y == 4; //only shows x-y == -1 when run with /method:subtraction, WHY??? +} + +procedure multiplication(x: int, y: int) { + assume x == 1; + assume y == 2; + assert x * y == 4; +} -- cgit v1.2.3