Skip to content

Commit 75f7f15

Browse files
committed
fix "typos"
1 parent d3bac42 commit 75f7f15

1 file changed

Lines changed: 6 additions & 6 deletions

File tree

src/plans/box_plan.jl

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -11,17 +11,17 @@ mutable struct QuasiNewtonLimitedMemoryBoxDirectionUpdate{
1111
TDU <: QuasiNewtonLimitedMemoryDirectionUpdate,
1212
TM <: AbstractManifold,
1313
F <: Real,
14-
THM <: AbstractMatrix,
14+
T_HM <: AbstractMatrix,
1515
V <: AbstractVector,
1616
} <: AbstractQuasiNewtonDirectionUpdate
1717
# this approximates inverse Hessian
1818
qn_du::TDU
1919

2020
# fields for approximating the Hessian
2121
current_scale::F
22-
M_11::THM
23-
M_21::THM
24-
M_22::THM
22+
M_11::T_HM
23+
M_21::T_HM
24+
M_22::T_HM
2525
# buffer for calculating stuff
2626
coords_Sk_X::V
2727
coords_Sk_Y::V
@@ -403,12 +403,12 @@ function bound_direction_tweak!(::ProductManifold, d_out, d, p, p_cp)
403403
return d_out
404404
end
405405

406-
struct GCPFinder{TM <: AbstractManifold, TP, TX, THA, TFU <: AbstractFPFPPUpdater}
406+
struct GCPFinder{TM <: AbstractManifold, TP, TX, T_HA, TFU <: AbstractFPFPPUpdater}
407407
M::TM
408408
p_cp::TP
409409
Y_tmp::TX
410410
d_old::TX
411-
ha::THA
411+
ha::T_HA
412412
fpfpp_updater::TFU
413413
end
414414

0 commit comments

Comments
 (0)