Changeset 8afe31 for molecuilder/src/builder.cpp
- Timestamp:
- Oct 5, 2009, 4:05:53 PM (16 years ago)
- Children:
- 58808e
- Parents:
- e1f6d7 (diff), bf497f (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. - File:
-
- 1 edited
-
molecuilder/src/builder.cpp (modified) (4 diffs, 1 prop)
Legend:
- Unmodified
- Added
- Removed
-
molecuilder/src/builder.cpp
-
Property mode
changed from
100755to100644
re1f6d7 r8afe31 53 53 #include "ellipsoid.hpp" 54 54 #include "helpers.hpp" 55 #include "memoryusageobserverunittest.hpp" 55 56 #include "molecules.hpp" 56 57 /********************************************* Subsubmenu routine ************************************/ … … 1558 1559 delete(Subgraphs); 1559 1560 for (int i=0;i<FragmentCounter;i++) 1560 Free( (void **)&ListOfLocalAtoms[FragmentCounter], "ParseCommandLineOptions: **ListOfLocalAtoms[]");1561 Free( (void **)&ListOfLocalAtoms, "ParseCommandLineOptions: ***ListOfLocalAtoms");1561 Free(&ListOfLocalAtoms[FragmentCounter]); 1562 Free(&ListOfLocalAtoms); 1562 1563 } 1563 1564 delete(BackEdgeStack); … … 2041 2042 delete(molecules); // also free's all molecules contained 2042 2043 delete(periode); 2043 return j; 2044 cout << Verbose(0) << "Maximum of allocated memory: " 2045 << MemoryUsageObserver::getInstance()->getMaximumUsedMemory() << endl; 2046 cout << Verbose(0) << "Remaining non-freed memory: " 2047 << MemoryUsageObserver::getInstance()->getUsedMemorySize() << endl; 2048 return j; 2044 2049 break; 2045 2050 case 1: // just for -v and -h options 2046 2051 delete(molecules); // also free's all molecules contained 2047 2052 delete(periode); 2053 cout << Verbose(0) << "Maximum of allocated memory: " 2054 << MemoryUsageObserver::getInstance()->getMaximumUsedMemory() << endl; 2055 cout << Verbose(0) << "Remaining non-freed memory: " 2056 << MemoryUsageObserver::getInstance()->getUsedMemorySize() << endl; 2048 2057 return 0; 2049 2058 break; … … 2144 2153 delete(molecules); // also free's all molecules contained 2145 2154 delete(periode); 2155 2156 cout << Verbose(0) << "Maximum of allocated memory: " 2157 << MemoryUsageObserver::getInstance()->getMaximumUsedMemory() << endl; 2158 cout << Verbose(0) << "Remaining non-freed memory: " 2159 << MemoryUsageObserver::getInstance()->getUsedMemorySize() << endl; 2160 2146 2161 return (0); 2147 2162 } -
Property mode
changed from
Note:
See TracChangeset
for help on using the changeset viewer.
