Skip to content

Commit

Permalink
linewraps
Browse files Browse the repository at this point in the history
  • Loading branch information
cmbant committed Aug 8, 2024
1 parent 2a4afcd commit ee2f216
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
3 changes: 2 additions & 1 deletion soliket/bias/bias.py
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,8 @@ def must_provide(self, **requirements):

def _get_Pk_mm(self):
self.k, self.z, Pk_mm = \
self.provider.get_Pk_grid(var_pair=list(self._var_pairs)[0], nonlinear=self.nonlinear)
self.provider.get_Pk_grid(var_pair=list(self._var_pairs)[0],
nonlinear=self.nonlinear)
return Pk_mm

def get_Pk_gg_grid(self) -> dict:
Expand Down
3 changes: 2 additions & 1 deletion soliket/cash/cash.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,8 @@
from .cash_data import CashCData


# Likelihood for independent Poisson-distributed data (here called Cash-C, see https://arxiv.org/abs/1912.05444)
# Likelihood for independent Poisson-distributed data
# (here called Cash-C, see https://arxiv.org/abs/1912.05444)

class CashCLikelihood(Likelihood):
name: str = "Cash-C"
Expand Down
3 changes: 2 additions & 1 deletion soliket/gaussian/gaussian_data.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,8 @@ class GaussianData:

_fast_chi_squared = _fast_chi_square()

def __init__(self, name, x: Sequence, y: Sequence[float], cov: np.ndarray, ncovsims: Optional[int] = None):
def __init__(self, name, x: Sequence, y: Sequence[float], cov: np.ndarray,
ncovsims: Optional[int] = None):

self.name = str(name)
self.ncovsims = ncovsims
Expand Down

0 comments on commit ee2f216

Please sign in to comment.