Skip to content

Commit

Permalink
Merge pull request #52 from JuliaQuantumControl/abstract-optimization…
Browse files Browse the repository at this point in the history
…-result

Make `KrotovResult` an `AbstactOptimizationResult`
  • Loading branch information
goerz authored Sep 16, 2024
2 parents d778ec0 + f5b252b commit 3080439
Showing 1 changed file with 2 additions and 1 deletion.
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

0 comments on commit 3080439

Please sign in to comment.