Skip to content

Commit

Permalink
cranking down solver tolerance fixes this issue, but the solver has s…
Browse files Browse the repository at this point in the history
…ome odd intermediate behavior in the receding horizon rollout
  • Loading branch information
dfridovi committed Dec 8, 2024
1 parent 2caab1a commit e98e48c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/solve.jl
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ function TrajectoryGamesBase.solve_trajectory_game!(
shared_constraint_premultipliers = ones(num_players(game)),
context = Float64[],
initial_guess = nothing,
parametric_mcp_solve_options = (;),
parametric_mcp_solve_options = (; tol = 1e-7),
)
length(shared_constraint_premultipliers) == num_players(game) ||
throw(ArgumentError("Must provide one constraint multiplier per player"))
Expand Down

0 comments on commit e98e48c

Please sign in to comment.