-
Notifications
You must be signed in to change notification settings - Fork 22
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
7b8d238
commit dbb092b
Showing
7 changed files
with
85 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
letting s be ([] : `matrix indexed by [int] of bool`) | ||
find a : bool | ||
such that | ||
a = s[1] |
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,4 @@ | ||
letting s be [] | ||
find a : bool | ||
such that | ||
a = s[1] |
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,4 @@ | ||
letting s be ([] : `matrix indexed by [int] of int`) | ||
find a : int(1..5) | ||
such that | ||
a = s[1] |
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,4 @@ | ||
letting s be [] | ||
find a : int(1..5) | ||
such that | ||
a = s[1] |
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,15 @@ | ||
rm -rf conjure-output *.solution | ||
|
||
conjure solve 443-workaround.essence | ||
head -n6 conjure-output/model000001.eprime | ||
|
||
conjure solve 443.essence | ||
head -n6 conjure-output/model000001.eprime | ||
|
||
conjure solve 443-bool.essence | ||
head -n6 conjure-output/model000001.eprime | ||
|
||
conjure solve 443-bool-typed.essence | ||
head -n6 conjure-output/model000001.eprime | ||
|
||
rm -rf conjure-output *.solution |
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,52 @@ | ||
Generating models for 443-workaround.essence | ||
Generated models: model000001.eprime | ||
Saved under: conjure-output | ||
Savile Row: model000001.eprime | ||
Running minion for domain filtering. | ||
Running solver: minion | ||
No solutions found. | ||
language ESSENCE' 1.0 | ||
|
||
find a: int(1..5) | ||
branching on [a] | ||
such that a = ([] : `matrix indexed by [int()] of int`)[1] | ||
|
||
Generating models for 443.essence | ||
Generated models: model000001.eprime | ||
Saved under: conjure-output | ||
Savile Row: model000001.eprime | ||
Running minion for domain filtering. | ||
Running solver: minion | ||
No solutions found. | ||
language ESSENCE' 1.0 | ||
|
||
find a: int(1..5) | ||
branching on [a] | ||
such that a = [][1] | ||
|
||
Generating models for 443-bool.essence | ||
Generated models: model000001.eprime | ||
Saved under: conjure-output | ||
Savile Row: model000001.eprime | ||
Running minion for domain filtering. | ||
Running solver: minion | ||
No solutions found. | ||
language ESSENCE' 1.0 | ||
|
||
find a: bool | ||
branching on [a] | ||
such that a = [][1] | ||
|
||
Generating models for 443-bool-typed.essence | ||
Generated models: model000001.eprime | ||
Saved under: conjure-output | ||
Savile Row: model000001.eprime | ||
Running minion for domain filtering. | ||
Running solver: minion | ||
Copying solution to: 443-bool-typed.solution | ||
language ESSENCE' 1.0 | ||
|
||
find a: bool | ||
branching on [a] | ||
such that a = false | ||
|