Austin Schuh | 405fa6c | 2015-09-06 18:13:55 -0700 | [diff] [blame^] | 1 | * Try to project on (x1, x2, x3) by eliminating the last |
2 | * three variables using cddlib "fourier" or "projection" programs. | ||||
3 | * The correct result is project1res.ine. | ||||
4 | H-representation | ||||
5 | begin | ||||
6 | 20 7 integer | ||||
7 | 1 0 0 0 1 0 0 | ||||
8 | 1 0 0 0 0 1 0 | ||||
9 | 1 0 0 0 0 0 1 | ||||
10 | 1 0 0 0 -1 0 0 | ||||
11 | 1 0 0 0 0 -1 0 | ||||
12 | 1 0 0 0 0 0 -1 | ||||
13 | 1 1 0 0 -1 0 0 | ||||
14 | 1 0 1 0 0 -1 0 | ||||
15 | 1 0 0 1 0 0 -1 | ||||
16 | 1 -1 0 0 1 0 0 | ||||
17 | 1 0 -1 0 0 1 0 | ||||
18 | 1 0 0 -1 0 0 1 | ||||
19 | 2 1 1 1 -1 -1 -1 | ||||
20 | 2 -1 1 1 1 -1 -1 | ||||
21 | 2 1 -1 1 -1 1 -1 | ||||
22 | 2 1 1 -1 -1 -1 1 | ||||
23 | 2 -1 -1 1 1 1 -1 | ||||
24 | 2 1 -1 -1 -1 1 1 | ||||
25 | 2 -1 1 -1 1 -1 1 | ||||
26 | 2 -1 -1 -1 1 1 1 | ||||
27 | end | ||||
28 | project 3 1 2 3 |