qpb_inform_type structure#

    struct qpb_inform_type{T}
      status::Int32
      alloc_status::Int32
      bad_alloc::NTuple{81,Cchar}
      iter::Int32
      cg_iter::Int32
      factorization_status::Int32
      factorization_integer::Int64
      factorization_real::Int64
      nfacts::Int32
      nbacts::Int32
      nmods::Int32
      obj::T
      non_negligible_pivot::T
      feasible::Bool
      time::qpb_time_type{T}
      lsqp_inform::lsqp_inform_type{T}
      fdc_inform::fdc_inform_type{T}
      sbls_inform::sbls_inform_type{T}
      gltr_inform::gltr_inform_type{T}
      fit_inform::fit_inform_type

detailed documentation#

inform derived type as a Julia structure

components#

Int32 status

return status. See QPB_solve for details

Int32 alloc_status

the status of the last attempted allocation/deallocation

NTuple{81,Cchar} bad_alloc

the name of the array for which an allocation/deallocation error occurred

Int32 iter

the total number of iterations required

Int32 cg_iter

the total number of conjugate gradient iterations required

Int32 factorization_status

the return status from the factorization

Int64 factorization_integer

the total integer workspace required for the factorization

Int64 factorization_real

the total real workspace required for the factorization

Int32 nfacts

the total number of factorizations performed

Int32 nbacts

the total number of “wasted” function evaluations during the linesearch

Int32 nmods

the total number of factorizations which were modified to ensure that th matrix was an appropriate preconditioner

T obj

the value of the objective function at the best estimate of the solution determined by QPB_solve

T non_negligible_pivot

the smallest pivot which was not judged to be zero when detecting linear dependent constraints

Bool feasible

is the returned “solution” feasible?

struct qpb_time_type time

timings (see above)

struct lsqp_inform_type lsqp_inform

inform parameters for LSQP

struct fdc_inform_type fdc_inform

inform parameters for FDC

struct sbls_inform_type sbls_inform

inform parameters for SBLS

struct gltr_inform_type gltr_inform

return information from GLTR

struct fit_inform_type fit_inform

return information from FIT