-
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.
Add new heuristic and two new problems
- Loading branch information
1 parent
f7bd014
commit eebf2b6
Showing
9 changed files
with
223 additions
and
82 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,58 @@ | ||
// http://homepages.math.uic.edu/~jan/Demo/conform1.html | ||
|
||
t1 t2 t3 | ||
|
||
t2 * t3 = t2t3 | ||
t1 * t2 = t1t2 | ||
t1 * t3 = t1t3 | ||
d * t2t3 = 8t2t3 | ||
d * t1t2 = 8t1t2 | ||
d * t1t3 = 8t1t3 | ||
t1 * t1 = t1_2 | ||
t2 * t2 = t2_2 | ||
t3 * t3 = t3_2 | ||
t2_2 * t3_2 = t2_2t3_2 | ||
t3_2 * t1_2 = t3_2t1_2 | ||
t1_2 * t2_2 = t1_2t2_2 | ||
b * t2_2t3_2 = 3t2_2t3_2 | ||
b * t3_2t1_2 = 3t3_2t1_2 | ||
b * t1_2t2_2 = 3t1_2t2_2 | ||
t2_2 + t3_2 = i1 | ||
t3_2 + t1_2 = i2 | ||
t1_2 + t2_2 = i3 | ||
a + i1 = j1 | ||
a + i2 = j2 | ||
a + i3 = j3 | ||
j1 + 3t2_2t3_2 = 8t2t3 | ||
j2 + 3t3_2t1_2 = 8t1t2 | ||
j3 + 3t1_2t2_2 = 8t1t3 | ||
|
||
|
||
a in [9,9] | ||
b in [3,3] | ||
c in [2,2] | ||
d in [8,8] | ||
t1 in [-1000,1000] | ||
t2 in [-1000,1000] | ||
t3 in [-1000,1000] | ||
t2t3 in [-1000,1000] | ||
t1t2 in [-1000,1000] | ||
t1t3 in [-1000,1000] | ||
8t2t3 in [-1000,1000] | ||
8t1t2 in [-1000,1000] | ||
8t1t3 in [-1000,1000] | ||
t1_2 in [-1000,1000] | ||
t2_2 in [-1000,1000] | ||
t3_2 in [-1000,1000] | ||
t2_2t3_2 in [-1000,1000] | ||
t3_2t1_2 in [-1000,1000] | ||
t1_2t2_2 in [-1000,1000] | ||
3t2_2t3_2 in [-1000,1000] | ||
3t3_2t1_2 in [-1000,1000] | ||
3t1_2t2_2 in [-1000,1000] | ||
i1 in [-1000,1000] | ||
i2 in [-1000,1000] | ||
i3 in [-1000,1000] | ||
j1 in [-1000,1000] | ||
j2 in [-1000,1000] | ||
j3 in [-1000,1000] |
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,16 @@ | ||
// x^3 - 2x = 0 | ||
// Solutions: x in {0; -sqrt(2); sqrt(2)} | ||
|
||
x | ||
|
||
x * x = x_2 | ||
x_2 * x = x_3 | ||
a * x = ax | ||
x_3 - ax = b | ||
|
||
a in [2,2] | ||
b in [0,0] | ||
x in [-500,500] | ||
x_2 in [0,10000] | ||
x_3 in [-1000,10000] | ||
ax in [-1000,1000] |
Oops, something went wrong.