Skip to content

Commit

Permalink
fix bug in quad problem marginals (#666)
Browse files Browse the repository at this point in the history
Co-authored-by: Dominik Klein <[email protected]>
  • Loading branch information
MUCDK and MUCDK authored Mar 13, 2024
1 parent 647477f commit 6ea9a16
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/moscot/backends/ott/solver.py
Original file line number Diff line number Diff line change
Expand Up @@ -418,7 +418,7 @@ def _prepare(
check_shapes(geom_xx, geom_yy, geom_xy)

self._problem = quadratic_problem.QuadraticProblem(
geom_xx, geom_yy, geom_xy, fused_penalty=fused_penalty, **kwargs
geom_xx, geom_yy, geom_xy, fused_penalty=fused_penalty, a=self._a, b=self._b, **kwargs
)
return self._problem

Expand Down

0 comments on commit 6ea9a16

Please sign in to comment.