-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
support model counting and model enumeration
- Loading branch information
Showing
17 changed files
with
203 additions
and
10 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
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
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,7 @@ | ||
* request model counting on all variables | ||
count: ; | ||
1 x1 +4 x2 -2 x5 >= 2; | ||
-1 x1 +4 x2 -2 x5 >= +3; | ||
12345678901234567890 x4 +4 x3 >= 10; | ||
* an equality constraint | ||
2 x2 +3 x4 +2 x1 +3 x5 = 5; |
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,7 @@ | ||
* request model counting on x1, x3 and x3 | ||
count: x1 x2 x3 ; | ||
1 x1 +4 x2 -2 x5 >= 2; | ||
-1 x1 +4 x2 -2 x5 >= +3; | ||
12345678901234567890 x4 +4 x3 >= 10; | ||
* an equality constraint | ||
2 x2 +3 x4 +2 x1 +3 x5 = 5; |
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,8 @@ | ||
* comment | ||
models: count ; | ||
project: x1 x2 x3 ; | ||
1 x1 +4 x2 -2 x5 >= 2; | ||
-1 x1 +4 x2 -2 x5 >= +3; | ||
12345678901234567890 x4 +4 x3 >= 10; | ||
* an equality constraint | ||
2 x2 +3 x4 +2 x1 +3 x5 = 5; |
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,7 @@ | ||
* comment | ||
models: count ; | ||
1 x1 +4 x2 -2 x5 >= 2; | ||
-1 x1 +4 x2 -2 x5 >= +3; | ||
12345678901234567890 x4 +4 x3 >= 10; | ||
* an equality constraint | ||
2 x2 +3 x4 +2 x1 +3 x5 = 5; |
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,7 @@ | ||
* request model emumeration on all variables | ||
enum: ; | ||
1 x1 +4 x2 -2 x5 >= 2; | ||
-1 x1 +4 x2 -2 x5 >= +3; | ||
12345678901234567890 x4 +4 x3 >= 10; | ||
* an equality constraint | ||
2 x2 +3 x4 +2 x1 +3 x5 = 5; |
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,7 @@ | ||
* request model enumeration on x1, x3 and x3 | ||
enum: x1 x2 x3 ; | ||
1 x1 +4 x2 -2 x5 >= 2; | ||
-1 x1 +4 x2 -2 x5 >= +3; | ||
12345678901234567890 x4 +4 x3 >= 10; | ||
* an equality constraint | ||
2 x2 +3 x4 +2 x1 +3 x5 = 5; |
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,10 @@ | ||
* comment | ||
|
||
models: enumerate ; | ||
|
||
project: x1 x2 x3 ; | ||
1 x1 +4 x2 -2 x5 >= 2; | ||
-1 x1 +4 x2 -2 x5 >= +3; | ||
12345678901234567890 x4 +4 x3 >= 10; | ||
* an equality constraint | ||
2 x2 +3 x4 +2 x1 +3 x5 = 5; |
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,7 @@ | ||
* comment | ||
models: enumerate ; | ||
1 x1 +4 x2 -2 x5 >= 2; | ||
-1 x1 +4 x2 -2 x5 >= +3; | ||
12345678901234567890 x4 +4 x3 >= 10; | ||
* an equality constraint | ||
2 x2 +3 x4 +2 x1 +3 x5 = 5; |