aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorShivesh Mandalia <shivesh.mandalia@outlook.com>2020-02-28 19:05:55 +0000
committerShivesh Mandalia <shivesh.mandalia@outlook.com>2020-02-28 19:05:55 +0000
commitefcc7ba1affc226d535f576714169558b8364540 (patch)
tree2b833d5692324050c263dd8e5bb4d101e16efdb1
parent08b7980611d47aa90dc50a18bc02976e670ab720 (diff)
downloadGolemFlavor-efcc7ba1affc226d535f576714169558b8364540.tar.gz
GolemFlavor-efcc7ba1affc226d535f576714169558b8364540.zip
add note about multinest library install
-rw-r--r--README.md4
-rwxr-xr-xmisc/austin.py12
2 files changed, 9 insertions, 7 deletions
diff --git a/README.md b/README.md
index e1ad60b..17aac19 100644
--- a/README.md
+++ b/README.md
@@ -32,7 +32,9 @@ GolemFlavor has the following dependencies:
* [`python-ternary`](https://github.com/marcharper/python-ternary)
* [`GetDist`](https://getdist.readthedocs.io/en/latest/)
-You can use `pip` to install the above automatically.
+You can use `pip` to install the above automatically. Note that `PyMultiNest`
+requires the `MultiNest` Bayesian inference library, see [the `PyMultiNest`
+documentation for install instructions.](https://johannesbuchner.github.io/PyMultiNest/install.html#prerequisites-for-building-the-libraries)
Additional dependencies:
* [`GolemFit`](https://github.com/IceCubeOpenSource/GolemFit)
diff --git a/misc/austin.py b/misc/austin.py
index 726a762..dddab30 100755
--- a/misc/austin.py
+++ b/misc/austin.py
@@ -15,12 +15,12 @@ from functools import partial
import numpy as np
-from utils import fr as fr_utils
-from utils import misc as misc_utils
-from utils import plot as plot_utils
-from utils.enums import str_enum
-from utils.enums import Likelihood, ParamTag, PriorsCateg
-from utils.param import Param, ParamSet
+from golemflavor import fr as fr_utils
+from golemflavor import misc as misc_utils
+from golemflavor import plot as plot_utils
+from golemflavor.enums import str_enum
+from golemflavor.enums import Likelihood, ParamTag, PriorsCateg
+from golemflavor.param import Param, ParamSet
from matplotlib import pyplot as plt