Changeset 338

Show
Ignore:
Timestamp:
03/26/08 19:25:46 (8 months ago)
Author:
powell
Message:

Put last printfs in DEBUG #ifdefs.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/matml/src/ternary/qhull.c

    r335 r338  
    8787    to typically be the binaries). +*/ 
    8888  *numfacets = qh num_facets; 
     89#ifdef DEBUG 
    8990  printf ("%d total facets\n", *numfacets); 
    9091  printf ("facetverts: pre-realloc 0x%lx, ", *facetverts); 
     92#endif 
    9193  if (!(*facetverts = realloc (*facetverts, *numfacets * 3 * sizeof (int)))) 
    9294    { printf ("qhullCalcHull: could not reallocate memory for vertices\n"); 
    9395      return -1; } 
     96#ifdef DEBUG 
    9497  printf ("post-realloc 0x%lx\n", *facetverts); 
     98#endif 
    9599 
    96100  i=0;