Skip to content
Snippets Groups Projects
Commit 92d29fb8 authored by Hu Zhao's avatar Hu Zhao
Browse files

fix: change np.float128 to float to avoid issues in windows

parent 85d90919
No related branches found
No related tags found
No related merge requests found
......@@ -10,7 +10,7 @@ from psimpy.utility import check_bounds
_min_float = 10**(sys.float_info.min_10_exp)
_max_float = 10**(sys.float_info.max_10_exp)
_max_e = np.log(np.array(_max_float, dtype=np.float128))
_max_e = np.log(np.array(_max_float, dtype=float))
class BayesInferenceBase(ABC):
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment