QuanGuru (pronounced Kangaroo) is a Python library for numerical modelling of quantum systems. It is still under-development, and it consists of tools for numerical simulations of Quantum systems.
The removal of __slots__ = [] from qProtocol(genericProtocol) object in QPro.py appears to have affected/broken multiprocessing.
Note genericProtocol contains __slots__ however, the child class qProtocol(genericProtocol) had not.
This hot fix readds __slots__ = [] under the qProtocol definition
The removal of
__slots__ = []
fromqProtocol(genericProtocol)
object inQPro.py
appears to have affected/broken multiprocessing. NotegenericProtocol
contains__slots__
however, the child classqProtocol(genericProtocol)
had not.This hot fix readds
__slots__ = []
under theqProtocol
definition