Skip to content

Commit e98e48c

Browse files
committed
cranking down solver tolerance fixes this issue, but the solver has some odd intermediate behavior in the receding horizon rollout
1 parent 2caab1a commit e98e48c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/solve.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ function TrajectoryGamesBase.solve_trajectory_game!(
55
shared_constraint_premultipliers = ones(num_players(game)),
66
context = Float64[],
77
initial_guess = nothing,
8-
parametric_mcp_solve_options = (;),
8+
parametric_mcp_solve_options = (; tol = 1e-7),
99
)
1010
length(shared_constraint_premultipliers) == num_players(game) ||
1111
throw(ArgumentError("Must provide one constraint multiplier per player"))

0 commit comments

Comments
 (0)