Skip to content

Commit

Permalink
See #ANT-958 Rename build_problem parameter for better understanding
Browse files Browse the repository at this point in the history
  • Loading branch information
ianmnz committed Feb 23, 2024
1 parent 8ecaa3d commit 2a26daa
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/andromede/simulation/optimization.py
Original file line number Diff line number Diff line change
Expand Up @@ -678,12 +678,12 @@ def __init__(
name: str,
solver: lp.Solver,
opt_context: OptimizationContext,
opt_strategy: Type[ModelSelectionStrategy] = MergedProblemStrategy,
build_strategy: Type[ModelSelectionStrategy] = MergedProblemStrategy,
) -> None:
self.name = name
self.solver = solver
self.context = opt_context
self.strategy = opt_strategy
self.strategy = build_strategy

self._register_connection_fields_definitions()
self._create_variables()
Expand Down

0 comments on commit 2a26daa

Please sign in to comment.