Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

General code typo clean-up #103

Merged
merged 5 commits into from
Jan 10, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
:target: https://arxiv.org/abs/1506.00171
:alt: Open-access paper

PolyChord v 1.21.3
PolyChord v 1.21.4

Will Handley, Mike Hobson & Anthony Lasenby

Expand Down
2 changes: 1 addition & 1 deletion pypolychord/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
__version__ = "1.21.3"
__version__ = "1.21.4"
from pypolychord.settings import PolyChordSettings
from pypolychord.polychord import run_polychord
2 changes: 1 addition & 1 deletion pypolychord/output.py
Original file line number Diff line number Diff line change
Expand Up @@ -215,7 +215,7 @@ def _dataframes_for_printing(self):
for paramname in self._samples_table.columns[2:]:
mean = np.mean(np.array( self._samples_table[paramname]) )
std = np.std(np.array( self._samples_table[paramname]) )
stats_dict[paramname] = '%.3E +\- %.3E' % (mean, std)
stats_dict[paramname] = '%.3E +/- %.3E' % (mean, std)

lst.append(pd.Series(stats_dict))
return lst
Expand Down
2 changes: 1 addition & 1 deletion run_pypolychord.py
Original file line number Diff line number Diff line change
Expand Up @@ -74,4 +74,4 @@ def dumper(live, dead, logweights, logZ, logZerr):
except ImportError:
print("Install matplotlib and getdist for plotting examples")

print("Install anesthetic or getdist for for plotting examples")
print("Install anesthetic or getdist for plotting examples")
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ def run(self):
setup(name=NAME,
version=get_version(),
description='Python interface to PolyChord ' + get_version(),
url='https://ccpforge.cse.rl.ac.uk/gf/project/polychord/',
url='https://github.com/PolyChord/PolyChordLite',
author='Will Handley',
author_email='[email protected]',
license='PolyChord',
Expand Down
2 changes: 1 addition & 1 deletion src/polychord/feedback.f90
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ subroutine write_opening_statement(settings)
write(stdout_unit,'("")')
write(stdout_unit,'("PolyChord: Next Generation Nested Sampling")')
write(stdout_unit,'("copyright: Will Handley, Mike Hobson & Anthony Lasenby")')
write(stdout_unit,'(" version: 1.21.3")')
write(stdout_unit,'(" version: 1.21.4")')
write(stdout_unit,'(" release: 9th Jan 2024")')
write(stdout_unit,'(" email: [email protected]")')
write(stdout_unit,'("")')
Expand Down
Loading