The following bit of code quickly gobbles up all available memory. Maybe I'm missing something but it looks like a memory leak.
from rdkit import Chem
while True:
atom = Chem.Atom(0)
RDKit version: 2019.03.3.
Platform: Ubuntu (release 18.04)
I'm trying to use this code to create pseudoatoms. Is there perhaps any alternative?
The following bit of code quickly gobbles up all available memory. Maybe I'm missing something but it looks like a memory leak.
RDKit version: 2019.03.3.
Platform: Ubuntu (release 18.04)
I'm trying to use this code to create pseudoatoms. Is there perhaps any alternative?