@@ -29,7 +29,7 @@ function newton_solve!(prob::GameProblem{KN,n,m,T,SVd,SVx}) where {KN,n,m,T,SVd,
29
29
Δ = 0.0
30
30
for k = 1 : opts. outer_iter
31
31
out = k
32
- # plot_traj !(model, prob.pdtraj.pr)
32
+ # plot !(model, prob.pdtraj.pr)
33
33
# Initialize regularization and failed line search count.
34
34
set! (opts. reg, opts. reg_0)
35
35
LS_count = 0
67
67
function inner_iteration (prob:: GameProblem , LS_count:: Int , t_elap:: T , Δ:: T , k:: Int , l:: Int ) where {T}
68
68
core = prob. core
69
69
opts = prob. opts
70
- # plot_traj !(prob.model, prob.pdtraj.pr)
70
+ # plot !(prob.model, prob.pdtraj.pr)
71
71
72
72
# Residual
73
73
residual! (prob, prob. pdtraj)
@@ -154,8 +154,8 @@ function ibr_newton_solve!(prob::GameProblem{KN,n,m,T,SVd,SVx};
154
154
i = ibr_opts. ordering[id]
155
155
ibr_newton_solve! (prob, i)
156
156
Δ_change[i] = ! (ibr_opts. Δ_min > maximum (prob. stats. Δ_traj))
157
- ibr_opts. live_plotting && Algames . plot_traj ! (prob. model, prob. pdtraj. pr)
158
- ibr_opts. live_plotting && Algames . plot_violation ! (prob_ibr. stats)
157
+ ibr_opts. live_plotting && plot ! (prob. model, prob. pdtraj. pr)
158
+ ibr_opts. live_plotting && plot ! (prob_ibr. stats)
159
159
end
160
160
residual! (prob, prob. pdtraj)
161
161
res = norm (prob. core. res, 1 )/ length (prob. core. res)
@@ -189,7 +189,7 @@ function ibr_newton_solve!(prob::GameProblem{KN,n,m,T,SVd,SVx}, i::Int) where {K
189
189
Δ = 0.0
190
190
for k = 1 : opts. outer_iter
191
191
out = k
192
- # plot_traj !(model, prob.pdtraj.pr)
192
+ # plot !(model, prob.pdtraj.pr)
193
193
# Initialize regularization and failed line search count.
194
194
set! (opts. reg, opts. reg_0)
195
195
LS_count = 0
@@ -229,7 +229,7 @@ function ibr_inner_iteration(prob::GameProblem, LS_count::Int, t_elap, Δ::T, k:
229
229
opts = prob. opts
230
230
verti_mask = vertical_mask (prob. core, i)
231
231
horiz_mask = horizontal_mask (prob. core, i)
232
- # plot_traj !(prob.model, prob.pdtraj.pr)
232
+ # plot !(prob.model, prob.pdtraj.pr)
233
233
234
234
# Residual
235
235
ibr_residual! (prob, prob. pdtraj, i)
0 commit comments