must be a cli opt !

This commit is contained in:
tTh 2023-04-28 23:09:56 +02:00
parent 895e61cbb6
commit 992c98cfa8
1 changed files with 5 additions and 1 deletions

View File

@ -22,6 +22,7 @@ extern int verbosity;
/* --------------------------------------------------------------------- */
#define PSYCHOTIK 1
#define LINE_SZ 666
static BBList *bublist;
@ -149,8 +150,11 @@ if ( pts[0]==pts[1] || pts[0]==pts[2] || pts[2]==pts[1] ) {
for (ix=0; ix<3; ix++) {
a = ix % 3;
b = (ix+1) % 3;
// foo = push_a_missing_edge(edges, pts[a], pts[b]);
#if PSYCHOTIK
foo = push_a_missing_edge(edges, pts[a], pts[b]);
#else
foo = push_an_edge(edges, pts[a], pts[b]);
#endif
if (foo) {
fprintf(stderr, "%s: disaster #%d line %d\n",
__func__, foo, linenumber);