diff options
| -rw-r--r-- | README.md | 4 | ||||
| -rwxr-xr-x | misc/austin.py | 12 |
2 files changed, 9 insertions, 7 deletions
@@ -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 |
