Ignore:
Timestamp:
03/07/07 16:26:58 (17 years ago)
Author:
mattausch
Message:

using mutationsamples for evaluation

File:
1 edited

Legend:

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

    r2198 r2199  
    163163                "Hierarchy.useTraversalTree", mUseTraversalTree); 
    164164 
    165         // for comparing it with byte - value 
    166         mTermMaxMemory *= (1024.0f * 1024.0f); 
    167  
    168165        Debug << "******** Hierarchy Manager Options ***********" << endl; 
    169166        Debug << "max leaves: " << mTermMaxLeaves << endl; 
     
    182179        Debug << "max avg ray contribution: " << mMaxAvgRayContri << endl; 
    183180 
     181        // for comparing it with byte - value 
     182        mTermMaxMemory *= (1024.0f * 1024.0f); 
    184183 
    185184        switch (mConstructionType) 
     
    415414        double sortTime, evalTime, nodeTime, splitTime, subdTime, planeTime, collectTime, viewCellsTime; 
    416415 
    417         sortTime = mBvHierarchy->mSort2Timer.TotalTime(); 
     416        sortTime = mBvHierarchy->mSortTimer.TotalTime(); 
    418417        evalTime = mBvHierarchy->mEvalTimer.TotalTime(); 
    419418        nodeTime = mBvHierarchy->mNodeTimer.TotalTime(); 
     
    534533        cout << "\n" << ospSteps << " object space partition steps taken" << endl; 
    535534 
    536         // create view space 
     535        PrintTimings(true); 
     536 
     537        /////////////// 
     538        //-- create view space 
    537539        PrepareViewSpaceSubdivision(viewSpaceQueue, sampleRays, objects); 
    538540 
    539541        dirtyList.clear(); 
    540  
    541542        // view space subdivision started 
    542543        mViewSpaceSubdivisionType = mSavedViewSpaceSubdivisionType; 
     
    554555 
    555556                dirtyList.clear(); 
     557                PrintTimings(false); 
    556558        } 
    557559        else 
     
    11751177                        mHierarchyStats.mTotalCost = mBvHierarchy->mTotalCost; 
    11761178                         
    1177  
    11781179                        //mHierarchyStats.mPvsEntries -= mBvHierarchy->mPvsEntries + 1; 
    11791180                        mHierarchyStats.mPvsEntries = mBvHierarchy->CountViewCells(objects); 
Note: See TracChangeset for help on using the changeset viewer.