bgo_inform_type structure#

#include <galahad_bgo.h>

struct bgo_inform_type {
    // components

    ipc_ status;
    ipc_ alloc_status;
    char bad_alloc[81];
    ipc_ f_eval;
    ipc_ g_eval;
    ipc_ h_eval;
    rpc_ obj;
    rpc_ norm_pg;
    struct bgo_time_type time;
    struct ugo_inform_type ugo_inform;
    struct lhs_inform_type lhs_inform;
    struct trb_inform_type trb_inform;
};

detailed documentation#

inform derived type as a C struct

components#

ipc_ status

return status. See BGO_solve for details

ipc_ alloc_status

the status of the last attempted allocation/deallocation

char bad_alloc[81]

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

ipc_ f_eval

the total number of evaluations of the objective function

ipc_ g_eval

the total number of evaluations of the gradient of the objective function

ipc_ h_eval

the total number of evaluations of the Hessian of the objective function

rpc_ obj

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

rpc_ norm_pg

the norm of the projected gradient of the objective function at the best estimate of the solution determined by BGO_solve

struct bgo_time_type time

timings (see above)

struct ugo_inform_type ugo_inform

inform parameters for UGO

struct lhs_inform_type lhs_inform

inform parameters for LHS

struct trb_inform_type trb_inform

inform parameters for TRB