From 1a04c5ae8c49afa58093707fdb97f5ac7a81fd65 Mon Sep 17 00:00:00 2001 From: Matthew Pitkin <matthew.pitkin@ligo.org> Date: Tue, 9 Jun 2020 13:14:27 +0100 Subject: [PATCH] base.py: parse inf and pi and np.inf and np.pi when reading prior files --- bilby/core/prior/base.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bilby/core/prior/base.py b/bilby/core/prior/base.py index 802d5f6f1..2091c1f1a 100644 --- a/bilby/core/prior/base.py +++ b/bilby/core/prior/base.py @@ -424,7 +424,7 @@ class Prior(object): val = other_cls.from_repr(vals) else: try: - val = eval(val, dict(), dict(np=np)) + val = eval(val, dict(), dict(np=np, inf=np.inf, pi=np.pi)) except NameError: raise TypeError( "Cannot evaluate prior, " -- GitLab