Skip to content

Commit

Permalink
Fix rebase bugs
Browse files Browse the repository at this point in the history
  • Loading branch information
marvinpfoertner committed Aug 26, 2020
1 parent b4cce51 commit bbbefcf
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/probnum/filtsmooth/gaussfiltsmooth/gaussfiltsmooth.py
Original file line number Diff line number Diff line change
Expand Up @@ -184,4 +184,4 @@ def linear_discrete_update(meanest, cpred, data, meascov, measmat, mpred):
ccest = cpred @ measmat.T
mean = mpred + ccest @ np.linalg.solve(covest, data - meanest)
cov = cpred - ccest @ np.linalg.solve(covest.T, ccest.T)
return RandomVariable(distribution=Normal(mean, cov)), covest, ccest, meanest
return Normal(mean, cov), covest, ccest, meanest
2 changes: 1 addition & 1 deletion tests/test_diffeq/test_odefiltsmooth/test_odefiltsmooth.py
Original file line number Diff line number Diff line change
Expand Up @@ -478,7 +478,7 @@ class TestPreconditioning(unittest.TestCase):
"""

def setUp(self):
initdist = RandomVariable(distribution=Dirac(20 * np.ones(2)))
initdist = Dirac(20 * np.ones(2))
self.ivp = ode.lotkavolterra([0.0, 1e-4], initdist)
self.step = 1e-5
self.prior = "ibm3"
Expand Down

0 comments on commit bbbefcf

Please sign in to comment.