Skip to content

Commit

Permalink
Merge pull request #359 from vhaasteren/bugfix_358
Browse files Browse the repository at this point in the history
Bugfix for bug #358
  • Loading branch information
AaronDJohnson authored Nov 9, 2023
2 parents c43b503 + 69ac2eb commit a4dd7b6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion enterprise/signals/gp_signals.py
Original file line number Diff line number Diff line change
Expand Up @@ -851,7 +851,7 @@ def solve(self, right, left_array=None, logdet=False):
if right.ndim == 1 and left_array is right:
res = right

rNr, logdet_N = self.Nmat.solve(res, left_array=res, logdet=logdet)
rNr, logdet_N = self.Nmat.solve(res, left_array=res, logdet=True)

MNr = self.MNr(res)
ret = rNr - np.dot(MNr, self.cf(MNr))
Expand Down

0 comments on commit a4dd7b6

Please sign in to comment.