antoscha
antoscha
In the case if it's not possible please consider using [this method](https://doi.org/10.1016/j.physa.2019.123873) as an appropriate fallback for an american option.
No way. Live market data have its price, it's a common rule and exchanges' requirement. 30-min delayed quotes is the best you can hope to get for free.
Probably, you're aware of this project, but I'm leaving it here just for reference: https://github.com/hfp/libxsmm
Ошибка присутствует. Вероятно, лечится корректной компиляцией программы, так что просьба к разработчикам ее описать.
Open MPI has the same problem, `export MPI4PY_RC_RECV_MPROBE=0` doesn't help.
...while MPICH 4.1.2 works flawlessly.
``` from asyncio import run, get_event_loop from mpi4py.futures import MPIPoolExecutor async def main() -> None: executor = MPIPoolExecutor(2) await get_event_loop().run_in_executor(executor, lambda: 0) if __name__ == '__main__': run(main()) ``` Open MPI...
Maybe it's worth to report the regression to the Open MPI project? But I don't know what exactly is to be reported...
The function is still not working
The information I have is the function apparently generates one concrete cycle infinitely. A simple workaround I used for a directed graph: ``` def find_cycles(graph: DiGraph) -> list[tuple[str, ...]]: cycles:...