-
Notifications
You must be signed in to change notification settings - Fork 69
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[asl] limit constraint size after explosion
- Loading branch information
1 parent
8539c82
commit 8d9b5fb
Showing
16 changed files
with
383 additions
and
17 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
constant A = 1 << 2; | ||
constant B = 1 << 2; | ||
|
||
func myfunction(a : integer{0..A}, b : integer{0..B}) | ||
begin | ||
let n = a DIVRM b; // 10 DIVRM 3 == 3 | ||
var b1 = n * b; | ||
b1 = 4; | ||
b1 = A * B; | ||
end; | ||
|
||
func main() => integer | ||
begin | ||
myfunction(0, 1); | ||
myfunction(A, 1); | ||
myfunction(A DIVRM 2, B DIVRM 4); | ||
return 0; | ||
end; | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
constant A = 1 << 4; | ||
constant B = 1 << 4; | ||
|
||
func myfunction(a : integer{0..A}, b : integer{0..B}) | ||
begin | ||
let n = a DIVRM b; // 10 DIVRM 3 == 3 | ||
var b1 = n * b; | ||
b1 = 4; | ||
b1 = A * B; | ||
end; | ||
|
||
func main() => integer | ||
begin | ||
myfunction(0, 1); | ||
myfunction(A, 1); | ||
myfunction(A DIVRM 2, B DIVRM 4); | ||
return 0; | ||
end; | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
constant A = 1 << 5; | ||
constant B = 1 << 5; | ||
|
||
func myfunction(a : integer{0..A}, b : integer{0..B}) | ||
begin | ||
let n = a DIVRM b; // 10 DIVRM 3 == 3 | ||
var b1 = n * b; | ||
b1 = 4; | ||
b1 = A * B; | ||
end; | ||
|
||
func main() => integer | ||
begin | ||
myfunction(0, 1); | ||
myfunction(A, 1); | ||
myfunction(A DIVRM 2, B DIVRM 4); | ||
return 0; | ||
end; | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
constant A = 1 << 6; | ||
constant B = 1 << 6; | ||
|
||
func myfunction(a : integer{0..A}, b : integer{0..B}) | ||
begin | ||
let n = a DIVRM b; // 10 DIVRM 3 == 3 | ||
var b1 = n * b; | ||
b1 = 4; | ||
b1 = A * B; | ||
end; | ||
|
||
func main() => integer | ||
begin | ||
myfunction(0, 1); | ||
myfunction(A, 1); | ||
myfunction(A DIVRM 2, B DIVRM 4); | ||
return 0; | ||
end; | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
constant A = 1 << 7; | ||
constant B = 1 << 7; | ||
|
||
func myfunction(a : integer{0..A}, b : integer{0..B}) | ||
begin | ||
let n = a DIVRM b; // 10 DIVRM 3 == 3 | ||
var b1 = n * b; | ||
b1 = 4; | ||
b1 = A * B; | ||
end; | ||
|
||
func main() => integer | ||
begin | ||
myfunction(0, 1); | ||
myfunction(A, 1); | ||
myfunction(A DIVRM 2, B DIVRM 4); | ||
return 0; | ||
end; | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
constant A = 1 << 8; | ||
constant B = 1 << 8; | ||
|
||
func myfunction(a : integer{0..A}, b : integer{0..B}) | ||
begin | ||
let n = a DIVRM b; // 10 DIVRM 3 == 3 | ||
var b1 = n * b; | ||
b1 = 4; | ||
b1 = A * B; | ||
end; | ||
|
||
func main() => integer | ||
begin | ||
myfunction(0, 1); | ||
myfunction(A, 1); | ||
myfunction(A DIVRM 2, B DIVRM 4); | ||
return 0; | ||
end; | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
constant A = 1 << 9; | ||
constant B = 1 << 9; | ||
|
||
func myfunction(a : integer{0..A}, b : integer{0..B}) | ||
begin | ||
let n = a DIVRM b; // 10 DIVRM 3 == 3 | ||
var b1 = n * b; | ||
b1 = 4; | ||
b1 = A * B; | ||
end; | ||
|
||
func main() => integer | ||
begin | ||
myfunction(0, 1); | ||
myfunction(A, 1); | ||
myfunction(A DIVRM 2, B DIVRM 4); | ||
return 0; | ||
end; | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
constant A = 1 << 10; | ||
constant B = 1 << 10; | ||
|
||
func myfunction(a : integer{0..A}, b : integer{0..B}) | ||
begin | ||
let n = a DIVRM b; // 10 DIVRM 3 == 3 | ||
var b1 = n * b; | ||
b1 = 4; | ||
b1 = A * B; | ||
end; | ||
|
||
func main() => integer | ||
begin | ||
myfunction(0, 1); | ||
myfunction(A, 1); | ||
myfunction(A DIVRM 2, B DIVRM 4); | ||
return 0; | ||
end; | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
constant A = 1 << 11; | ||
constant B = 1 << 11; | ||
|
||
func myfunction(a : integer{0..A}, b : integer{0..B}) | ||
begin | ||
let n = a DIVRM b; // 10 DIVRM 3 == 3 | ||
var b1 = n * b; | ||
b1 = 4; | ||
b1 = A * B; | ||
end; | ||
|
||
func main() => integer | ||
begin | ||
myfunction(0, 1); | ||
myfunction(A, 1); | ||
myfunction(A DIVRM 2, B DIVRM 4); | ||
return 0; | ||
end; | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
constant A = 1 << 12; | ||
constant B = 1 << 12; | ||
|
||
func myfunction(a : integer{0..A}, b : integer{0..B}) | ||
begin | ||
let n = a DIVRM b; // 10 DIVRM 3 == 3 | ||
var b1 = n * b; | ||
b1 = 4; | ||
b1 = A * B; | ||
end; | ||
|
||
func main() => integer | ||
begin | ||
myfunction(0, 1); | ||
myfunction(A, 1); | ||
myfunction(A DIVRM 2, B DIVRM 4); | ||
return 0; | ||
end; | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
constant A = 1 << 13; | ||
constant B = 1 << 13; | ||
|
||
func myfunction(a : integer{0..A}, b : integer{0..B}) | ||
begin | ||
let n = a DIVRM b; // 10 DIVRM 3 == 3 | ||
var b1 = n * b; | ||
b1 = 4; | ||
b1 = A * B; | ||
end; | ||
|
||
func main() => integer | ||
begin | ||
myfunction(0, 1); | ||
myfunction(A, 1); | ||
myfunction(A DIVRM 2, B DIVRM 4); | ||
return 0; | ||
end; | ||
|
||
|
Oops, something went wrong.