Alec Edgington

Results 21 comments of Alec Edgington

I think returning `atan2(a, a)` would be fine. But, is atan2(y,x) even defined for non-real arguments? I suppose it could be defined as the principal value of the argument of...

Hi, thanks for reporting this. To help us investigate the cause, please could you let us know the pytket version you are using, and attach a python script that produces...

Good question! It's true that the build system currently assumes and depends on conan. If you want to build in a more conventional way, you will have to make a...

@Roland-djee Can we close this PR?

Partially solved by #491 . However, some issues remain. See this comparison of logs showing the results of the eigensolver and the resulting circuits on Linux and MacOS (from #498...

I have also experienced this, building a pybind11 project on MacOS 11.6 with M1 (arm64) architecture and python built locally with pyenv (so no conda or anaconda). It's completely reproducible,...

In my case: ``` alec@Mac-mini pytket % otool -L pytket/_tket/circuit.cpython-38-darwin.so pytket/_tket/circuit.cpython-38-darwin.so: @loader_path/libtket.dylib (compatibility version 0.0.0, current version 0.0.0) /usr/lib/libc++.1.dylib (compatibility version 1.0.0, current version 905.6.0) /usr/lib/libSystem.B.dylib (compatibility version 1.0.0, current...

So I have produced a very minimal example to reproduce this issue: https://github.com/cqc-alec/pybind11-3081 The C++ and binder code is utterly trivial. The build commands are in the `Makefile`, which includes...

I see that the problem is caused by the hard linkage with `libpython3.8.a`. If I omit that, it works! So this is looking very much not like a problem with...