Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Make KrotovResult an AbstactOptimizationResult #52

Merged
merged 1 commit into from
Sep 16, 2024
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
3 changes: 2 additions & 1 deletion src/result.jl
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
using QuantumControl.QuantumPropagators.Controls: get_controls, discretize
using QuantumControl: AbstractOptimizationResult
using Printf
using Dates

Expand Down Expand Up @@ -30,7 +31,7 @@ The attributes of a `KrotovResult` object include
All of the above attributes may be referenced in a `check_convergence` function
passed to [`optimize(problem; method=Krotov)`](@ref QuantumControl.optimize(::ControlProblem, ::Val{:Krotov}))
"""
mutable struct KrotovResult{STST}
mutable struct KrotovResult{STST} <: AbstractOptimizationResult
tlist::Vector{Float64}
iter_start::Int64 # the starting iteration number
iter_stop::Int64 # the maximum iteration number
Expand Down