Ignore:
Timestamp:
Oct 5, 2009, 2:59:11 PM (16 years ago)
Author:
Frederik Heber <heber@…>
Children:
5dda23, 729279, 8afe31
Parents:
7794d8 (diff), 39d983 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the (diff) links above to see all the changes relative to each parent.
Message:

Merge branch 'ConcaveHull' of ssh://stud64d-02/home/metzler/workspace/espack into ConcaveHull

Conflicts:

molecuilder/src/builder.cpp
molecuilder/src/memoryusageobserver.cpp
molecuilder/src/memoryusageobserver.hpp
molecuilder/src/memoryusageobserverunittest.cpp
molecuilder/src/memoryusageobserverunittest.hpp

This conflict arised, because the #19 commit was already pushed to the server, but the commit was later "amended" locally. This is fixed, there were no real overlaps anyway.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • molecuilder/src/builder.cpp

    r7794d8 rbf497f  
    20172017      delete(molecules); // also free's all molecules contained
    20182018      delete(periode);
    2019       return j;
     2019      cout << Verbose(0) <<  "Maximum of allocated memory: "
     2020        << MemoryUsageObserver::getInstance()->getMaximumUsedMemory() << endl;
     2021      cout << Verbose(0) <<  "Remaining non-freed memory: "
     2022        << MemoryUsageObserver::getInstance()->getUsedMemorySize() << endl;
     2023     return j;
    20202024      break;
    20212025    case 1:  // just for -v and -h options
    20222026      delete(molecules); // also free's all molecules contained
    20232027      delete(periode);
     2028      cout << Verbose(0) <<  "Maximum of allocated memory: "
     2029        << MemoryUsageObserver::getInstance()->getMaximumUsedMemory() << endl;
    20242030      cout << Verbose(0) <<  "Remaining non-freed memory: "
    20252031        << MemoryUsageObserver::getInstance()->getUsedMemorySize() << endl;
     
    21232129  delete(periode);
    21242130
     2131  cout << Verbose(0) <<  "Maximum of allocated memory: "
     2132    << MemoryUsageObserver::getInstance()->getMaximumUsedMemory() << endl;
    21252133  cout << Verbose(0) <<  "Remaining non-freed memory: "
    21262134    << MemoryUsageObserver::getInstance()->getUsedMemorySize() << endl;
Note: See TracChangeset for help on using the changeset viewer.