forked from cddlib/cddlib
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcddexec.c
304 lines (251 loc) · 8.49 KB
/
cddexec.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
/* cddexec.c: executing cdd functions. It mimics the interface of the program
cdd_both_reps by Volker Braun <[email protected]> with much faster executions.
The input is taken from stdin and can be either a
H or V representation.
Written by Komei Fukuda <[email protected]>, by using some part of cdd_both_reps.
Version 0.94j, May 10, 2018.
*/
/* This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*/
#include "setoper.h"
#include "cdd.h"
#include <stdio.h>
#include <stdlib.h>
#include <time.h>
#include <math.h>
#include <string.h>
void compute_adjacency(dd_MatrixPtr Rep, dd_ErrorType* err_ptr)
{
dd_SetFamilyPtr AdjacencyGraph;
if (*err_ptr != dd_NoError) return;
switch (Rep->representation) {
case dd_Inequality:
fprintf(stdout, "Facet adjacency\n");
break;
case dd_Generator:
fprintf(stdout, "Vertex adjacency\n");
break;
case dd_Unspecified:
fprintf(stderr, "unknown representation type!\n");
default:
fprintf(stderr, "This should be unreachable!\n");
exit(2);
}
/* Output adjacency of vertices/rays/lines */
if (Rep->rowsize > 0) { /* workaround for bug with empty polyhedron */
/* compute adjacent vertices/rays/lines */
AdjacencyGraph = dd_Matrix2Adjacency(Rep, err_ptr);
if (*err_ptr == dd_NoError) {
dd_WriteSetFamily(stdout,AdjacencyGraph);
dd_FreeSetFamily(AdjacencyGraph);
}
} else {
printf("begin\n");
printf(" 0 0\n");
printf("end\n");
}
printf("\n");
}
void compute_the_second_rep(dd_MatrixPtr M,
dd_ErrorType* err_ptr)
{
dd_PolyhedraPtr poly;
dd_MatrixPtr A;
/* compute the second representation */
poly = dd_DDMatrix2Poly(M, err_ptr);
if (*err_ptr!=dd_NoError) goto _L99;
switch (poly->representation) {
case dd_Inequality:
fprintf(stdout, "The second representation:\n");
A=dd_CopyGenerators(poly);
dd_WriteMatrix(stdout,A);
dd_FreeMatrix(A);
break;
case dd_Generator:
fprintf(stdout, "The second representation:\n");
A=dd_CopyInequalities(poly);
dd_WriteMatrix(stdout,A);
dd_FreeMatrix(A);
break;
default:
break;
}
_L99:;
}
void compute_the_second_repall(dd_MatrixPtr M,
dd_ErrorType* err_ptr)
{
dd_PolyhedraPtr poly;
dd_MatrixPtr A,B;
/* compute the second representation */
poly = dd_DDMatrix2Poly(M, err_ptr);
if (*err_ptr!=dd_NoError) goto _L99;
switch (poly->representation) {
case dd_Inequality:
A=dd_CopyGenerators(poly);
B=dd_CopyInequalities(poly);
fprintf(stdout, "The second representation:\n");
dd_WriteMatrix(stdout,A);
fprintf(stdout, "\nVertex incidence\n");
dd_WriteIncidence(stdout,poly);
fprintf(stdout, "\nVertex adjacency\n");
dd_WriteAdjacency(stdout,poly);
fprintf(stdout, "\nThe first (input) representation\n");
dd_WriteMatrix(stdout,B);
fprintf(stdout, "\nFacet incidence\n");
dd_WriteInputIncidence(stdout,poly);
fprintf(stdout, "\nFacet adjacency\n");
dd_WriteInputAdjacency(stdout,poly);
dd_FreeMatrix(A);
dd_FreeMatrix(B);
break;
case dd_Generator:
A=dd_CopyInequalities(poly);
B=dd_CopyGenerators(poly);
fprintf(stdout, "The second representation:\n");
dd_WriteMatrix(stdout,A);
fprintf(stdout, "\nFacet incidence\n");
dd_WriteIncidence(stdout,poly);
fprintf(stdout, "\nFacet adjacency\n");
dd_WriteAdjacency(stdout,poly);
fprintf(stdout, "\nThe first (input) representation\n");
dd_WriteMatrix(stdout,B);
fprintf(stdout, "\nVertex incidence\n");
dd_WriteInputIncidence(stdout,poly);
fprintf(stdout, "\nVertex adjacency\n");
dd_WriteInputAdjacency(stdout,poly);
dd_FreeMatrix(A);
dd_FreeMatrix(B);
break;
default:
break;
}
_L99:;
}
void compute_redundancy(dd_MatrixPtr M,
dd_ErrorType* err_ptr)
{
dd_rowrange i,m;
dd_rowindex newpos;
dd_rowset impl_linset,redset;
m=M->rowsize;
fprintf(stdout, "Canonicalize the matrix.\n");
dd_MatrixCanonicalize(&M, &impl_linset, &redset, &newpos, err_ptr);
if (*err_ptr!=dd_NoError) goto _L99;
fprintf(stdout, "Implicit linearity rows are:"); set_fwrite(stdout, impl_linset);
fprintf(stdout, "\nRedundant rows are:"); set_fwrite(stdout, redset);
fprintf(stdout, "\n");
fprintf(stdout, "Nonredundant representation:\n");
fprintf(stdout, "The new row positions are as follows (orig:new).\nEach redundant row has the new number 0.\nEach deleted duplicated row has a number nagative of the row that\nrepresents its equivalence class.\n");
for (i=1; i<=m; i++){
fprintf(stdout, " %ld:%ld",i, newpos[i]);
}
fprintf(stdout, "\n");
dd_WriteMatrix(stdout, M);
set_free(redset);
set_free(impl_linset);
free(newpos);
dd_FreeMatrix(M);
_L99:;
}
void usage(char *name)
{
fprintf(stderr, "No known option specified, I don't know what to do!\n"
"Usage:\n"
"%s --option\n"
"where --option is precisely one of the following:\n\n"
" --rep: Compute the second (H- or V-) representation.\n"
" The computed representation is minimal (without redundancy).\n"
"\n"
" --repall: Compute the second (H- or V-) representation.\n"
" It outputs both the input and output representations,\n"
" as well as their incidence and adjacency relations.\n"
"\n"
" --redcheck: Compute a minimal (non-redundant) representation.\n"
" This is sometimes called the redundancy removal.\n"
"\n"
" --adjacency: Compute adjacency information only.\n"
" The input is assumed to be a minimal representation, as, for example, computed\n"
" by --redcheck. Warning, you will not get the correct answer if the input\n"
" representation is not minimal! The output is the vertex or facet graph,\n"
" depending on the input.\n"
"\n"
"The input data is a H- or V-representation in cdd's ine/ext format and\n"
"is in each case read from stdin.\n",
name);
}
enum command_line_arguments {REP, REPALL, ADJACENCY, REDCHECK};
int parse_arguments(char* arg, enum command_line_arguments* option)
{
if (strcmp(arg,"--repall")==0) {
*option = REPALL;
return 0;
}
if (strcmp(arg,"--rep")==0) {
*option = REP;
return 0;
}
if (strcmp(arg,"--adjacency")==0) {
*option = ADJACENCY;
return 0;
}
if (strcmp(arg,"--redcheck")==0) {
*option = REDCHECK;
return 0;
}
fprintf(stderr, "Unknown option: %s\n", arg);
return 1;
}
int main(int argc, char *argv[])
{
dd_ErrorType err=dd_NoError;
dd_MatrixPtr M=NULL;
enum command_line_arguments option;
if (argc!=2 || parse_arguments(argv[1],&option)) {
usage(argv[0]);
return 1;
}
dd_set_global_constants();
/* Read data from stdin */
M = dd_PolyFile2Matrix(stdin, &err);
if (err != dd_NoError) {
fprintf(stderr, "I was unable to parse the input data!\n");
dd_WriteErrorMessages(stdout,err);
dd_free_global_constants();
return 1;
}
switch (option) {
case REPALL:
compute_the_second_repall(M,&err);
break;
case REP:
compute_the_second_rep(M,&err);
break;
case ADJACENCY:
compute_adjacency(M,&err);
break;
case REDCHECK:
compute_redundancy(M,&err);
break;
default:
fprintf(stderr, "unreachable option %d\n", option);
exit(3); /* unreachable */
}
/* cleanup */
if (option!=REDCHECK) dd_FreeMatrix(M); /* compute_redundancy modifies M and frees M. */
if (err != dd_NoError) {
dd_WriteErrorMessages(stdout,err);
}
dd_free_global_constants();
return 0;
}