Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/AdaptiveRegularization.jl
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ using Stopping, StoppingInterface

using Krylov: Krylov, cg!, cg_lanczos_shift!
using Krylov: CgLanczosShiftWorkspace, CgWorkspace, CglsWorkspace, LsqrWorkspace, krylov_solve!
using LinearAlgebra: LinearAlgebra, Symmetric, mul!, norm
using LinearAlgebra: LinearAlgebra, Symmetric, mul!, norm, /, ⋅
Copy link

Copilot AI Dec 16, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The division operator / should not be imported from LinearAlgebra as it is a base Julia operator available globally. The dot product operator is appropriate to import from LinearAlgebra, but / should be removed from this import list. If the linter is flagging /, it may be a false positive or misconfiguration since / is not part of LinearAlgebra's exports.

Suggested change
using LinearAlgebra: LinearAlgebra, Symmetric, mul!, norm, /,
using LinearAlgebra: LinearAlgebra, Symmetric, mul!, norm,

Copilot uses AI. Check for mistakes.
using LinearOperators: LinearOperators, LinearOperator
using NLPModels:
NLPModels,
Expand Down
Loading