Closed jcmgray closed 2 years ago
A couple of times I've be caught out (e.g. https://github.com/jcmgray/quimb/issues/130) that the special value for inferring the backend is not backend=None. Might be nice to allow both?
backend=None
If so would just require a simple:
if backend not in ("auto", None): return backend
in parse_backend of contract.py.
parse_backend
contract.py
No objections to making this optional.
A couple of times I've be caught out (e.g. https://github.com/jcmgray/quimb/issues/130) that the special value for inferring the backend is not
backend=None
. Might be nice to allow both?If so would just require a simple:
in
parse_backend
ofcontract.py
.