- Timestamp:
- 12/12/13 01:06:00 (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/HeuristicLab.Analysis.AlgorithmBehavior/qhull-2012.1/src/HeuristicLab.qhull/HeuristicLab_qhull.c
r10222 r10224 53 53 boolT ismalloc= False; 54 54 char flags[250]; 55 FILE *outfile= stdout;56 FILE *errfile= std out;55 FILE *outfile= NULL; 56 FILE *errfile= stderr; 57 57 facetT *facet; 58 58 int curlong, totlong; … … 71 71 sprintf (flags, "qhull s Tv Qt FA"); 72 72 73 exitcode = qh_new_qhull (dim, numpoints, data, ismalloc, flags, outfile, errfile);73 exitcode = qh_new_qhull (dim, numpoints, data, ismalloc, flags, outfile, errfile); 74 74 if (!exitcode) { 75 print_summary();75 // print_summary(); 76 76 qh_vertexneighbors(); 77 77 volume = qh totvol; … … 91 91 boolT ismalloc= False; 92 92 char flags[250]; 93 FILE *outfile= stdout;94 FILE *errfile= std out;93 FILE *outfile= NULL; 94 FILE *errfile= stderr; 95 95 facetT *facet; 96 96 int curlong, totlong; … … 117 117 *nrOfFacets = n; 118 118 119 print_summary();119 //print_summary(); 120 120 qh_vertexneighbors(); 121 121
Note: See TracChangeset
for help on using the changeset viewer.