Skip to content

Commit

Permalink
fix: updating solve_system kwargs
Browse files Browse the repository at this point in the history
  • Loading branch information
lachlangrose committed May 30, 2024
1 parent 614162f commit ccbacff
Showing 1 changed file with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -530,7 +530,10 @@ def build(self, fold=None, fold_weights={}, data_region=None, **kwargs):
logger.info(f'installing equality constraints {self.name}')
self.install_equality_constraints()
logger.info(f'running interpolation for {self.name}')
self.interpolator.solve_system(**kwargs)

self.interpolator.solve_system(
solver=kwargs.get('solver', None), solver_kwargs=kwargs.get('solver_kwargs', {})
)
logger.info(f'Finished building {self.name}')
self._up_to_date = True
return self._feature

0 comments on commit ccbacff

Please sign in to comment.