Changeset d79e591
- Timestamp:
- May 19, 2010, 2:03:42 PM (15 years ago)
- Children:
- aa36cc
- Parents:
- 0341a9
- Location:
- molecuilder/src
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
molecuilder/src/molecule.cpp
r0341a9 rd79e591 276 276 InBondvector *= BondRescale; // rescale the distance vector to Hydrogen bond length 277 277 FirstOtherAtom->x = TopOrigin->x; // set coordination to origin ... 278 FirstOtherAtom->x = InBondvector; // ... and add distance vector to replacement atom278 FirstOtherAtom->x += InBondvector; // ... and add distance vector to replacement atom 279 279 AllWentWell = AllWentWell && AddAtom(FirstOtherAtom); 280 280 // Log() << Verbose(4) << "Added " << *FirstOtherAtom << " at: "; -
molecuilder/src/molecule_fragmentation.cpp
r0341a9 rd79e591 722 722 // free memory for bond part 723 723 DoLog(1) && (Log() << Verbose(1) << "Freeing bond memory" << endl); 724 delete(FragmentList); // remove bond molecule from memory724 Free(&FragmentList); // remove bond molecule from memory 725 725 Free(&SortIndex); 726 726 } else {
Note:
See TracChangeset
for help on using the changeset viewer.