Pingchuan Ma
Pingchuan Ma
the issue is fixed by changing `np.int32` to `int` in several places of the codebase. the error is due to the overflow of int32.
The error would occur again when the node size exceeds 64 (which is the precision limit of `int long`).
Thanks for your prompt reply. It looks like the URL does not point to the codebase of Causal Discovery with RL. Nevertheless, I have already changed the place in the...
I guess changing `np.int` to `np.longlong` may be a workaround. but how could I work with larger graphs like `andes`?
It turns out that changing the precision cannot deal with the issue when the node size is higher than 64. ```python Traceback (most recent call last): File "main.py", line 344,...
