File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -39,6 +39,10 @@ function Base.show(io::IO, semfit::SemFit)
3939 # print(io, "Objective value: $(round(semfit.minimum, digits = 4)) \n")
4040 print (io, " ------------- Optimization result ------------- \n " )
4141 print (io, " \n " )
42+ print (io, " engine: " )
43+ print (io, optimizer_engine (semfit))
44+ print (io, " \n " )
45+ print (io, " \n " )
4246 print (io, semfit. optimization_result)
4347end
4448
@@ -58,6 +62,7 @@ model(sem_fit::SemFit) = sem_fit.model
5862optimization_result (sem_fit:: SemFit ) = sem_fit. optimization_result
5963
6064# optimizer properties
65+ optimizer_engine (sem_fit:: SemFit ) = optimizer_engine (optimization_result (sem_fit))
6166optimizer (sem_fit:: SemFit ) = optimizer (optimization_result (sem_fit))
6267n_iterations (sem_fit:: SemFit ) = n_iterations (optimization_result (sem_fit))
6368convergence (sem_fit:: SemFit ) = convergence (optimization_result (sem_fit))
You can’t perform that action at this time.
0 commit comments