Ignore:
Timestamp:
11/13/06 23:41:00 (18 years ago)
Author:
mattausch
Message:
 
File:
1 edited

Legend:

Unmodified
Added
Removed
  • GTP/trunk/Lib/Vis/Preprocessing/src/ViewCellsManager.cpp

    r1744 r1745  
    60556055 
    60566056                        ofstream ofstr(filename.c_str()); 
    6057                         mHierarchyManager->EvaluateSubdivision2(ofstr, splitsStepSize); 
     6057                        mHierarchyManager->EvaluateSubdivision2(ofstr, splitsStepSize, false); 
    60586058 
    60596059                        timeDiff = TimeDiff(startTime, GetTime()); 
     
    60626062 
    60636063                        Debug << "statistics computed in " << timeDiff * 1e-3 << " secs" << endl; 
     6064 
     6065#if 0 
     6066                        //////////////////////////// 
     6067                        // filtered stats 
     6068                        sprintf(suffix, "-%09d-eval-filter.log", castSamples); 
     6069                        const string filename2 = string(statsPrefix) + string(suffix); 
     6070 
     6071                        startTime = GetTime(); 
     6072                         
     6073                        cout << "compute new statistics for filtered pvs ... " << endl; 
     6074 
     6075                        ofstream ofstr2(filename2.c_str()); 
     6076                        mHierarchyManager->EvaluateSubdivision2(ofstr2, splitsStepSize, true); 
     6077 
     6078                        timeDiff = TimeDiff(startTime, GetTime()); 
     6079                        cout << "finished in " << timeDiff * 1e-3 << " secs" << endl; 
     6080                        cout << "*************************************" << endl; 
     6081 
     6082                        Debug << "statistics computed in " << timeDiff * 1e-3 << " secs" << endl; 
     6083#endif 
    60646084 
    60656085                        // only for debugging purpose 
Note: See TracChangeset for help on using the changeset viewer.