-
Notifications
You must be signed in to change notification settings - Fork 196
/
user_eg2_r.c
777 lines (690 loc) · 28.3 KB
/
user_eg2_r.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
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
/*<html><pre> -<a href="../libqhull_r/qh-user_r.htm"
>-------------------------------</a><a name="TOP">-</a>
user_eg2_r.c
sample code for calling qhull() from an application.
See user_eg_r.c for a simpler method using qh_new_qhull().
The method used here and in unix_r.c gives you additional
control over Qhull.
For a C++ example, see user_eg3/user_eg3_r.cpp
call with:
user_eg2 "triangulated cube/diamond options" "delaunay options" "halfspace options"
for example:
user_eg2 # return summaries
user_eg2 "n" "o" "Fp" # return normals, OFF, points
user_eg2 "QR0 p" "QR0 v p" "QR0 Fp" # rotate input and return points
# 'v' returns Voronoi
# transform is rotated for halfspaces
main() makes three runs of qhull.
1) compute the convex hull of a cube, and incrementally add a diamond
2a) compute the Delaunay triangulation of random points, and add points.
2b) find the Delaunay triangle closest to a point.
3) compute the halfspace intersection of a diamond, and add a cube
notes:
summaries are sent to stderr if other output formats are used
derived from unix_r.c and compiled by 'make bin/user_eg2'
see libqhull_r.h for data structures, macros, and user-callable functions.
If you want to control all output to stdio and input to stdin,
set the #if below to "1" and delete all lines that contain "io_r.c".
This prevents the loading of io.o. Qhull will
still write to 'qh->ferr' (stderr) for error reporting and tracing.
Defining #if 1, also prevents user.o from being loaded.
*/
#include "libqhull_r/qhull_ra.h"
/*-------------------------------------------------
-internal function prototypes
*/
void print_summary(qhT *qh);
void makecube(coordT *points, int numpoints, int dim);
void adddiamond(qhT *qh, coordT *points, int numpoints, int numnew, int dim);
void makeDelaunay(qhT *qh, coordT *points, int numpoints, int dim);
void addDelaunay(qhT *qh, coordT *points, int numpoints, int numnew, int dim);
void findDelaunay(qhT *qh, int dim);
void makehalf(coordT *points, int numpoints, int dim);
void addhalf(qhT *qh, coordT *points, int numpoints, int numnew, int dim, coordT *feasible);
/*-------------------------------------------------
-print_summary(qh)
*/
void print_summary(qhT *qh) {
facetT *facet;
int k;
printf("\n%d vertices and %d facets with normals:\n",
qh->num_vertices, qh->num_facets);
FORALLfacets {
for (k=0; k < qh->hull_dim; k++)
printf("%6.2g ", facet->normal[k]);
printf("\n");
}
}
/*--------------------------------------------------
-makecube- set points to vertices of cube
points is numpoints X dim
*/
void makecube(coordT *points, int numpoints, int dim) {
int j,k;
coordT *point;
for (j=0; j<numpoints; j++) {
point= points + j*dim;
for (k=dim; k--; ) {
if (j & ( 1 << k))
point[k]= 1.0;
else
point[k]= -1.0;
}
}
} /*.makecube.*/
/*--------------------------------------------------
-adddiamond- add diamond to convex hull
points is numpoints+numnew X dim.
notes:
qh_addpoint() does not make a copy of the point coordinates.
For inside points and some outside points, qh_findbestfacet performs
an exhaustive search for a visible facet. Algorithms that retain
previously constructed hulls should be faster for on-line construction
of the convex hull.
*/
void adddiamond(qhT *qh, coordT *points, int numpoints, int numnew, int dim) {
int j,k;
coordT *point;
facetT *facet;
boolT isoutside;
realT bestdist;
if (qh->JOGGLEmax < REALmax/2 && !qh->PREmerge)
qh_fprintf(qh, qh->ferr, 7096, "qhull warning (user_eg2/adddiamond): joggle 'QJ' is enabled. Output is simplicial (i.e., triangles in 2-D)\n");
for (j=0; j < numnew ; j++) {
point= points + (numpoints+j)*dim;
if (points == qh->first_point) /* in case of 'QRn' */
qh->num_points= numpoints+j+1;
/* qh.num_points sets the size of the points array. You may
allocate the points elsewhere. If so, qh_addpoint records
the point's address in qh->other_points
*/
for (k=dim; k--; ) {
if (j/2 == k)
point[k]= (j & 1) ? 2.0 : -2.0;
else
point[k]= 0.0;
}
facet= qh_findbestfacet(qh, point, !qh_ALL, &bestdist, &isoutside);
if (isoutside) {
if (!qh_addpoint(qh, point, facet, False))
break; /* user requested an early exit with 'TVn' or 'TCn' */
}
printf("%d vertices and %d facets\n",
qh->num_vertices, qh->num_facets);
/* qh_produce_output(); */
}
if (qh->DOcheckmax)
qh_check_maxout(qh);
else if (qh->KEEPnearinside)
qh_nearcoplanar(qh);
} /*.adddiamond.*/
/*--------------------------------------------------
-makeDelaunay- set points for dim-1 Delaunay triangulation of random points
points is numpoints X dim. Each point is projected to a paraboloid.
*/
void makeDelaunay(qhT *qh, coordT *points, int numpoints, int dim) {
int j,k, seed;
coordT *point, realr;
seed= (int)time(NULL); /* time_t to int */
printf("seed: %d\n", seed);
qh_RANDOMseed_(qh, seed);
for (j=0; j<numpoints; j++) {
point= points + j*dim;
for (k=0; k < dim-1; k++) {
realr= qh_RANDOMint;
point[k]= 2.0 * realr/(qh_RANDOMmax+1) - 1.0;
}
}
qh_setdelaunay(qh, dim, numpoints, points);
} /*.makeDelaunay.*/
/*--------------------------------------------------
-addDelaunay- add points to dim-1 Delaunay triangulation
points is numpoints+numnew X dim. Each point is projected to a paraboloid.
notes:
qh_addpoint() does not make a copy of the point coordinates.
Since qh_addpoint() is not given a visible facet, it performs a directed
search of all facets. Algorithms that retain previously
constructed hulls may be faster.
*/
void addDelaunay(qhT *qh, coordT *points, int numpoints, int numnew, int dim) {
int j,k;
coordT *point, realr;
facetT *facet;
realT bestdist;
boolT isoutside;
if (qh->JOGGLEmax < REALmax/2 && !qh->PREmerge)
qh_fprintf(qh, qh->ferr, 7097, "qhull warning (user_eg2/addDelaunay): joggle 'QJ' is enabled. Output is simplicial (i.e., triangles in 2-D)\n");
for (j=0; j < numnew ; j++) {
point= points + (numpoints+j)*dim;
if (points == qh->first_point) /* in case of 'QRn' */
qh->num_points= numpoints+j+1;
/* qh.num_points sets the size of the points array. You may
allocate the point elsewhere. If so, qh_addpoint records
the point's address in qh->other_points
*/
for (k=0; k < dim-1; k++) {
realr= qh_RANDOMint;
point[k]= 2.0 * realr/(qh_RANDOMmax+1) - 1.0;
}
qh_setdelaunay(qh, dim, 1, point);
facet= qh_findbestfacet(qh, point, !qh_ALL, &bestdist, &isoutside);
if (isoutside) {
if (!qh_addpoint(qh, point, facet, False))
break; /* user requested an early exit with 'TVn' or 'TCn' */
}
qh_printpoint(qh, stdout, "added point", point);
printf("%d points, %d extra points, %d vertices, and %d facets in total\n",
qh->num_points, qh_setsize(qh, qh->other_points),
qh->num_vertices, qh->num_facets);
/* qh_produce_output(qh); */
}
if (qh->DOcheckmax)
qh_check_maxout(qh);
else if (qh->KEEPnearinside)
qh_nearcoplanar(qh);
} /*.addDelaunay.*/
/*--------------------------------------------------
-findDelaunay- find Delaunay triangle or adjacent triangle for [0.5,0.5,...]
assumes dim < 100
notes:
See <a href="../../html/qh-code.htm#findfacet">locate a facet with qh_findbestfacet()</a>
calls qh_setdelaunay() to project the point to a parabaloid
warning:
Errors if it finds a tricoplanar facet ('Qt'). The corresponding Delaunay triangle
is in the set of tricoplanar facets or one of their neighbors. This search
is not implemented here.
*/
void findDelaunay(qhT *qh, int dim) {
int k;
coordT point[ 100];
boolT isoutside;
realT bestdist;
facetT *facet;
vertexT *vertex, **vertexp;
for (k=0; k < dim-1; k++)
point[k]= 0.5;
qh_setdelaunay(qh, dim, 1, point);
facet= qh_findbestfacet(qh, point, qh_ALL, &bestdist, &isoutside);
if (facet->tricoplanar) {
fprintf(stderr, "findDelaunay: search not implemented for triangulated, non-simplicial Delaunay regions (tricoplanar facet, f%d).\n",
facet->id);
qh_errexit(qh, qh_ERRqhull, facet, NULL);
}
FOREACHvertex_(facet->vertices) {
for (k=0; k < dim-1; k++)
printf("%5.2f ", vertex->point[k]);
printf("\n");
}
} /*.findDelaunay.*/
/*--------------------------------------------------
-makehalf- set points to halfspaces for a (dim)-d diamond
points is numpoints X dim+1
each halfspace consists of dim coefficients followed by an offset
*/
void makehalf(coordT *points, int numpoints, int dim) {
int j,k;
coordT *point;
for (j=0; j<numpoints; j++) {
point= points + j*(dim+1);
point[dim]= -1.0; /* offset */
for (k=dim; k--; ) {
if (j & ( 1 << k))
point[k]= 1.0;
else
point[k]= -1.0;
}
}
} /*.makehalf.*/
/*--------------------------------------------------
-addhalf- add halfspaces for a (dim)-d cube to the intersection
points is numpoints+numnew X dim+1
notes:
assumes dim < 100.
For makehalf(), points is the initial set of halfspaces with offsets.
It is transformed by qh_sethalfspace_all into a
(dim)-d set of newpoints. Qhull computed the convex hull of newpoints -
this is equivalent to the halfspace intersection of the
original halfspaces.
For addhalf(), the remainder of points stores the transforms of
the added halfspaces. Qhull computes the convex hull of newpoints
and the added points. qh_addpoint() does not make a copy of these points.
Since halfspace intersection is equivalent to a convex hull,
qh_findbestfacet may perform an exhaustive search
for a visible facet. Algorithms that retain previously constructed
intersections should be faster for on-line construction.
*/
void addhalf(qhT *qh, coordT *points, int numpoints, int numnew, int dim, coordT *feasible) {
int j,k;
coordT *point, normal[100], offset, *next;
facetT *facet;
boolT isoutside;
realT bestdist;
if (qh->JOGGLEmax < REALmax/2 && !qh->PREmerge)
qh_fprintf(qh, qh->ferr, 7098, "qhull warning (user_eg2/addhalf): joggle 'QJ' is enabled. Output is simplicial (i.e., triangles in 2-D)\n");
for (j=0; j < numnew ; j++) {
offset= -1.0;
for (k=dim; k--; ) {
if (j/2 == k) {
normal[k]= sqrt((coordT)dim); /* to normalize as in makehalf */
if (j & 1)
normal[k]= -normal[k];
}else
normal[k]= 0.0;
}
point= points + (numpoints+j)* (dim+1); /* does not use point[dim] */
qh_sethalfspace(qh, dim, point, &next, normal, &offset, feasible);
facet= qh_findbestfacet(qh, point, !qh_ALL, &bestdist, &isoutside);
if (isoutside) {
if (!qh_addpoint(qh, point, facet, False))
break; /* user requested an early exit with 'TVn' or 'TCn' */
}
qh_printpoint(qh, stdout, "added offset -1 and normal", normal);
printf("%d points, %d extra points, %d vertices, and %d facets in total\n",
qh->num_points, qh_setsize(qh, qh->other_points),
qh->num_vertices, qh->num_facets);
/* qh_produce_output(qh); */
}
if (qh->DOcheckmax)
qh_check_maxout(qh);
else if (qh->KEEPnearinside)
qh_nearcoplanar(qh);
} /*.addhalf.*/
#define DIM 3 /* dimension of points, must be < 31 for SIZEcube */
#define SIZEcube (1<<DIM)
#define SIZEdiamond (2*DIM)
#define TOTpoints (SIZEcube + SIZEdiamond)
/*--------------------------------------------------
-main- Similar to unix_r.c, the main program for qhull
see program header
this contains three runs of Qhull for convex hull, Delaunay
triangulation or Voronoi vertices, and halfspace intersection
*/
int main(int argc, char *argv[]) {
boolT ismalloc;
int curlong, totlong, exitcode; /* used if !qh_NOmem */
char options [2000];
qhT qh_qh;
qhT *qh= &qh_qh; /* Alternatively -- qhT *qh= (qhT *)malloc(sizeof(qhT)) */
QHULL_LIB_CHECK
printf("\n========\nuser_eg2 'cube qhull options' 'Delaunay options' 'halfspace options'\n\
\n\
This is the output from user_eg2_r.c. It shows how qhull() may be called from\n\
an application, via Qhull's static, reentrant library. user_eg2 is not part\n\
of Qhull itself. If user_eg2 fails immediately, user_eg2_r.c was incorrectly\n\
linked to Qhull's non-reentrant library, libqhullstatic.\n\
Try -- user_eg2 'T1' 'T1' 'T1'\n\
\n");
ismalloc= False; /* True if qh_freeqhull should 'free(array)' */
/*
Run 1: convex hull
*/
qh_init_A(qh, stdin, stdout, stderr, 0, NULL);
exitcode= setjmp(qh->errexit);
if (!exitcode) {
coordT array[TOTpoints][DIM];
qh->NOerrexit= False;
strcat(qh->rbox_command, "user_eg2 cube example");
sprintf(options, "qhull s Tcv Q11 %s ", argc >= 2 ? argv[1] : "");
qh_initflags(qh, options);
printf( "\n========\ncompute triangulated convex hull of cube after rotating input\n");
makecube(array[0], SIZEcube, DIM);
fflush(NULL);
qh_init_B(qh, array[0], SIZEcube, DIM, ismalloc);
qh_qhull(qh);
qh_check_output(qh);
qh_triangulate(qh); /* requires option 'Q11' if want to add points */
print_summary(qh);
if (qh->VERIFYoutput && !qh->FORCEoutput && !qh->STOPadd && !qh->STOPcone && !qh->STOPpoint)
qh_check_points(qh);
fflush(NULL);
printf( "\nadd points in a diamond\n");
adddiamond(qh, array[0], SIZEcube, SIZEdiamond, DIM);
qh_check_output(qh);
print_summary(qh);
qh_produce_output(qh); /* delete this line to help avoid io_r.c */
if (qh->VERIFYoutput && !qh->FORCEoutput && !qh->STOPadd && !qh->STOPcone && !qh->STOPpoint)
qh_check_points(qh);
fflush(NULL);
}
qh->NOerrexit= True;
#ifdef qh_NOmem
qh_freeqhull(qh, qh_ALL);
#else
qh_freeqhull(qh, !qh_ALL);
qh_memfreeshort(qh, &curlong, &totlong);
if (curlong || totlong)
fprintf(stderr, "qhull warning (user_eg2, run 1): did not free %d bytes of long memory (%d pieces)\n",
totlong, curlong);
#endif
/*
Run 2: Delaunay triangulation
*/
qh_init_A(qh, stdin, stdout, stderr, 0, NULL);
exitcode= setjmp(qh->errexit);
if (!exitcode) {
coordT array[TOTpoints][DIM];
qh->NOerrexit= False;
strcat(qh->rbox_command, "user_eg2 Delaunay example");
sprintf(options, "qhull s d Tcv %s", argc >= 3 ? argv[2] : "");
qh_initflags(qh, options);
printf( "\n========\ncompute %d-d Delaunay triangulation\n", DIM-1);
makeDelaunay(qh, array[0], SIZEcube, DIM);
/* Instead of makeDelaunay with qh_setdelaunay, you may
produce a 2-d array of points, set DIM to 2, and set
qh->PROJECTdelaunay to True. qh_init_B will call
qh_projectinput to project the points to the paraboloid
and add a point "at-infinity".
*/
qh_init_B(qh, array[0], SIZEcube, DIM, ismalloc);
qh_qhull(qh);
/* If you want Voronoi ('v') without qh_produce_output(), call
qh_setvoronoi_all() after qh_qhull() */
qh_check_output(qh);
print_summary(qh);
qh_produce_output(qh); /* delete this line to help avoid io_r.c */
if (qh->VERIFYoutput && !qh->FORCEoutput && !qh->STOPadd && !qh->STOPcone && !qh->STOPpoint)
qh_check_points(qh);
fflush(NULL);
printf( "\n========\nadd points to triangulation\n");
addDelaunay(qh, array[0], SIZEcube, SIZEdiamond, DIM);
qh_check_output(qh);
printf("\nfind Delaunay triangle or adjacent triangle closest to [0.5, 0.5, ...]\n");
findDelaunay(qh, DIM);
qh_produce_output(qh); /* delete this line to help avoid io_r.c */
if (qh->VERIFYoutput && !qh->FORCEoutput && !qh->STOPadd && !qh->STOPcone && !qh->STOPpoint)
qh_check_points(qh);
fflush(NULL);
}
qh->NOerrexit= True;
#ifdef qh_NOmem
qh_freeqhull(qh, qh_ALL);
#else
qh_freeqhull(qh, !qh_ALL);
qh_memfreeshort(qh, &curlong, &totlong);
if (curlong || totlong)
fprintf(stderr, "qhull warning (user_eg2, run 2): did not free %d bytes of long memory (%d pieces)\n",
totlong, curlong);
#endif
/*
Run 3: halfspace intersection
*/
qh_init_A(qh, stdin, stdout, stderr, 0, NULL);
exitcode= setjmp(qh->errexit);
if (!exitcode) {
coordT array[TOTpoints][DIM+1]; /* +1 for halfspace offset */
pointT *points;
qh->NOerrexit= False;
strcat(qh->rbox_command, "user_eg2 halfspace example");
sprintf(options, "qhull H0 s Tcv %s", argc >= 4 ? argv[3] : "");
qh_initflags(qh, options);
printf( "\n========\ncompute halfspace intersection about the origin for a diamond\n");
makehalf(array[0], SIZEcube, DIM);
qh_setfeasible(qh, DIM); /* from io_r.c, sets qh->feasible_point from 'Hn,n' */
/* you may malloc and set qh->feasible_point directly. It is only used for
option 'Fp' */
points= qh_sethalfspace_all(qh, DIM+1, SIZEcube, array[0], qh->feasible_point);
qh_init_B(qh, points, SIZEcube, DIM, True); /* qh_freeqhull frees points */
qh_qhull(qh);
fflush(NULL);
qh_check_output(qh);
qh_produce_output(qh); /* delete this line to help avoid io_r.c */
if (qh->VERIFYoutput && !qh->FORCEoutput && !qh->STOPadd && !qh->STOPcone && !qh->STOPpoint)
qh_check_points(qh);
fflush(NULL);
printf( "\n========\nadd halfspaces for cube to intersection\n");
addhalf(qh, array[0], SIZEcube, SIZEdiamond, DIM, qh->feasible_point);
qh_check_output(qh);
qh_produce_output(qh); /* delete this line to help avoid io_r.c */
if (qh->VERIFYoutput && !qh->FORCEoutput && !qh->STOPadd && !qh->STOPcone && !qh->STOPpoint)
qh_check_points(qh);
fflush(NULL);
}
qh->NOerrexit= True;
qh->NOerrexit= True;
#ifdef qh_NOmem
qh_freeqhull(qh, qh_ALL);
#else
qh_freeqhull(qh, !qh_ALL);
qh_memfreeshort(qh, &curlong, &totlong);
if (curlong || totlong)
fprintf(stderr, "qhull warning (user_eg2, run 3): did not free %d bytes of long memory (%d pieces)\n",
totlong, curlong);
#endif
return exitcode;
} /* main */
#if 1 /* use 1 to prevent loading of io.o and user.o */
/*-------------------------------------------
-errexit- return exitcode to system after an error
assumes exitcode non-zero
prints useful information
see qh_errexit2() in libqhull_r.c for 2 facets
*/
void qh_errexit(qhT *qh, int exitcode, facetT *facet, ridgeT *ridge) {
QHULL_UNUSED(facet);
QHULL_UNUSED(ridge);
if (qh->ERREXITcalled) {
fprintf(qh->ferr, "qhull error while handling previous error in qh_errexit. Exit program\n");
exit(1);
}
qh->ERREXITcalled= True;
if (!qh->QHULLfinished)
qh->hulltime= (unsigned)clock() - qh->hulltime;
fprintf(qh->ferr, "\nWhile executing: %s | %s\n", qh->rbox_command, qh->qhull_command);
fprintf(qh->ferr, "Options selected:\n%s\n", qh->qhull_options);
if (qh->furthest_id >= 0) {
fprintf(qh->ferr, "\nLast point added to hull was p%d", qh->furthest_id);
if (zzval_(Ztotmerge))
fprintf(qh->ferr, " Last merge was #%d.", zzval_(Ztotmerge));
if (qh->QHULLfinished)
fprintf(qh->ferr, "\nQhull has finished constructing the hull.");
else if (qh->POSTmerging)
fprintf(qh->ferr, "\nQhull has started post-merging");
fprintf(qh->ferr, "\n\n");
}
if (qh->NOerrexit) {
fprintf(qh->ferr, "qhull error while ending program. Exit program\n");
exit(1);
}
if (!exitcode)
exitcode= qh_ERRqhull;
qh->NOerrexit= True;
longjmp(qh->errexit, exitcode);
} /* errexit */
/*-------------------------------------------
-errprint- prints out the information of the erroneous object
any parameter may be NULL, also prints neighbors and geomview output
*/
void qh_errprint(qhT *qh, const char *string, facetT *atfacet, facetT *otherfacet, ridgeT *atridge, vertexT *atvertex) {
fprintf(qh->ferr, "%s facets f%d f%d ridge r%d vertex v%d\n",
string, getid_(atfacet), getid_(otherfacet), getid_(atridge),
getid_(atvertex));
} /* errprint */
void qh_printfacetlist(qhT *qh, facetT *facetlist, setT *facets, boolT printall) {
facetT *facet, **facetp;
/* remove these calls to help avoid io_r.c */
qh_printbegin(qh, qh->ferr, qh_PRINTfacets, facetlist, facets, printall);/*io_r.c*/
FORALLfacet_(facetlist) /*io_r.c*/
qh_printafacet(qh, qh->ferr, qh_PRINTfacets, facet, printall); /*io_r.c*/
FOREACHfacet_(facets) /*io_r.c*/
qh_printafacet(qh, qh->ferr, qh_PRINTfacets, facet, printall); /*io_r.c*/
qh_printend(qh, qh->ferr, qh_PRINTfacets, facetlist, facets, printall); /*io_r.c*/
FORALLfacet_(facetlist)
fprintf( qh->ferr, "facet f%d\n", facet->id);
} /* printfacetlist */
/* qh_printhelp_degenerate( fp )
prints descriptive message for precision error
notes:
no message if qh_QUICKhelp
*/
void qh_printhelp_degenerate(qhT *qh, FILE *fp) {
if (qh->MERGEexact || qh->PREmerge || qh->JOGGLEmax < REALmax/2)
qh_fprintf(qh, fp, 9368, "\n\
A Qhull error has occurred. Qhull should have corrected the above\n\
precision error. Please send the input and all of the output to\n\
qhull_bug@qhull.org\n");
else if (!qh_QUICKhelp) {
qh_fprintf(qh, fp, 9369, "\n\
Precision problems were detected during construction of the convex hull.\n\
This occurs because convex hull algorithms assume that calculations are\n\
exact, but floating-point arithmetic has roundoff errors.\n\
\n\
To correct for precision problems, do not use 'Q0'. By default, Qhull\n\
selects 'C-0' or 'Qx' and merges non-convex facets. With option 'QJ',\n\
Qhull joggles the input to prevent precision problems. See \"Imprecision\n\
in Qhull\" (qh-impre.htm).\n\
\n\
If you use 'Q0', the output may include\n\
coplanar ridges, concave ridges, and flipped facets. In 4-d and higher,\n\
Qhull may produce a ridge with four neighbors or two facets with the same \n\
vertices. Qhull reports these events when they occur. It stops when a\n\
concave ridge, flipped facet, or duplicate facet occurs.\n");
#if REALfloat
qh_fprintf(qh, fp, 9370, "\
\n\
Qhull is currently using single precision arithmetic. The following\n\
will probably remove the precision problems:\n\
- recompile qhull for realT precision(#define REALfloat 0 in user_r.h).\n");
#endif
if (qh->DELAUNAY && !qh->SCALElast && qh->MAXabs_coord > 1e4)
qh_fprintf(qh, fp, 9371, "\
\n\
When computing the Delaunay triangulation of coordinates > 1.0,\n\
- use 'Qbb' to scale the last coordinate to [0,m] (max previous coordinate)\n");
if (qh->DELAUNAY && !qh->ATinfinity)
qh_fprintf(qh, fp, 9372, "\
When computing the Delaunay triangulation:\n\
- use 'Qz' to add a point at-infinity. This reduces precision problems.\n");
qh_fprintf(qh, fp, 9373, "\
\n\
If you need triangular output:\n\
- use option 'Qt' to triangulate the output\n\
- use option 'QJ' to joggle the input points and remove precision errors\n\
- use option 'Ft'. It triangulates non-simplicial facets with added points.\n\
\n\
If you must use 'Q0',\n\
try one or more of the following options. They can not guarantee an output.\n\
- use 'QbB' to scale the input to a cube.\n\
- use 'Po' to produce output and prevent partitioning for flipped facets\n\
- use 'V0' to set min. distance to visible facet as 0 instead of roundoff\n\
- use 'En' to specify a maximum roundoff error less than %2.2g.\n\
- options 'Qf', 'Qbb', and 'QR0' may also help\n",
qh->DISTround);
qh_fprintf(qh, fp, 9374, "\
\n\
To guarantee simplicial output:\n\
- use option 'Qt' to triangulate the output\n\
- use option 'QJ' to joggle the input points and remove precision errors\n\
- use option 'Ft' to triangulate the output by adding points\n\
- use exact arithmetic (see \"Imprecision in Qhull\", qh-impre.htm)\n\
");
}
} /* printhelp_degenerate */
/* qh_printhelp_narrowhull( minangle )
Warn about a narrow hull
notes:
Alternatively, reduce qh_WARNnarrow in user_r.h
*/
void qh_printhelp_narrowhull(qhT *qh, FILE *fp, realT minangle) {
qh_fprintf(qh, fp, 9375, "qhull precision warning: \n\
The initial hull is narrow (cosine of min. angle is %.16f).\n\
A coplanar point may lead to a wide facet. Options 'QbB' (scale to unit box)\n\
or 'Qbb' (scale last coordinate) may remove this warning. Use 'Pp' to skip\n\
this warning. See 'Limitations' in qh-impre.htm.\n",
-minangle); /* convert from angle between normals to angle between facets */
} /* printhelp_narrowhull */
/* qh_printhelp_singular
prints descriptive message for singular input
*/
void qh_printhelp_singular(qhT *qh, FILE *fp) {
facetT *facet;
vertexT *vertex, **vertexp;
realT min, max, *coord, dist;
int i,k;
qh_fprintf(qh, fp, 9376, "\n\
The input to qhull appears to be less than %d dimensional, or a\n\
computation has overflowed.\n\n\
Qhull could not construct a clearly convex simplex from points:\n",
qh->hull_dim);
qh_printvertexlist(qh, fp, "", qh->facet_list, NULL, qh_ALL);
if (!qh_QUICKhelp)
qh_fprintf(qh, fp, 9377, "\n\
The center point is coplanar with a facet, or a vertex is coplanar\n\
with a neighboring facet. The maximum round off error for\n\
computing distances is %2.2g. The center point, facets and distances\n\
to the center point are as follows:\n\n", qh->DISTround);
qh_printpointid(qh, fp, "center point", qh->hull_dim, qh->interior_point, -1);
qh_fprintf(qh, fp, 9378, "\n");
FORALLfacets {
qh_fprintf(qh, fp, 9379, "facet");
FOREACHvertex_(facet->vertices)
qh_fprintf(qh, fp, 9380, " p%d", qh_pointid(qh, vertex->point));
zinc_(Zdistio);
qh_distplane(qh, qh->interior_point, facet, &dist);
qh_fprintf(qh, fp, 9381, " distance= %4.2g\n", dist);
}
if (!qh_QUICKhelp) {
if (qh->HALFspace)
qh_fprintf(qh, fp, 9382, "\n\
These points are the dual of the given halfspaces. They indicate that\n\
the intersection is degenerate.\n");
qh_fprintf(qh, fp, 9383,"\n\
These points either have a maximum or minimum x-coordinate, or\n\
they maximize the determinant for k coordinates. Trial points\n\
are first selected from points that maximize a coordinate.\n");
if (qh->hull_dim >= qh_INITIALmax)
qh_fprintf(qh, fp, 9384, "\n\
Because of the high dimension, the min x-coordinate and max-coordinate\n\
points are used if the determinant is non-zero. Option 'Qs' will\n\
do a better, though much slower, job. Instead of 'Qs', you can change\n\
the points by randomly rotating the input with 'QR0'.\n");
}
qh_fprintf(qh, fp, 9385, "\nThe min and max coordinates for each dimension are:\n");
for (k=0; k < qh->hull_dim; k++) {
min= REALmax;
max= -REALmax;
for (i=qh->num_points, coord= qh->first_point+k; i--; coord += qh->hull_dim) {
maximize_(max, *coord);
minimize_(min, *coord);
}
qh_fprintf(qh, fp, 9386, " %d: %8.4g %8.4g difference= %4.4g\n", k, min, max, max-min);
}
if (!qh_QUICKhelp) {
qh_fprintf(qh, fp, 9387, "\n\
If the input should be full dimensional, you have several options that\n\
may determine an initial simplex:\n\
- use 'QJ' to joggle the input and make it full dimensional\n\
- use 'QbB' to scale the points to the unit cube\n\
- use 'QR0' to randomly rotate the input for different maximum points\n\
- use 'Qs' to search all points for the initial simplex\n\
- use 'En' to specify a maximum roundoff error less than %2.2g.\n\
- trace execution with 'T3' to see the determinant for each point.\n",
qh->DISTround);
#if REALfloat
qh_fprintf(qh, fp, 9388, "\
- recompile qhull for realT precision(#define REALfloat 0 in libqhull_r.h).\n");
#endif
qh_fprintf(qh, fp, 9389, "\n\
If the input is lower dimensional:\n\
- use 'QJ' to joggle the input and make it full dimensional\n\
- use 'Qbk:0Bk:0' to delete coordinate k from the input. You should\n\
pick the coordinate with the least range. The hull will have the\n\
correct topology.\n\
- determine the flat containing the points, rotate the points\n\
into a coordinate plane, and delete the other coordinates.\n\
- add one or more points to make the input full dimensional.\n\
");
if (qh->DELAUNAY && !qh->ATinfinity)
qh_fprintf(qh, fp, 9390, "\n\n\
This is a Delaunay triangulation and the input is co-circular or co-spherical:\n\
- use 'Qz' to add a point \"at infinity\" (i.e., above the paraboloid)\n\
- or use 'QJ' to joggle the input and avoid co-circular data\n");
}
} /* printhelp_singular */
/*-----------------------------------------
-user_memsizes- allocate up to 10 additional, quick allocation sizes
*/
void qh_user_memsizes(qhT *qh) {
QHULL_UNUSED(qh);
/* qh_memsize(qh, size); */
} /* user_memsizes */
#endif