Ignore:
Timestamp:
Oct 5, 2009, 2:35:06 PM (16 years ago)
Author:
Frederik Heber <heber@…>
Children:
bf497f
Parents:
2aea0b (diff), 14db08 (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

File:
1 edited

Legend:

Unmodified
Added
Removed
  • molecuilder/src/builder.cpp

    • Property mode changed from 100755 to 100644
    r2aea0b r7794d8  
    5353#include "ellipsoid.hpp"
    5454#include "helpers.hpp"
     55#include "memoryusageobserverunittest.hpp"
    5556#include "molecules.hpp"
    5657/********************************************* Subsubmenu routine ************************************/
     
    15421543                  delete(Subgraphs);
    15431544                  for (int i=0;i<FragmentCounter;i++)
    1544                     Free((void **)&ListOfLocalAtoms[FragmentCounter], "ParseCommandLineOptions: **ListOfLocalAtoms[]");
    1545                   Free((void **)&ListOfLocalAtoms, "ParseCommandLineOptions: ***ListOfLocalAtoms");
     1545                    Free(&ListOfLocalAtoms[FragmentCounter]);
     1546                  Free(&ListOfLocalAtoms);
    15461547                }
    15471548                delete(BackEdgeStack);
     
    20212022      delete(molecules); // also free's all molecules contained
    20222023      delete(periode);
     2024      cout << Verbose(0) <<  "Remaining non-freed memory: "
     2025        << MemoryUsageObserver::getInstance()->getUsedMemorySize() << endl;
    20232026      return 0;
    20242027      break;
     
    21192122  delete(molecules); // also free's all molecules contained
    21202123  delete(periode);
     2124
     2125  cout << Verbose(0) <<  "Remaining non-freed memory: "
     2126    << MemoryUsageObserver::getInstance()->getUsedMemorySize() << endl;
     2127
    21212128  return (0);
    21222129}
Note: See TracChangeset for help on using the changeset viewer.