Eric Wieser
Eric Wieser
That needn't wait - the switch could be made right now, and a reasonably simple `PyDAQmx.py` containing `from pydaqmx import *` added, assuming `__all__` doesn't interfere with things
> In the dev branch, I modify the `__init__` to add the name without the prefix. Looks good to me!
Since I don't see it mentioned anywhere in this thread, the original example gives `OverflowError: too many digits in integer` in Python 3.8.
> Ultimately I think it would also be awesome to have symbolic geometric algebra since no good library exists for that yet, Just to check, are you aware of the...
It used to live under `sympy.galgebra`, but ended up being kicked out of the main repo due to maintenance and integration issues. Since then, it's picked up @utensil, @hugohadfield, and...
> I see most of the problems of `galgebra` is that the objects are not types of `Basic` that sympy expects to use This is indeed the problem. The main...
> Maybe we should discuss this in a separate issue... @oscarbenjamin: I think #19463 or a related issue has some of the discussion. The crux is that it's very easy...
> We could do the same for dual numbers by introducing a symbol `epsilon` that squares to zero. > the arithmetic can be closed in the DualNumber class. The problem...
I think coalescing is the wrong model, unless we also have some kind of `\noCoalesce` command that ensures things remain as separate elements when desired.
Turns out you can do this as soon as #480 is fixed in #640 ```python import cocotb import pytest import decorator import concurrent.futures import Queue class CocotbExecutor(concurrent.futures.Executor): """ Schedule coroutines...