Skip to content
Snippets Groups Projects
Commit 32c38d8d authored by Kipp Cannon's avatar Kipp Cannon Committed by Kipp Cannon
Browse files

HorizonHistories: rename two methods

- functional_integral() --> functional_integral_dict()
- weighted_mean() --> weighted_mean_dict()
parent 28428257
No related branches found
No related tags found
No related merge requests found
......@@ -492,7 +492,7 @@ class HorizonHistories(dict):
# dictionaries
return map(dict, result)
def functional_integral(self, *args, **kwargs):
def functional_integral_dict(self, *args, **kwargs):
"""
Return a dictionary of the result of invoking
.functional_integral() on each of the histories. args and
......@@ -502,7 +502,7 @@ class HorizonHistories(dict):
"""
return dict((key, value.functional_integral(*args, **kwargs)) for key, value in self.items())
def weighted_mean(self, *args, **kwargs):
def weighted_mean_dict(self, *args, **kwargs):
"""
Return a dictionary of the result of invoking
.weighted_mean() on each of the histories. args and kwargs
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment