Changes in src/molecule_fragmentation.cpp [35b698:c94eeb]
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/molecule_fragmentation.cpp
r35b698 rc94eeb 22 22 #include "periodentafel.hpp" 23 23 #include "World.hpp" 24 #include "Matrix.hpp" 24 25 25 26 /************************************* Functions for class molecule *********************************/ … … 1709 1710 atom *OtherWalker = NULL; 1710 1711 double * const cell_size = World::getInstance().getDomain(); 1711 double *matrix = ReturnFullMatrixforSymmetric(cell_size); 1712 double *matrix_double = ReturnFullMatrixforSymmetric(cell_size); 1713 Matrix matrix = Matrix(matrix_double); 1714 delete[](matrix_double); 1712 1715 enum Shading *ColorList = NULL; 1713 1716 double tmp; … … 1780 1783 delete(AtomStack); 1781 1784 delete[](ColorList); 1782 delete[](matrix);1783 1785 DoLog(2) && (Log() << Verbose(2) << "End of ScanForPeriodicCorrection." << endl); 1784 1786 };
Note:
See TracChangeset
for help on using the changeset viewer.