Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
12/12/13 01:06:00 (11 years ago)
Author:
ascheibe
Message:

#1886

  • added more performance tests
  • tried to mute qhull
File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/HeuristicLab.Analysis.AlgorithmBehavior/qhull-2012.1/src/HeuristicLab.qhull/HeuristicLab_qhull.c

    r10222 r10224  
    5353  boolT ismalloc= False;   
    5454  char flags[250];       
    55   FILE *outfile= stdout;   
    56   FILE *errfile= stdout;   
     55  FILE *outfile= NULL;   
     56  FILE *errfile= stderr;   
    5757  facetT *facet;           
    5858  int curlong, totlong;   
     
    7171  sprintf (flags, "qhull s Tv Qt FA");
    7272
    73   exitcode= qh_new_qhull (dim, numpoints, data, ismalloc, flags, outfile, errfile);
     73  exitcode = qh_new_qhull (dim, numpoints, data, ismalloc, flags, outfile, errfile);
    7474  if (!exitcode) {                     
    75     print_summary(); 
     75   // print_summary(); 
    7676    qh_vertexneighbors();
    7777    volume = qh totvol;
     
    9191  boolT ismalloc= False;   
    9292  char flags[250];       
    93   FILE *outfile= stdout;   
    94   FILE *errfile= stdout;   
     93  FILE *outfile= NULL;   
     94  FILE *errfile= stderr;   
    9595  facetT *facet;           
    9696  int curlong, totlong;   
     
    117117    *nrOfFacets = n;
    118118
    119     print_summary();
     119    //print_summary();
    120120    qh_vertexneighbors();
    121121
Note: See TracChangeset for help on using the changeset viewer.