#include "qs_config.h"
#include "float128_iqsutil.h"
#include "float128_lpdata.h"
#include "float128_lpdefs.h"
#include "float128_simplex.h"
#include "float128_price.h"
#include "float128_qstruct.h"
#include "float128_qsopt.h"
#include "float128_lib.h"
#include "float128_mps.h"
#include "float128_lp.h"
Include dependency graph for float128_qsopt.c:

Go to the source code of this file.
Functions | |
| static void | float128_check_pointer (void *p, const char *fct, const char *param) |
| static int | float128_check_qsdata_pointer (float128_QSdata *p) |
| static int | float128_formatIsMps (const char *filetype, int *isMps) |
| static void | float128_free_cache (float128_QSdata *p) |
| static int | float128_grab_basis (float128_QSdata *p) |
| int | float128_grab_cache (float128_QSdata *p, int status) |
| static int | float128_illbasis_to_qsbasis (float128_ILLlp_basis *B, QSbasis *qB) |
| static void | float128_init_basis (QSbasis *B) |
| static int | float128_opt_work (float128_QSdata *p, int *status, int primal_or_dual) |
| float128_QSLIB_INTERFACE int | float128_QSadd_col (float128_QSdata *p, int cnt, int *cmatind, float128 *cmatval, float128 obj, float128 lower, float128 upper, const char *name) |
| float128_QSLIB_INTERFACE int | float128_QSadd_cols (float128_QSdata *p, int num, int *cmatcnt, int *cmatbeg, int *cmatind, float128 *cmatval, float128 *obj, float128 *lower, float128 *upper, const char **names) |
| float128_QSLIB_INTERFACE int | float128_QSadd_ranged_row (float128_QSdata *p, int cnt, int *rmatind, const float128 *rmatval, const float128 *rhs, int sense, const float128 *range, const char *name) |
| float128_QSLIB_INTERFACE int | float128_QSadd_ranged_rows (float128_QSdata *p, int num, int *rmatcnt, int *rmatbeg, int *rmatind, const float128 *rmatval, const float128 *rhs, char *sense, const float128 *range, const char **names) |
| float128_QSLIB_INTERFACE int | float128_QSadd_row (float128_QSdata *p, int cnt, int *rmatind, const float128 *rmatval, const float128 *rhs, int sense, const char *name) |
| float128_QSLIB_INTERFACE int | float128_QSadd_rows (float128_QSdata *p, int num, int *rmatcnt, int *rmatbeg, int *rmatind, const float128 *rmatval, const float128 *rhs, char *sense, const char **names) |
| static int | float128_qsbasis_to_illbasis (QSbasis *qB, float128_ILLlp_basis *B) |
| float128_QSLIB_INTERFACE int | float128_QSchange_bound (float128_QSdata *p, int indx, int lu, const float128 bound) |
| float128_QSLIB_INTERFACE int | float128_QSchange_bounds (float128_QSdata *p, int num, int *collist, char *lu, const float128 *bounds) |
| float128_QSLIB_INTERFACE int | float128_QSchange_coef (float128_QSdata *p, int rowindex, int colindex, float128 coef) |
| float128_QSLIB_INTERFACE int | float128_QSchange_objcoef (float128_QSdata *p, int indx, float128 coef) |
| float128_QSLIB_INTERFACE int | float128_QSchange_objsense (float128_QSdata *p, int newsense) |
| float128_QSLIB_INTERFACE int | float128_QSchange_range (float128_QSdata *p, int rowindex, float128 range) |
| float128_QSLIB_INTERFACE int | float128_QSchange_rhscoef (float128_QSdata *p, int indx, float128 coef) |
| float128_QSLIB_INTERFACE int | float128_QSchange_sense (float128_QSdata *p, int rowindex, int sense) |
| float128_QSLIB_INTERFACE int | float128_QSchange_senses (float128_QSdata *p, int num, int *rowlist, char *sense) |
| float128_QSLIB_INTERFACE int | float128_QScompute_row_norms (float128_QSdata *p) |
| float128_QSLIB_INTERFACE float128_QSdata * | float128_QScopy_prob (float128_QSdata *p, const char *newname) |
| float128_QSLIB_INTERFACE float128_QSdata * | float128_QScreate_prob (const char *name, int objsense) |
| float128_QSLIB_INTERFACE int | float128_QSdelete_col (float128_QSdata *p, int colindex) |
| float128_QSLIB_INTERFACE int | float128_QSdelete_cols (float128_QSdata *p, int num, int *dellist) |
| float128_QSLIB_INTERFACE int | float128_QSdelete_named_column (float128_QSdata *p, const char *colname) |
| float128_QSLIB_INTERFACE int | float128_QSdelete_named_columns_list (float128_QSdata *p, int num, const char **colnames) |
| float128_QSLIB_INTERFACE int | float128_QSdelete_named_row (float128_QSdata *p, const char *rowname) |
| float128_QSLIB_INTERFACE int | float128_QSdelete_named_rows_list (float128_QSdata *p, int num, const char **rownames) |
| float128_QSLIB_INTERFACE int | float128_QSdelete_row (float128_QSdata *p, int rowindex) |
| float128_QSLIB_INTERFACE int | float128_QSdelete_rows (float128_QSdata *p, int num, int *dellist) |
| float128_QSLIB_INTERFACE int | float128_QSdelete_setcols (float128_QSdata *p, int *flags) |
| float128_QSLIB_INTERFACE int | float128_QSdelete_setrows (float128_QSdata *p, int *flags) |
| float128_QSLIB_INTERFACE void | float128_QSerror_collector_free (float128_QSerror_collector c) |
| float128_QSLIB_INTERFACE float128_QSerror_collector | float128_QSerror_collector_new (void *fct, void *dest) |
| float128_QSLIB_INTERFACE const char * | float128_QSerror_get_desc (float128_QSformat_error error) |
| float128_QSLIB_INTERFACE const char * | float128_QSerror_get_line (float128_QSformat_error error) |
| float128_QSLIB_INTERFACE int | float128_QSerror_get_line_number (float128_QSformat_error error) |
| float128_QSLIB_INTERFACE int | float128_QSerror_get_pos (float128_QSformat_error error) |
| float128_QSLIB_INTERFACE int | float128_QSerror_get_type (float128_QSformat_error error) |
| float128_QSLIB_INTERFACE float128_QSerror_collector | float128_QSerror_memory_collector_new (float128_QSerror_memory mem) |
| float128_QSLIB_INTERFACE float128_QSerror_memory | float128_QSerror_memory_create (int takeErrorLines) |
| float128_QSLIB_INTERFACE void | float128_QSerror_memory_free (float128_QSerror_memory mem) |
| float128_QSLIB_INTERFACE float128_QSformat_error | float128_QSerror_memory_get_last_error (float128_QSerror_memory mem) |
| float128_QSLIB_INTERFACE int | float128_QSerror_memory_get_nerrors (float128_QSerror_memory mem) |
| float128_QSLIB_INTERFACE int | float128_QSerror_memory_get_nof (float128_QSerror_memory mem, int type) |
| float128_QSLIB_INTERFACE float128_QSformat_error | float128_QSerror_memory_get_prev_error (float128_QSformat_error e) |
| float128_QSLIB_INTERFACE void | float128_QSerror_print (FILE *f, float128_QSformat_error error) |
| float128_QSLIB_INTERFACE const char * | float128_QSformat_error_type_string (int tp) |
| float128_QSLIB_INTERFACE void | float128_QSfree (void *ptr) |
| float128_QSLIB_INTERFACE void | float128_QSfree_basis (QSbasis *B) |
| float128_QSLIB_INTERFACE void | float128_QSfree_prob (float128_QSdata *p) |
| float128_QSLIB_INTERFACE QSbasis * | float128_QSget_basis (float128_QSdata *p) |
| float128_QSLIB_INTERFACE int | float128_QSget_basis_and_row_norms_array (float128_QSdata *p, char *cstat, char *rstat, float128 *rownorms) |
| float128_QSLIB_INTERFACE int | float128_QSget_basis_array (float128_QSdata *p, char *cstat, char *rstat) |
| float128_QSLIB_INTERFACE int | float128_QSget_basis_order (float128_QSdata *p, int *basorder) |
| float128_QSLIB_INTERFACE int | float128_QSget_binv_row (float128_QSdata *p, int indx, float128 *binvrow) |
| float128_QSLIB_INTERFACE int | float128_QSget_bound (float128_QSdata *p, int colindex, int lu, float128 *bound) |
| float128_QSLIB_INTERFACE int | float128_QSget_bounds (float128_QSdata *p, float128 *lower, float128 *upper) |
| float128_QSLIB_INTERFACE int | float128_QSget_bounds_list (float128_QSdata *p, int num, int *collist, float128 *lb, float128 *ub) |
| float128_QSLIB_INTERFACE int | float128_QSget_coef (float128_QSdata *p, int rowindex, int colindex, float128 *coef) |
| float128_QSLIB_INTERFACE int | float128_QSget_colcount (float128_QSdata *p) |
| float128_QSLIB_INTERFACE int | float128_QSget_colnames (float128_QSdata *p, char **colnames) |
| float128_QSLIB_INTERFACE int | float128_QSget_column_index (float128_QSdata *p, const char *name, int *colindex) |
| float128_QSLIB_INTERFACE int | float128_QSget_columns (float128_QSdata *p, int **colcnt, int **colbeg, int **colind, float128 **colval, float128 **obj, float128 **lower, float128 **upper, char ***names) |
| float128_QSLIB_INTERFACE int | float128_QSget_columns_list (float128_QSdata *p, int num, int *collist, int **colcnt, int **colbeg, int **colind, float128 **colval, float128 **obj, float128 **lower, float128 **upper, char ***names) |
| float128_QSLIB_INTERFACE int | float128_QSget_infeas_array (float128_QSdata *p, float128 *pi) |
| float128_QSLIB_INTERFACE int | float128_QSget_intcount (float128_QSdata *p, int *count) |
| float128_QSLIB_INTERFACE int | float128_QSget_intflags (float128_QSdata *p, int *intflags) |
| float128_QSLIB_INTERFACE int | float128_QSget_itcnt (float128_QSdata *p, int *pI_iter, int *pII_iter, int *dI_iter, int *dII_iter, int *tot_iter) |
| float128_QSLIB_INTERFACE int | float128_QSget_named_pi (float128_QSdata *p, const char *rowname, float128 *val) |
| float128_QSLIB_INTERFACE int | float128_QSget_named_rc (float128_QSdata *p, const char *colname, float128 *val) |
| float128_QSLIB_INTERFACE int | float128_QSget_named_slack (float128_QSdata *p, const char *rowname, float128 *val) |
| float128_QSLIB_INTERFACE int | float128_QSget_named_x (float128_QSdata *p, const char *colname, float128 *val) |
| float128_QSLIB_INTERFACE int | float128_QSget_nzcount (float128_QSdata *p) |
| float128_QSLIB_INTERFACE int | float128_QSget_obj (float128_QSdata *p, float128 *obj) |
| float128_QSLIB_INTERFACE int | float128_QSget_obj_list (float128_QSprob p, int num, int *collist, float128 *obj) |
| float128_QSLIB_INTERFACE char * | float128_QSget_objname (float128_QSdata *p) |
| float128_QSLIB_INTERFACE int | float128_QSget_objsense (float128_QSdata *p, int *objsense) |
| float128_QSLIB_INTERFACE int | float128_QSget_objval (float128_QSdata *p, float128 *value) |
| float128_QSLIB_INTERFACE int | float128_QSget_param (float128_QSdata *p, int whichparam, int *value) |
| float128_QSLIB_INTERFACE int | float128_QSget_param_EGlpNum (float128_QSdata *p, int whichparam, float128 *value) |
| float128_QSLIB_INTERFACE int | float128_QSget_pi_array (float128_QSdata *p, float128 *pi) |
| float128_QSLIB_INTERFACE float128_QSdata * | float128_QSget_prob (float128_QSline_reader reader, const char *probname, const char *filetype) |
| float128_QSLIB_INTERFACE char * | float128_QSget_probname (float128_QSdata *p) |
| float128_QSLIB_INTERFACE int | float128_QSget_ranged_rows (float128_QSdata *p, int **rowcnt, int **rowbeg, int **rowind, float128 **rowval, float128 **rhs, char **sense, float128 **range, char ***names) |
| float128_QSLIB_INTERFACE int | float128_QSget_ranged_rows_list (float128_QSdata *p, int num, int *rowlist, int **rowcnt, int **rowbeg, int **rowind, float128 **rowval, float128 **rhs, char **sense, float128 **range, char ***names) |
| float128_QSLIB_INTERFACE int | float128_QSget_rc_array (float128_QSdata *p, float128 *rc) |
| float128_QSLIB_INTERFACE int | float128_QSget_rhs (float128_QSdata *p, float128 *rhs) |
| float128_QSLIB_INTERFACE int | float128_QSget_row_index (float128_QSdata *p, const char *name, int *rowindex) |
| float128_QSLIB_INTERFACE int | float128_QSget_rowcount (float128_QSdata *p) |
| float128_QSLIB_INTERFACE int | float128_QSget_rownames (float128_QSdata *p, char **rownames) |
| float128_QSLIB_INTERFACE int | float128_QSget_rows (float128_QSdata *p, int **rowcnt, int **rowbeg, int **rowind, float128 **rowval, float128 **rhs, char **sense, char ***names) |
| float128_QSLIB_INTERFACE int | float128_QSget_rows_list (float128_QSdata *p, int num, int *rowlist, int **rowcnt, int **rowbeg, int **rowind, float128 **rowval, float128 **rhs, char **sense, char ***names) |
| float128_QSLIB_INTERFACE int | float128_QSget_senses (float128_QSdata *p, char *senses) |
| float128_QSLIB_INTERFACE int | float128_QSget_slack_array (float128_QSdata *p, float128 *slack) |
| float128_QSLIB_INTERFACE int | float128_QSget_solution (float128_QSdata *p, float128 *value, float128 *x, float128 *pi, float128 *slack, float128 *rc) |
| float128_QSLIB_INTERFACE int | float128_QSget_status (float128_QSdata *p, int *status) |
| float128_QSLIB_INTERFACE int | float128_QSget_tableau_row (float128_QSdata *p, int indx, float128 *tableaurow) |
| float128_QSLIB_INTERFACE int | float128_QSget_x_array (float128_QSdata *p, float128 *x) |
| float128_QSLIB_INTERFACE void | float128_QSline_reader_free (float128_QSline_reader reader) |
| float128_QSLIB_INTERFACE char * | float128_QSline_reader_get (float128_QSline_reader reader, char *s, int size) |
| float128_QSLIB_INTERFACE float128_QSline_reader | float128_QSline_reader_new (void *fct, void *data_src) |
| float128_QSLIB_INTERFACE void | float128_QSline_reader_set_error_collector (float128_QSline_reader reader, float128_QSerror_collector collector) |
| float128_QSLIB_INTERFACE int | float128_QSload_basis (float128_QSdata *p, QSbasis *B) |
| float128_QSLIB_INTERFACE int | float128_QSload_basis_and_row_norms_array (float128_QSdata *p, char *cstat, char *rstat, float128 *rownorms) |
| float128_QSLIB_INTERFACE int | float128_QSload_basis_array (float128_QSdata *p, char *cstat, char *rstat) |
| float128_QSLIB_INTERFACE float128_QSdata * | float128_QSload_prob (const char *probname, int ncols, int nrows, int *cmatcnt, int *cmatbeg, int *cmatind, float128 *cmatval, int objsense, float128 *obj, float128 *rhs, char *sense, float128 *lower, float128 *upper, const char **colnames, const char **rownames) |
| float128_QSLIB_INTERFACE int | float128_QSnew_col (float128_QSdata *p, const float128 obj, const float128 lower, const float128 upper, const char *name) |
| float128_QSLIB_INTERFACE int | float128_QSnew_row (float128_QSdata *p, const float128 rhs, int sense, const char *name) |
| float128_QSLIB_INTERFACE int | float128_QSopt_dual (float128_QSdata *p, int *status) |
| float128_QSLIB_INTERFACE int | float128_QSopt_pivotin_col (float128_QSdata *p, int ccnt, int *clist) |
| float128_QSLIB_INTERFACE int | float128_QSopt_pivotin_row (float128_QSdata *p, int rcnt, int *rlist) |
| float128_QSLIB_INTERFACE int | float128_QSopt_primal (float128_QSdata *p, int *status) |
| float128_QSLIB_INTERFACE int | float128_QSopt_strongbranch (float128_QSdata *p, int ncand, int *candidatelist, float128 *xlist, float128 *down_vals, float128 *up_vals, int iterations, float128 objbound) |
| float128_QSLIB_INTERFACE int | float128_QSread_and_load_basis (float128_QSdata *p, const char *filename) |
| float128_QSLIB_INTERFACE QSbasis * | float128_QSread_basis (float128_QSdata *p, const char *filename) |
| float128_QSLIB_INTERFACE float128_QSdata * | float128_QSread_prob (const char *filename, const char *filetype) |
| float128_QSLIB_INTERFACE int | float128_QSreport_prob (float128_QSdata *p, const char *filetype, float128_qserror_collector *c) |
| float128_QSLIB_INTERFACE int | float128_QSset_param (float128_QSdata *p, int whichparam, int newvalue) |
| float128_QSLIB_INTERFACE int | float128_QSset_param_EGlpNum (float128_QSdata *p, int whichparam, float128 newvalue) |
| void | float128_QSset_precision (const unsigned prec) |
| float128_QSLIB_INTERFACE void | float128_QSset_reporter (float128_QSprob prob, int skip, void *fct, void *dest) |
| float128_QSLIB_INTERFACE int | float128_QStest_row_norms (float128_QSdata *p) |
| float128_QSLIB_INTERFACE char * | float128_QSversion (void) |
| float128_QSLIB_INTERFACE int | float128_QSwrite_basis (float128_QSdata *p, QSbasis *B, const char *filename) |
| float128_QSLIB_INTERFACE int | float128_QSwrite_prob (float128_QSdata *p, const char *filename, const char *filetype) |
| static int | float128_QSwrite_prob_EGioFile (float128_QSdata *p, EGioFile_t *out, const char *filetype) |
| float128_QSLIB_INTERFACE int | float128_QSwrite_prob_file (float128_QSdata *p, FILE *out, const char *filetype) |
Variables | |
| static int | TRACE = 0 |
| static void float128_check_pointer | ( | void * | p, | |
| const char * | fct, | |||
| const char * | param | |||
| ) | [static] |
Definition at line 3614 of file float128_qsopt.c.
References NULL.
Referenced by float128_QSerror_collector_new(), float128_QSerror_get_desc(), float128_QSerror_get_line(), float128_QSerror_get_line_number(), float128_QSerror_get_pos(), float128_QSerror_get_type(), float128_QSerror_memory_collector_new(), float128_QSerror_memory_get_last_error(), float128_QSerror_memory_get_nerrors(), float128_QSerror_memory_get_nof(), float128_QSerror_memory_get_prev_error(), float128_QSerror_print(), float128_QSline_reader_get(), float128_QSline_reader_new(), float128_QSline_reader_set_error_collector(), and float128_QSset_reporter().
| static int float128_check_qsdata_pointer | ( | float128_QSdata * | p | ) |
Definition at line 3570 of file float128_qsopt.c.
References NULL.
Referenced by float128_QSadd_col(), float128_QSadd_cols(), float128_QSadd_ranged_row(), float128_QSadd_ranged_rows(), float128_QSadd_row(), float128_QSadd_rows(), float128_QSchange_bound(), float128_QSchange_bounds(), float128_QSchange_coef(), float128_QSchange_objcoef(), float128_QSchange_objsense(), float128_QSchange_range(), float128_QSchange_rhscoef(), float128_QSchange_sense(), float128_QSchange_senses(), float128_QScompute_row_norms(), float128_QScopy_prob(), float128_QSdelete_col(), float128_QSdelete_cols(), float128_QSdelete_named_column(), float128_QSdelete_named_columns_list(), float128_QSdelete_named_row(), float128_QSdelete_named_rows_list(), float128_QSdelete_row(), float128_QSdelete_rows(), float128_QSdelete_setcols(), float128_QSdelete_setrows(), float128_QSget_basis_and_row_norms_array(), float128_QSget_basis_array(), float128_QSget_basis_order(), float128_QSget_binv_row(), float128_QSget_bound(), float128_QSget_bounds(), float128_QSget_bounds_list(), float128_QSget_coef(), float128_QSget_colcount(), float128_QSget_colnames(), float128_QSget_column_index(), float128_QSget_columns(), float128_QSget_columns_list(), float128_QSget_infeas_array(), float128_QSget_intcount(), float128_QSget_intflags(), float128_QSget_itcnt(), float128_QSget_named_pi(), float128_QSget_named_rc(), float128_QSget_named_slack(), float128_QSget_named_x(), float128_QSget_nzcount(), float128_QSget_obj(), float128_QSget_obj_list(), float128_QSget_objname(), float128_QSget_objsense(), float128_QSget_objval(), float128_QSget_param(), float128_QSget_param_EGlpNum(), float128_QSget_pi_array(), float128_QSget_probname(), float128_QSget_ranged_rows(), float128_QSget_ranged_rows_list(), float128_QSget_rc_array(), float128_QSget_rhs(), float128_QSget_row_index(), float128_QSget_rowcount(), float128_QSget_rownames(), float128_QSget_rows(), float128_QSget_rows_list(), float128_QSget_senses(), float128_QSget_slack_array(), float128_QSget_solution(), float128_QSget_status(), float128_QSget_tableau_row(), float128_QSget_x_array(), float128_QSload_basis(), float128_QSload_basis_and_row_norms_array(), float128_QSload_basis_array(), float128_QSnew_col(), float128_QSnew_row(), float128_QSopt_dual(), float128_QSopt_pivotin_col(), float128_QSopt_pivotin_row(), float128_QSopt_primal(), float128_QSopt_strongbranch(), float128_QSread_and_load_basis(), float128_QSread_basis(), float128_QSset_param(), float128_QSset_param_EGlpNum(), float128_QSset_reporter(), float128_QStest_row_norms(), and float128_QSwrite_basis().
| static int float128_formatIsMps | ( | const char * | filetype, | |
| int * | isMps | |||
| ) | [static] |
Definition at line 3584 of file float128_qsopt.c.
References ILL_CLEANUP.
Referenced by float128_QSreport_prob().
| void float128_free_cache | ( | float128_QSdata * | p | ) |
Definition at line 2163 of file float128_qsopt.c.
References float128_qsdata::cache, float128_ILLlp_cache_free(), ILL_IFFREE, QS_LP_MODIFIED, float128_qsdata::qstatus, and float128_ILLlp_cache::val.
Referenced by float128_opt_work(), float128_QSadd_col(), float128_QSadd_cols(), float128_QSadd_ranged_rows(), float128_QSadd_rows(), float128_QSchange_bound(), float128_QSchange_bounds(), float128_QSchange_coef(), float128_QSchange_objcoef(), float128_QSchange_objsense(), float128_QSchange_range(), float128_QSchange_rhscoef(), float128_QSchange_senses(), float128_QSdelete_cols(), float128_QSdelete_rows(), float128_QSnew_col(), float128_QSnew_row(), and float128_QSopt_strongbranch().
Here is the call graph for this function:

| int float128_grab_basis | ( | float128_QSdata * | p | ) |
Definition at line 2025 of file float128_qsopt.c.
References float128_qsdata::basis, float128_ILLlp_basis::colnorms, float128_ILLlp_basis::cstat, float128_price_info::dII_price, float128_ILLlib_getbasis(), float128_ILLlib_getrownorms(), float128_ILLlp_basis_free(), float128_ILLlp_basis_init(), ILL_IFFREE, ILL_SAFE_MALLOC, float128_qsdata::lp, float128_ILLlp_basis::nrows, float128_ILLlpdata::nrows, float128_ILLlp_basis::nstruct, float128_ILLlpdata::nstruct, float128_qsdata::pricing, QS_PRICE_DSTEEP, float128_qsdata::qslp, float128_ILLlp_basis::rownorms, and float128_ILLlp_basis::rstat.
Referenced by float128_opt_work(), float128_QScompute_row_norms(), float128_QSopt_pivotin_col(), and float128_QSopt_pivotin_row().
Here is the call graph for this function:

| int float128_grab_cache | ( | float128_QSdata * | p, | |
| int | status | |||
| ) |
Definition at line 2090 of file float128_qsopt.c.
References float128_qsdata::basis, float128_qsdata::cache, float128_ILLlp_basis::cstat, float128_ILLlib_cache_solution(), float128_ILLlp_cache_alloc(), float128_ILLlp_cache_free(), float128_ILLlp_cache_init(), float128_SZERO_TOLER, ILL_SAFE_MALLOC, float128_qsdata::lp, float128_ILLlp_cache::nrows, float128_ILLlpdata::nrows, float128_ILLlp_cache::nstruct, float128_ILLlpdata::nstruct, float128_lpinfo::O, float128_ILLlpdata::objsense, QS_COL_BSTAT_BASIC, QS_COL_BSTAT_LOWER, QS_COL_BSTAT_UPPER, float128_qsdata::qslp, float128_ILLlp_cache::rc, STAT_LOWER, STAT_UPPER, float128_ILLlpdata::structmap, float128_ILLlp_cache::val, VFIXED, float128_lpinfo::vstat, and float128_lpinfo::vtype.
Referenced by float128_opt_work().
Here is the call graph for this function:

| static int float128_illbasis_to_qsbasis | ( | float128_ILLlp_basis * | B, | |
| QSbasis * | qB | |||
| ) |
Definition at line 1961 of file float128_qsopt.c.
References float128_ILLlp_basis::cstat, qsbasis::cstat, ILL_SAFE_MALLOC, float128_ILLlp_basis::nrows, qsbasis::nrows, float128_ILLlp_basis::nstruct, qsbasis::nstruct, float128_ILLlp_basis::rstat, and qsbasis::rstat.
Referenced by float128_QSget_basis(), and float128_QSread_basis().
| static void float128_init_basis | ( | QSbasis * | B | ) | [static] |
Definition at line 2350 of file float128_qsopt.c.
References qsbasis::cstat, qsbasis::nrows, qsbasis::nstruct, and qsbasis::rstat.
Referenced by float128_QSget_basis(), and float128_QSread_basis().
| static int float128_opt_work | ( | float128_QSdata * | p, | |
| int * | status, | |||
| int | primal_or_dual | |||
| ) | [static] |
Definition at line 257 of file float128_qsopt.c.
References __QS_SB_VERB, float128_qsdata::basis, float128_lpinfo::basisid, DUAL_SIMPLEX, float128_qsdata::factorok, float128_lpinfo::fbasisid, float128_free_cache(), float128_grab_basis(), float128_grab_cache(), float128_ILLlib_optimize(), float128_ILLlp_basis_free(), float128_ILLlp_scale(), float128_ILLprice_free_pricing_info(), float128_QScopy_prob(), float128_QSfree_prob(), ILL_IFFREE, float128_qsdata::itcnt, float128_qsdata::lp, float128_ILLlpdata::nrows, float128_ILLlp_basis::nrows, float128_ILLlpdata::nstruct, float128_ILLlp_basis::nstruct, float128_qsdata::pricing, PRIMAL_SIMPLEX, QS_LP_CHANGE_PREC, QS_LP_OPTIMAL, QS_LP_UNSOLVED, float128_qsdata::qslp, float128_qsdata::qstatus, float128_qsdata::simplex_display, and float128_qsdata::simplex_scaling.
Referenced by float128_QSopt_dual(), and float128_QSopt_primal().
Here is the call graph for this function:

| float128_QSLIB_INTERFACE int float128_QSadd_col | ( | float128_QSdata * | p, | |
| int | cnt, | |||
| int * | cmatind, | |||
| float128 * | cmatval, | |||
| float128 | obj, | |||
| float128 | lower, | |||
| float128 | upper, | |||
| const char * | name | |||
| ) |
Definition at line 906 of file float128_qsopt.c.
References float128_qsdata::basis, float128_qsdata::factorok, float128_check_qsdata_pointer(), float128_free_cache(), float128_ILLlib_addcol(), and float128_qsdata::lp.
Here is the call graph for this function:

| float128_QSLIB_INTERFACE int float128_QSadd_cols | ( | float128_QSdata * | p, | |
| int | num, | |||
| int * | cmatcnt, | |||
| int * | cmatbeg, | |||
| int * | cmatind, | |||
| float128 * | cmatval, | |||
| float128 * | obj, | |||
| float128 * | lower, | |||
| float128 * | upper, | |||
| const char ** | names | |||
| ) |
Definition at line 877 of file float128_qsopt.c.
References float128_qsdata::basis, float128_qsdata::factorok, float128_check_qsdata_pointer(), float128_free_cache(), float128_ILLlib_addcols(), and float128_qsdata::lp.
Here is the call graph for this function:

| float128_QSLIB_INTERFACE int float128_QSadd_ranged_row | ( | float128_QSdata * | p, | |
| int | cnt, | |||
| int * | rmatind, | |||
| const float128 * | rmatval, | |||
| const float128 * | rhs, | |||
| int | sense, | |||
| const float128 * | range, | |||
| const char * | name | |||
| ) |
Definition at line 991 of file float128_qsopt.c.
References float128_check_qsdata_pointer(), and float128_QSadd_ranged_rows().
Here is the call graph for this function:

| float128_QSLIB_INTERFACE int float128_QSadd_ranged_rows | ( | float128_QSdata * | p, | |
| int | num, | |||
| int * | rmatcnt, | |||
| int * | rmatbeg, | |||
| int * | rmatind, | |||
| const float128 * | rmatval, | |||
| const float128 * | rhs, | |||
| char * | sense, | |||
| const float128 * | range, | |||
| const char ** | names | |||
| ) |
Definition at line 954 of file float128_qsopt.c.
References float128_qsdata::basis, float128_qsdata::factorok, float128_check_qsdata_pointer(), float128_free_cache(), float128_ILLlib_addrows(), float128_ILLlib_loadrownorms(), float128_qsdata::lp, float128_qsdata::pricing, and float128_ILLlp_basis::rownorms.
Here is the call graph for this function:

| float128_QSLIB_INTERFACE int float128_QSadd_row | ( | float128_QSdata * | p, | |
| int | cnt, | |||
| int * | rmatind, | |||
| const float128 * | rmatval, | |||
| const float128 * | rhs, | |||
| int | sense, | |||
| const char * | name | |||
| ) |
Definition at line 1060 of file float128_qsopt.c.
References float128_check_qsdata_pointer(), and float128_QSadd_rows().
Here is the call graph for this function:

| float128_QSLIB_INTERFACE int float128_QSadd_rows | ( | float128_QSdata * | p, | |
| int | num, | |||
| int * | rmatcnt, | |||
| int * | rmatbeg, | |||
| int * | rmatind, | |||
| const float128 * | rmatval, | |||
| const float128 * | rhs, | |||
| char * | sense, | |||
| const char ** | names | |||
| ) |
Definition at line 1024 of file float128_qsopt.c.
References float128_qsdata::basis, float128_qsdata::factorok, float128_check_qsdata_pointer(), float128_free_cache(), float128_ILLlib_addrows(), float128_ILLlib_loadrownorms(), float128_qsdata::lp, float128_qsdata::pricing, and float128_ILLlp_basis::rownorms.
Here is the call graph for this function:

| static int float128_qsbasis_to_illbasis | ( | QSbasis * | qB, | |
| float128_ILLlp_basis * | B | |||
| ) |
Definition at line 1988 of file float128_qsopt.c.
References qsbasis::cstat, float128_ILLlp_basis::cstat, ILL_CLEANUP, ILL_SAFE_MALLOC, qsbasis::nrows, float128_ILLlp_basis::nrows, qsbasis::nstruct, float128_ILLlp_basis::nstruct, QS_COL_BSTAT_BASIC, QS_ROW_BSTAT_BASIC, qsbasis::rstat, and float128_ILLlp_basis::rstat.
Referenced by float128_QSload_basis(), and float128_QSwrite_basis().
| float128_QSLIB_INTERFACE int float128_QSchange_bound | ( | float128_QSdata * | p, | |
| int | indx, | |||
| int | lu, | |||
| const float128 | bound | |||
| ) |
Definition at line 1563 of file float128_qsopt.c.
References float128_check_qsdata_pointer(), float128_free_cache(), float128_ILLlib_chgbnd(), and float128_qsdata::lp.
Here is the call graph for this function:

| float128_QSLIB_INTERFACE int float128_QSchange_bounds | ( | float128_QSdata * | p, | |
| int | num, | |||
| int * | collist, | |||
| char * | lu, | |||
| const float128 * | bounds | |||
| ) |
Definition at line 1541 of file float128_qsopt.c.
References float128_check_qsdata_pointer(), float128_free_cache(), float128_ILLlib_chgbnds(), and float128_qsdata::lp.
Here is the call graph for this function:

| float128_QSLIB_INTERFACE int float128_QSchange_coef | ( | float128_QSdata * | p, | |
| int | rowindex, | |||
| int | colindex, | |||
| float128 | coef | |||
| ) |
Definition at line 1480 of file float128_qsopt.c.
References float128_check_qsdata_pointer(), float128_free_cache(), float128_ILLlib_chgcoef(), and float128_qsdata::lp.
Here is the call graph for this function:

| float128_QSLIB_INTERFACE int float128_QSchange_objcoef | ( | float128_QSdata * | p, | |
| int | indx, | |||
| float128 | coef | |||
| ) |
Definition at line 1501 of file float128_qsopt.c.
References float128_check_qsdata_pointer(), float128_free_cache(), float128_ILLlib_chgobj(), and float128_qsdata::lp.
Here is the call graph for this function:

| float128_QSLIB_INTERFACE int float128_QSchange_objsense | ( | float128_QSdata * | p, | |
| int | newsense | |||
| ) |
Definition at line 785 of file float128_qsopt.c.
References float128_check_qsdata_pointer(), float128_free_cache(), float128_ILLsimplex_set_bound(), float128_qsdata::lobjlim, float128_qsdata::lp, float128_ILLlpdata::objsense, QS_MAX, QS_MIN, float128_qsdata::qslp, and float128_qsdata::uobjlim.
Here is the call graph for this function:

| float128_QSLIB_INTERFACE int float128_QSchange_range | ( | float128_QSdata * | p, | |
| int | rowindex, | |||
| float128 | range | |||
| ) |
Definition at line 1420 of file float128_qsopt.c.
References float128_qsdata::factorok, float128_check_qsdata_pointer(), float128_free_cache(), float128_ILLlib_chgrange(), and float128_qsdata::lp.
Here is the call graph for this function:

| float128_QSLIB_INTERFACE int float128_QSchange_rhscoef | ( | float128_QSdata * | p, | |
| int | indx, | |||
| float128 | coef | |||
| ) |
Definition at line 1521 of file float128_qsopt.c.
References float128_check_qsdata_pointer(), float128_free_cache(), float128_ILLlib_chgrhs(), and float128_qsdata::lp.
Here is the call graph for this function:

| float128_QSLIB_INTERFACE int float128_QSchange_sense | ( | float128_QSdata * | p, | |
| int | rowindex, | |||
| int | sense | |||
| ) |
Definition at line 1441 of file float128_qsopt.c.
References float128_check_qsdata_pointer(), and float128_QSchange_senses().
Here is the call graph for this function:

| float128_QSLIB_INTERFACE int float128_QSchange_senses | ( | float128_QSdata * | p, | |
| int | num, | |||
| int * | rowlist, | |||
| char * | sense | |||
| ) |
Definition at line 1399 of file float128_qsopt.c.
References float128_check_qsdata_pointer(), float128_free_cache(), float128_ILLlib_chgsense(), and float128_qsdata::lp.
Here is the call graph for this function:

| float128_QSLIB_INTERFACE int float128_QScompute_row_norms | ( | float128_QSdata * | p | ) |
Definition at line 2262 of file float128_qsopt.c.
References float128_price_info::dII_price, float128_check_qsdata_pointer(), float128_grab_basis(), float128_ILLlib_recompute_rownorms(), float128_qsdata::lp, float128_qsdata::pricing, and QS_PRICE_DSTEEP.
Here is the call graph for this function:

| float128_QSLIB_INTERFACE float128_QSdata* float128_QScopy_prob | ( | float128_QSdata * | p, | |
| const char * | newname | |||
| ) |
Definition at line 687 of file float128_qsopt.c.
References float128_ILLlpdata::A, float128_ILLlpdata::colnames, float128_qsdata::factorok, float128_check_qsdata_pointer(), float128_ILLheap_init(), float128_ILLlib_addcol(), float128_ILLlib_newrows(), float128_QScreate_prob(), float128_price_info::h, float128_price_info::htrigger, ILL_namebufsize, ILL_SAFE_MALLOC, float128_ILLlpdata::intmarker, float128_ILLlpdata::lower, float128_qsdata::lp, float128_ILLmatrix::matbeg, float128_ILLmatrix::matcnt, float128_ILLmatrix::matind, float128_ILLmatrix::matval, float128_ILLlpdata::nrows, float128_ILLlpdata::nstruct, float128_ILLlpdata::obj, float128_ILLlpdata::objname, float128_ILLlpdata::objsense, float128_qsdata::pricing, float128_qsdata::qslp, float128_ILLlpdata::rangeval, float128_ILLlpdata::rhs, float128_ILLlpdata::rownames, float128_ILLlpdata::sense, float128_qsdata::simplex_display, float128_qsdata::simplex_scaling, float128_ILLlpdata::structmap, and float128_ILLlpdata::upper.
Here is the call graph for this function:

| float128_QSLIB_INTERFACE float128_QSdata* float128_QScreate_prob | ( | const char * | name, | |
| int | objsense | |||
| ) |
Definition at line 500 of file float128_qsopt.c.
References float128_qsdata::basis, float128_pI_uinfo::c_obj, float128_qsdata::cache, itcnt_t::dI_iter, float128_price_info::dI_price, itcnt_t::dII_iter, float128_price_info::dII_price, float128_lpinfo::dinfeas, float128_lpinfo::dobjval, float128_pI_uinfo::dty, float128_qsdata::factorok, float128_ILL_MAXDOUBLE, float128_ILL_MINDOUBLE, float128_ILLlpdata_init(), float128_ILLprice_init_pricing_info(), float128_ILLsimplex_init_lpinfo(), float128_ILLsimplex_load_lpinfo(), float128_QSfree_prob(), float128_price_info::htrigger, ILL_SAFE_MALLOC, float128_qsdata::itcnt, float128_qsdata::lobjlim, float128_qsdata::lp, float128_qsdata::name, float128_lpinfo::objbound, float128_ILLlpdata::objsense, float128_lpinfo::objval, itcnt_t::pI_iter, float128_price_info::pI_price, itcnt_t::pII_iter, float128_price_info::pII_price, float128_lpinfo::pinfeas, float128_pI_uinfo::piv, float128_lpinfo::pobjval, float128_qsdata::pricing, float128_ILLlpdata::probname, QS_DEFAULT_PRICE_DI, QS_DEFAULT_PRICE_DII, QS_DEFAULT_PRICE_PI, QS_DEFAULT_PRICE_PII, QS_LP_UNSOLVED, QS_MAX, float128_qsdata::qslp, float128_qsdata::qstatus, float128_qsdata::simplex_display, float128_qsdata::simplex_scaling, itcnt_t::tot_iter, float128_pI_uinfo::tz, float128_qsdata::uobjlim, and float128_lpinfo::upd.
Here is the call graph for this function:

| float128_QSLIB_INTERFACE int float128_QSdelete_col | ( | float128_QSdata * | p, | |
| int | colindex | |||
| ) |
Definition at line 1279 of file float128_qsopt.c.
References float128_check_qsdata_pointer(), and float128_QSdelete_cols().
Here is the call graph for this function:

| float128_QSLIB_INTERFACE int float128_QSdelete_cols | ( | float128_QSdata * | p, | |
| int | num, | |||
| int * | dellist | |||
| ) |
Definition at line 1249 of file float128_qsopt.c.
References float128_qsdata::basis, float128_qsdata::factorok, float128_check_qsdata_pointer(), float128_free_cache(), float128_ILLlib_delcols(), float128_ILLlp_basis_free(), ILL_IFFREE, and float128_qsdata::lp.
Here is the call graph for this function:

| float128_QSLIB_INTERFACE int float128_QSdelete_named_column | ( | float128_QSdata * | p, | |
| const char * | colname | |||
| ) |
Definition at line 1342 of file float128_qsopt.c.
References float128_check_qsdata_pointer(), float128_QSdelete_cols(), and float128_QSget_column_index().
Here is the call graph for this function:

| float128_QSLIB_INTERFACE int float128_QSdelete_named_columns_list | ( | float128_QSdata * | p, | |
| int | num, | |||
| const char ** | colnames | |||
| ) |
Definition at line 1365 of file float128_qsopt.c.
References float128_check_qsdata_pointer(), float128_QSdelete_cols(), float128_QSget_column_index(), ILL_IFFREE, and ILL_SAFE_MALLOC.
Here is the call graph for this function:

| float128_QSLIB_INTERFACE int float128_QSdelete_named_row | ( | float128_QSdata * | p, | |
| const char * | rowname | |||
| ) |
Definition at line 1192 of file float128_qsopt.c.
References float128_check_qsdata_pointer(), float128_QSdelete_rows(), and float128_QSget_row_index().
Here is the call graph for this function:

| float128_QSLIB_INTERFACE int float128_QSdelete_named_rows_list | ( | float128_QSdata * | p, | |
| int | num, | |||
| const char ** | rownames | |||
| ) |
Definition at line 1215 of file float128_qsopt.c.
References float128_check_qsdata_pointer(), float128_QSdelete_rows(), float128_QSget_row_index(), ILL_IFFREE, and ILL_SAFE_MALLOC.
Here is the call graph for this function:

| float128_QSLIB_INTERFACE int float128_QSdelete_row | ( | float128_QSdata * | p, | |
| int | rowindex | |||
| ) |
Definition at line 1129 of file float128_qsopt.c.
References float128_check_qsdata_pointer(), and float128_QSdelete_rows().
Here is the call graph for this function:

| float128_QSLIB_INTERFACE int float128_QSdelete_rows | ( | float128_QSdata * | p, | |
| int | num, | |||
| int * | dellist | |||
| ) |
Definition at line 1092 of file float128_qsopt.c.
References float128_qsdata::basis, float128_qsdata::cache, float128_qsdata::factorok, float128_check_qsdata_pointer(), float128_free_cache(), float128_ILLlib_delrows(), float128_ILLlp_basis_free(), ILL_IFFREE, and float128_qsdata::lp.
Here is the call graph for this function:

| float128_QSLIB_INTERFACE int float128_QSdelete_setcols | ( | float128_QSdata * | p, | |
| int * | flags | |||
| ) |
Definition at line 1299 of file float128_qsopt.c.
References float128_check_qsdata_pointer(), float128_QSdelete_cols(), ILL_IFFREE, ILL_SAFE_MALLOC, float128_ILLlpdata::nstruct, and float128_qsdata::qslp.
Here is the call graph for this function:

| float128_QSLIB_INTERFACE int float128_QSdelete_setrows | ( | float128_QSdata * | p, | |
| int * | flags | |||
| ) |
Definition at line 1149 of file float128_qsopt.c.
References float128_check_qsdata_pointer(), float128_QSdelete_rows(), ILL_IFFREE, ILL_SAFE_MALLOC, float128_ILLlpdata::nrows, and float128_qsdata::qslp.
Here is the call graph for this function:

| float128_QSLIB_INTERFACE void float128_QSerror_collector_free | ( | float128_QSerror_collector | c | ) |
Definition at line 3677 of file float128_qsopt.c.
References float128_ILLerror_collector_free().
Here is the call graph for this function:

| float128_QSLIB_INTERFACE float128_QSerror_collector float128_QSerror_collector_new | ( | void * | fct, | |
| void * | dest | |||
| ) |
Definition at line 3662 of file float128_qsopt.c.
References float128_check_pointer(), and float128_ILLerror_collector_new().
Here is the call graph for this function:

| float128_QSLIB_INTERFACE const char* float128_QSerror_get_desc | ( | float128_QSformat_error | error | ) |
Definition at line 3824 of file float128_qsopt.c.
References float128_qsformat_error::desc, and float128_check_pointer().
Referenced by float128_ILLformat_error_print().
Here is the call graph for this function:

| float128_QSLIB_INTERFACE const char* float128_QSerror_get_line | ( | float128_QSformat_error | error | ) |
Definition at line 3845 of file float128_qsopt.c.
References float128_check_pointer(), and float128_qsformat_error::theLine.
Referenced by float128_ILLformat_error_print().
Here is the call graph for this function:

| float128_QSLIB_INTERFACE int float128_QSerror_get_line_number | ( | float128_QSformat_error | error | ) |
Definition at line 3831 of file float128_qsopt.c.
References float128_check_pointer(), and float128_qsformat_error::lineNumber.
Referenced by float128_ILLformat_error_print().
Here is the call graph for this function:

| float128_QSLIB_INTERFACE int float128_QSerror_get_pos | ( | float128_QSformat_error | error | ) |
Definition at line 3838 of file float128_qsopt.c.
References float128_qsformat_error::at, and float128_check_pointer().
Here is the call graph for this function:

| float128_QSLIB_INTERFACE int float128_QSerror_get_type | ( | float128_QSformat_error | error | ) |
Definition at line 3817 of file float128_qsopt.c.
References float128_check_pointer(), and float128_qsformat_error::type.
Here is the call graph for this function:

| float128_QSLIB_INTERFACE float128_QSerror_collector float128_QSerror_memory_collector_new | ( | float128_QSerror_memory | mem | ) |
Definition at line 3671 of file float128_qsopt.c.
References float128_check_pointer(), and float128_ILLerror_memory_collector_new().
Here is the call graph for this function:

| float128_QSLIB_INTERFACE float128_QSerror_memory float128_QSerror_memory_create | ( | int | takeErrorLines | ) |
Definition at line 3869 of file float128_qsopt.c.
References float128_ILLerror_memory_create().
Here is the call graph for this function:

| float128_QSLIB_INTERFACE void float128_QSerror_memory_free | ( | float128_QSerror_memory | mem | ) |
Definition at line 3875 of file float128_qsopt.c.
References float128_ILLerror_memory_free(), and NULL.
Here is the call graph for this function:

| float128_QSLIB_INTERFACE float128_QSformat_error float128_QSerror_memory_get_last_error | ( | float128_QSerror_memory | mem | ) |
Definition at line 3907 of file float128_qsopt.c.
References float128_qserror_memory::error_list, and float128_check_pointer().
Here is the call graph for this function:

| float128_QSLIB_INTERFACE int float128_QSerror_memory_get_nerrors | ( | float128_QSerror_memory | mem | ) |
Definition at line 3884 of file float128_qsopt.c.
References float128_check_pointer(), and float128_qserror_memory::nerror.
Here is the call graph for this function:

| float128_QSLIB_INTERFACE int float128_QSerror_memory_get_nof | ( | float128_QSerror_memory | mem, | |
| int | type | |||
| ) |
Definition at line 3891 of file float128_qsopt.c.
References float128_check_pointer(), float128_qserror_memory::has_error, ILL_REPRT, and QS_INPUT_NERROR.
Here is the call graph for this function:

| float128_QSLIB_INTERFACE float128_QSformat_error float128_QSerror_memory_get_prev_error | ( | float128_QSformat_error | e | ) |
Definition at line 3914 of file float128_qsopt.c.
References float128_check_pointer(), float128_qsformat_error::next, and NULL.
Here is the call graph for this function:

| float128_QSLIB_INTERFACE void float128_QSerror_print | ( | FILE * | f, | |
| float128_QSformat_error | error | |||
| ) |
Definition at line 3852 of file float128_qsopt.c.
References float128_check_pointer(), float128_ILLformat_error_print(), and NULL.
Here is the call graph for this function:

| float128_QSLIB_INTERFACE const char* float128_QSformat_error_type_string | ( | int | tp | ) |
Definition at line 3785 of file float128_qsopt.c.
References QS_DATA_ERROR, QS_DATA_WARN, QS_LP_FORMAT_ERROR, QS_LP_FORMAT_WARN, QS_MPS_FORMAT_ERROR, and QS_MPS_FORMAT_WARN.
Referenced by float128_ILLformat_error_print().
| float128_QSLIB_INTERFACE void float128_QSfree | ( | void * | ptr | ) |
| float128_QSLIB_INTERFACE void float128_QSfree_basis | ( | QSbasis * | B | ) |
Definition at line 2338 of file float128_qsopt.c.
References qsbasis::cstat, ILL_IFFREE, and qsbasis::rstat.
| float128_QSLIB_INTERFACE void float128_QSfree_prob | ( | float128_QSdata * | p | ) |
Definition at line 2288 of file float128_qsopt.c.
References float128_qsdata::basis, float128_pI_uinfo::c_obj, float128_qsdata::cache, float128_lpinfo::dinfeas, float128_lpinfo::dobjval, float128_pI_uinfo::dty, float128_ILLlp_basis_free(), float128_ILLlp_cache_free(), float128_ILLlpdata_free(), float128_ILLprice_free_pricing_info(), float128_ILLsimplex_free_lpinfo(), float128_price_info::htrigger, ILL_IFFREE, float128_qsdata::lobjlim, float128_qsdata::lp, float128_qsdata::name, float128_lpinfo::objbound, float128_lpinfo::objval, float128_lpinfo::pinfeas, float128_pI_uinfo::piv, float128_lpinfo::pobjval, float128_qsdata::pricing, float128_qsdata::qslp, float128_pI_uinfo::tz, float128_qsdata::uobjlim, float128_lpinfo::upd, and float128_ILLlp_cache::val.
Here is the call graph for this function:

| float128_QSLIB_INTERFACE QSbasis* float128_QSget_basis | ( | float128_QSdata * | p | ) |
Definition at line 1861 of file float128_qsopt.c.
References float128_qsdata::basis, float128_illbasis_to_qsbasis(), float128_init_basis(), float128_QSfree_basis(), and ILL_SAFE_MALLOC.
Here is the call graph for this function:

| float128_QSLIB_INTERFACE int float128_QSget_basis_and_row_norms_array | ( | float128_QSdata * | p, | |
| char * | cstat, | |||
| char * | rstat, | |||
| float128 * | rownorms | |||
| ) |
Definition at line 1918 of file float128_qsopt.c.
References float128_qsdata::basis, float128_ILLlp_basis::cstat, float128_check_qsdata_pointer(), float128_ILLlp_basis::nrows, float128_ILLlp_basis::nstruct, float128_ILLlp_basis::rownorms, and float128_ILLlp_basis::rstat.
Here is the call graph for this function:

| float128_QSLIB_INTERFACE int float128_QSget_basis_array | ( | float128_QSdata * | p, | |
| char * | cstat, | |||
| char * | rstat | |||
| ) |
Definition at line 1890 of file float128_qsopt.c.
References float128_qsdata::basis, float128_ILLlp_basis::cstat, float128_check_qsdata_pointer(), float128_ILLlp_basis::nrows, float128_ILLlp_basis::nstruct, and float128_ILLlp_basis::rstat.
Here is the call graph for this function:

| float128_QSLIB_INTERFACE int float128_QSget_basis_order | ( | float128_QSdata * | p, | |
| int * | basorder | |||
| ) |
Definition at line 2238 of file float128_qsopt.c.
References float128_qsdata::cache, float128_check_qsdata_pointer(), float128_ILLlib_basis_order(), and float128_qsdata::lp.
Here is the call graph for this function:

| float128_QSLIB_INTERFACE int float128_QSget_binv_row | ( | float128_QSdata * | p, | |
| int | indx, | |||
| float128 * | binvrow | |||
| ) |
Definition at line 2175 of file float128_qsopt.c.
References float128_qsdata::basis, float128_qsdata::cache, float128_check_qsdata_pointer(), float128_ILLlib_tableau(), float128_QSget_rowcount(), and float128_qsdata::lp.
Here is the call graph for this function:

| float128_QSLIB_INTERFACE int float128_QSget_bound | ( | float128_QSdata * | p, | |
| int | colindex, | |||
| int | lu, | |||
| float128 * | bound | |||
| ) |
Definition at line 3123 of file float128_qsopt.c.
References float128_check_qsdata_pointer(), float128_ILLlib_getbnd(), and float128_qsdata::lp.
Here is the call graph for this function:

| float128_QSLIB_INTERFACE int float128_QSget_bounds | ( | float128_QSdata * | p, | |
| float128 * | lower, | |||
| float128 * | upper | |||
| ) |
Definition at line 3162 of file float128_qsopt.c.
References float128_check_qsdata_pointer(), float128_ILLlib_getbnds(), and float128_qsdata::lp.
Here is the call graph for this function:

| float128_QSLIB_INTERFACE int float128_QSget_bounds_list | ( | float128_QSdata * | p, | |
| int | num, | |||
| int * | collist, | |||
| float128 * | lb, | |||
| float128 * | ub | |||
| ) |
Definition at line 3142 of file float128_qsopt.c.
References float128_check_qsdata_pointer(), float128_ILLlib_getbnds_list(), and float128_qsdata::lp.
Here is the call graph for this function:

| float128_QSLIB_INTERFACE int float128_QSget_coef | ( | float128_QSdata * | p, | |
| int | rowindex, | |||
| int | colindex, | |||
| float128 * | coef | |||
| ) |
Definition at line 1464 of file float128_qsopt.c.
References float128_check_qsdata_pointer(), float128_ILLlib_getcoef(), and float128_qsdata::lp.
Here is the call graph for this function:

| float128_QSLIB_INTERFACE int float128_QSget_colcount | ( | float128_QSdata * | p | ) |
Definition at line 2691 of file float128_qsopt.c.
References float128_check_qsdata_pointer().
Here is the call graph for this function:

| float128_QSLIB_INTERFACE int float128_QSget_colnames | ( | float128_QSdata * | p, | |
| char ** | colnames | |||
| ) |
Definition at line 3106 of file float128_qsopt.c.
References float128_check_qsdata_pointer(), float128_ILLlib_colnames(), and float128_qsdata::lp.
Here is the call graph for this function:

| float128_QSLIB_INTERFACE int float128_QSget_column_index | ( | float128_QSdata * | p, | |
| const char * | name, | |||
| int * | colindex | |||
| ) |
Definition at line 3239 of file float128_qsopt.c.
References float128_check_qsdata_pointer(), float128_ILLlib_colindex(), and float128_qsdata::lp.
Here is the call graph for this function:

| float128_QSLIB_INTERFACE int float128_QSget_columns | ( | float128_QSdata * | p, | |
| int ** | colcnt, | |||
| int ** | colbeg, | |||
| int ** | colind, | |||
| float128 ** | colval, | |||
| float128 ** | obj, | |||
| float128 ** | lower, | |||
| float128 ** | upper, | |||
| char *** | names | |||
| ) |
Definition at line 3017 of file float128_qsopt.c.
References float128_check_qsdata_pointer(), float128_ILLlib_getcols(), float128_QSget_colcount(), ILL_IFFREE, ILL_SAFE_MALLOC, and float128_qsdata::lp.
Here is the call graph for this function:

| float128_QSLIB_INTERFACE int float128_QSget_columns_list | ( | float128_QSdata * | p, | |
| int | num, | |||
| int * | collist, | |||
| int ** | colcnt, | |||
| int ** | colbeg, | |||
| int ** | colind, | |||
| float128 ** | colval, | |||
| float128 ** | obj, | |||
| float128 ** | lower, | |||
| float128 ** | upper, | |||
| char *** | names | |||
| ) |
Definition at line 2978 of file float128_qsopt.c.
References float128_check_qsdata_pointer(), float128_ILLlib_getcols(), float128_QSget_colcount(), and float128_qsdata::lp.
Here is the call graph for this function:

| float128_QSLIB_INTERFACE int float128_QSget_infeas_array | ( | float128_QSdata * | p, | |
| float128 * | pi | |||
| ) |
Definition at line 2529 of file float128_qsopt.c.
References float128_check_qsdata_pointer(), float128_ILLsimplex_infcertificate(), ILL_ERROR, and float128_qsdata::lp.
Here is the call graph for this function:

| float128_QSLIB_INTERFACE int float128_QSget_intcount | ( | float128_QSdata * | p, | |
| int * | count | |||
| ) |
Definition at line 3203 of file float128_qsopt.c.
References float128_check_qsdata_pointer(), float128_ILLlib_getintflags(), float128_QSget_colcount(), ILL_IFFREE, ILL_SAFE_MALLOC, and float128_qsdata::lp.
Here is the call graph for this function:

| float128_QSLIB_INTERFACE int float128_QSget_intflags | ( | float128_QSdata * | p, | |
| int * | intflags | |||
| ) |
Definition at line 3180 of file float128_qsopt.c.
References float128_check_qsdata_pointer(), float128_ILLlib_getintflags(), ILL_CLEANUP, and float128_qsdata::lp.
Here is the call graph for this function:

| float128_QSLIB_INTERFACE int float128_QSget_itcnt | ( | float128_QSdata * | p, | |
| int * | pI_iter, | |||
| int * | pII_iter, | |||
| int * | dI_iter, | |||
| int * | dII_iter, | |||
| int * | tot_iter | |||
| ) |
Definition at line 815 of file float128_qsopt.c.
References itcnt_t::dI_iter, itcnt_t::dII_iter, float128_check_qsdata_pointer(), float128_qsdata::itcnt, itcnt_t::pI_iter, itcnt_t::pII_iter, and itcnt_t::tot_iter.
Here is the call graph for this function:

| float128_QSLIB_INTERFACE int float128_QSget_named_pi | ( | float128_QSdata * | p, | |
| const char * | rowname, | |||
| float128 * | val | |||
| ) |
Definition at line 2621 of file float128_qsopt.c.
References float128_qsdata::cache, float128_check_qsdata_pointer(), float128_QSget_row_index(), and float128_ILLlp_cache::pi.
Here is the call graph for this function:

| float128_QSLIB_INTERFACE int float128_QSget_named_rc | ( | float128_QSdata * | p, | |
| const char * | colname, | |||
| float128 * | val | |||
| ) |
Definition at line 2586 of file float128_qsopt.c.
References float128_qsdata::cache, float128_check_qsdata_pointer(), float128_QSget_column_index(), and float128_ILLlp_cache::rc.
Here is the call graph for this function:

| float128_QSLIB_INTERFACE int float128_QSget_named_slack | ( | float128_QSdata * | p, | |
| const char * | rowname, | |||
| float128 * | val | |||
| ) |
Definition at line 2656 of file float128_qsopt.c.
References float128_qsdata::cache, float128_check_qsdata_pointer(), float128_QSget_row_index(), and float128_ILLlp_cache::slack.
Here is the call graph for this function:

| float128_QSLIB_INTERFACE int float128_QSget_named_x | ( | float128_QSdata * | p, | |
| const char * | colname, | |||
| float128 * | val | |||
| ) |
Definition at line 2551 of file float128_qsopt.c.
References float128_qsdata::cache, float128_check_qsdata_pointer(), float128_QSget_column_index(), and float128_ILLlp_cache::x.
Here is the call graph for this function:

| float128_QSLIB_INTERFACE int float128_QSget_nzcount | ( | float128_QSdata * | p | ) |
Definition at line 2717 of file float128_qsopt.c.
References float128_check_qsdata_pointer().
Here is the call graph for this function:

| float128_QSLIB_INTERFACE int float128_QSget_obj | ( | float128_QSdata * | p, | |
| float128 * | obj | |||
| ) |
Definition at line 2769 of file float128_qsopt.c.
References float128_check_qsdata_pointer(), float128_ILLlib_getobj(), and float128_qsdata::lp.
Here is the call graph for this function:

| float128_QSLIB_INTERFACE int float128_QSget_obj_list | ( | float128_QSprob | p, | |
| int | num, | |||
| int * | collist, | |||
| float128 * | obj | |||
| ) |
Definition at line 2754 of file float128_qsopt.c.
References float128_check_qsdata_pointer(), float128_ILLlib_getobj_list(), and float128_qsdata::lp.
Here is the call graph for this function:

| float128_QSLIB_INTERFACE char* float128_QSget_objname | ( | float128_QSdata * | p | ) |
Definition at line 3071 of file float128_qsopt.c.
References float128_check_qsdata_pointer(), ILL_RETURN_PTR, float128_ILLlpdata::objname, and float128_qsdata::qslp.
Here is the call graph for this function:

| float128_QSLIB_INTERFACE int float128_QSget_objsense | ( | float128_QSdata * | p, | |
| int * | objsense | |||
| ) |
Definition at line 837 of file float128_qsopt.c.
References float128_check_qsdata_pointer(), float128_ILLlpdata::objsense, and float128_qsdata::qslp.
Here is the call graph for this function:

| float128_QSLIB_INTERFACE int float128_QSget_objval | ( | float128_QSdata * | p, | |
| float128 * | value | |||
| ) |
Definition at line 2407 of file float128_qsopt.c.
References float128_qsdata::cache, float128_check_qsdata_pointer(), float128_ILLlib_objval(), ILL_CLEANUP, float128_qsdata::lp, QS_LP_MODIFIED, and float128_qsdata::qstatus.
Here is the call graph for this function:

| float128_QSLIB_INTERFACE int float128_QSget_param | ( | float128_QSdata * | p, | |
| int | whichparam, | |||
| int * | value | |||
| ) |
Definition at line 3486 of file float128_qsopt.c.
References float128_price_info::dII_price, float128_check_qsdata_pointer(), float128_qsdata::lp, float128_lpinfo::maxiter, float128_price_info::pII_price, float128_qsdata::pricing, QS_PARAM_DUAL_PRICING, QS_PARAM_PRIMAL_PRICING, QS_PARAM_SIMPLEX_DISPLAY, QS_PARAM_SIMPLEX_MAX_ITERATIONS, QS_PARAM_SIMPLEX_SCALING, float128_qsdata::simplex_display, and float128_qsdata::simplex_scaling.
Here is the call graph for this function:

| float128_QSLIB_INTERFACE int float128_QSget_param_EGlpNum | ( | float128_QSdata * | p, | |
| int | whichparam, | |||
| float128 * | value | |||
| ) |
Definition at line 3531 of file float128_qsopt.c.
References float128_check_qsdata_pointer(), float128_qsdata::lobjlim, float128_qsdata::lp, float128_lpinfo::maxtime, QS_PARAM_OBJLLIM, QS_PARAM_OBJULIM, QS_PARAM_SIMPLEX_MAX_TIME, and float128_qsdata::uobjlim.
Here is the call graph for this function:

| float128_QSLIB_INTERFACE int float128_QSget_pi_array | ( | float128_QSdata * | p, | |
| float128 * | pi | |||
| ) |
Definition at line 2505 of file float128_qsopt.c.
References float128_qsdata::cache, float128_check_qsdata_pointer(), float128_ILLlib_solution(), and float128_qsdata::lp.
Here is the call graph for this function:

| float128_QSLIB_INTERFACE float128_QSdata* float128_QSget_prob | ( | float128_QSline_reader | reader, | |
| const char * | probname, | |||
| const char * | filetype | |||
| ) |
Definition at line 3683 of file float128_qsopt.c.
References float128_ILLread(), float128_ILLsimplex_load_lpinfo(), float128_QSfree_prob(), ILL_CHECKnull, ILL_CLEANUP, ILL_FAILfalse, ILL_IFFREE, float128_qsdata::lp, float128_qsdata::name, NULL, float128_ILLlpdata::probname, and float128_qsdata::qslp.
Referenced by float128_QSread_prob().
Here is the call graph for this function:

| float128_QSLIB_INTERFACE char* float128_QSget_probname | ( | float128_QSdata * | p | ) |
Definition at line 3056 of file float128_qsopt.c.
References float128_check_qsdata_pointer(), ILL_RETURN_PTR, and float128_qsdata::name.
Here is the call graph for this function:

| float128_QSLIB_INTERFACE int float128_QSget_ranged_rows | ( | float128_QSdata * | p, | |
| int ** | rowcnt, | |||
| int ** | rowbeg, | |||
| int ** | rowind, | |||
| float128 ** | rowval, | |||
| float128 ** | rhs, | |||
| char ** | sense, | |||
| float128 ** | range, | |||
| char *** | names | |||
| ) |
Definition at line 2843 of file float128_qsopt.c.
References float128_check_qsdata_pointer(), float128_ILLlib_getrows(), float128_QSget_rowcount(), ILL_IFFREE, ILL_SAFE_MALLOC, and float128_qsdata::lp.
Here is the call graph for this function:

| float128_QSLIB_INTERFACE int float128_QSget_ranged_rows_list | ( | float128_QSdata * | p, | |
| int | num, | |||
| int * | rowlist, | |||
| int ** | rowcnt, | |||
| int ** | rowbeg, | |||
| int ** | rowind, | |||
| float128 ** | rowval, | |||
| float128 ** | rhs, | |||
| char ** | sense, | |||
| float128 ** | range, | |||
| char *** | names | |||
| ) |
Definition at line 2803 of file float128_qsopt.c.
References float128_check_qsdata_pointer(), float128_ILLlib_getrows(), float128_QSget_rowcount(), and float128_qsdata::lp.
Here is the call graph for this function:

| float128_QSLIB_INTERFACE int float128_QSget_rc_array | ( | float128_QSdata * | p, | |
| float128 * | rc | |||
| ) |
Definition at line 2481 of file float128_qsopt.c.
References float128_qsdata::cache, float128_check_qsdata_pointer(), float128_ILLlib_solution(), and float128_qsdata::lp.
Here is the call graph for this function:

| float128_QSLIB_INTERFACE int float128_QSget_rhs | ( | float128_QSdata * | p, | |
| float128 * | rhs | |||
| ) |
Definition at line 2786 of file float128_qsopt.c.
References float128_check_qsdata_pointer(), float128_ILLlib_getrhs(), and float128_qsdata::lp.
Here is the call graph for this function:

| float128_QSLIB_INTERFACE int float128_QSget_row_index | ( | float128_QSdata * | p, | |
| const char * | name, | |||
| int * | rowindex | |||
| ) |
Definition at line 3259 of file float128_qsopt.c.
References float128_check_qsdata_pointer(), float128_ILLlib_rowindex(), and float128_qsdata::lp.
Here is the call graph for this function:

| float128_QSLIB_INTERFACE int float128_QSget_rowcount | ( | float128_QSdata * | p | ) |
Definition at line 2704 of file float128_qsopt.c.
References float128_check_qsdata_pointer().
Here is the call graph for this function:

| float128_QSLIB_INTERFACE int float128_QSget_rownames | ( | float128_QSdata * | p, | |
| char ** | rownames | |||
| ) |
Definition at line 3089 of file float128_qsopt.c.
References float128_check_qsdata_pointer(), float128_ILLlib_rownames(), and float128_qsdata::lp.
Here is the call graph for this function:

| float128_QSLIB_INTERFACE int float128_QSget_rows | ( | float128_QSdata * | p, | |
| int ** | rowcnt, | |||
| int ** | rowbeg, | |||
| int ** | rowind, | |||
| float128 ** | rowval, | |||
| float128 ** | rhs, | |||
| char ** | sense, | |||
| char *** | names | |||
| ) |
Definition at line 2940 of file float128_qsopt.c.
References float128_check_qsdata_pointer(), float128_ILLlib_getrows(), float128_QSget_rowcount(), ILL_IFFREE, ILL_SAFE_MALLOC, and float128_qsdata::lp.
Here is the call graph for this function:

| float128_QSLIB_INTERFACE int float128_QSget_rows_list | ( | float128_QSdata * | p, | |
| int | num, | |||
| int * | rowlist, | |||
| int ** | rowcnt, | |||
| int ** | rowbeg, | |||
| int ** | rowind, | |||
| float128 ** | rowval, | |||
| float128 ** | rhs, | |||
| char ** | sense, | |||
| char *** | names | |||
| ) |
Definition at line 2901 of file float128_qsopt.c.
References float128_check_qsdata_pointer(), float128_ILLlib_getrows(), float128_QSget_rowcount(), and float128_qsdata::lp.
Here is the call graph for this function:

| float128_QSLIB_INTERFACE int float128_QSget_senses | ( | float128_QSdata * | p, | |
| char * | senses | |||
| ) |
Definition at line 2882 of file float128_qsopt.c.
References float128_check_qsdata_pointer(), float128_ILLlib_getsenses(), and float128_qsdata::lp.
Here is the call graph for this function:

| float128_QSLIB_INTERFACE int float128_QSget_slack_array | ( | float128_QSdata * | p, | |
| float128 * | slack | |||
| ) |
Definition at line 2457 of file float128_qsopt.c.
References float128_qsdata::cache, float128_check_qsdata_pointer(), float128_ILLlib_get_slack(), and float128_qsdata::lp.
Here is the call graph for this function:

| float128_QSLIB_INTERFACE int float128_QSget_solution | ( | float128_QSdata * | p, | |
| float128 * | value, | |||
| float128 * | x, | |||
| float128 * | pi, | |||
| float128 * | slack, | |||
| float128 * | rc | |||
| ) |
Definition at line 2379 of file float128_qsopt.c.
References float128_qsdata::cache, float128_check_qsdata_pointer(), float128_ILLlib_solution(), and float128_qsdata::lp.
Here is the call graph for this function:

| float128_QSLIB_INTERFACE int float128_QSget_status | ( | float128_QSdata * | p, | |
| int * | status | |||
| ) |
Definition at line 2362 of file float128_qsopt.c.
References float128_check_qsdata_pointer(), and float128_qsdata::qstatus.
Here is the call graph for this function:

| float128_QSLIB_INTERFACE int float128_QSget_tableau_row | ( | float128_QSdata * | p, | |
| int | indx, | |||
| float128 * | tableaurow | |||
| ) |
Definition at line 2213 of file float128_qsopt.c.
References float128_qsdata::cache, float128_check_qsdata_pointer(), float128_ILLlib_tableau(), and float128_qsdata::lp.
Here is the call graph for this function:

| float128_QSLIB_INTERFACE int float128_QSget_x_array | ( | float128_QSdata * | p, | |
| float128 * | x | |||
| ) |
Definition at line 2433 of file float128_qsopt.c.
References float128_qsdata::cache, float128_check_qsdata_pointer(), float128_ILLlib_get_x(), and float128_qsdata::lp.
Here is the call graph for this function:

| float128_QSLIB_INTERFACE void float128_QSline_reader_free | ( | float128_QSline_reader | reader | ) |
Definition at line 3645 of file float128_qsopt.c.
References float128_ILLline_reader_free().
Referenced by float128_QSread_prob().
Here is the call graph for this function:

| float128_QSLIB_INTERFACE char* float128_QSline_reader_get | ( | float128_QSline_reader | reader, | |
| char * | s, | |||
| int | size | |||
| ) |
Definition at line 3651 of file float128_qsopt.c.
References float128_check_pointer(), and float128_ILLline_reader_get.
Here is the call graph for this function:

| float128_QSLIB_INTERFACE float128_QSline_reader float128_QSline_reader_new | ( | void * | fct, | |
| void * | data_src | |||
| ) |
Definition at line 3627 of file float128_qsopt.c.
References float128_check_pointer(), and float128_ILLline_reader_new().
Here is the call graph for this function:

| float128_QSLIB_INTERFACE void float128_QSline_reader_set_error_collector | ( | float128_QSline_reader | reader, | |
| float128_QSerror_collector | collector | |||
| ) |
Definition at line 3636 of file float128_qsopt.c.
References float128_qsline_reader::error_collector, and float128_check_pointer().
Here is the call graph for this function:

| float128_QSLIB_INTERFACE int float128_QSload_basis | ( | float128_QSdata * | p, | |
| QSbasis * | B | |||
| ) |
Definition at line 1665 of file float128_qsopt.c.
References float128_qsdata::basis, float128_qsdata::factorok, float128_check_qsdata_pointer(), float128_ILLlp_basis_free(), float128_ILLlp_basis_init(), float128_qsbasis_to_illbasis(), ILL_SAFE_MALLOC, float128_ILLlpdata::nrows, qsbasis::nrows, float128_ILLlpdata::nstruct, qsbasis::nstruct, and float128_qsdata::qslp.
Here is the call graph for this function:

| float128_QSLIB_INTERFACE int float128_QSload_basis_and_row_norms_array | ( | float128_QSdata * | p, | |
| char * | cstat, | |||
| char * | rstat, | |||
| float128 * | rownorms | |||
| ) |
Definition at line 1791 of file float128_qsopt.c.
References float128_qsdata::basis, float128_qsdata::factorok, float128_check_qsdata_pointer(), float128_QSload_basis_array(), float128_ILLlpdata::nrows, float128_qsdata::qslp, and float128_ILLlp_basis::rownorms.
Here is the call graph for this function:

| float128_QSLIB_INTERFACE int float128_QSload_basis_array | ( | float128_QSdata * | p, | |
| char * | cstat, | |||
| char * | rstat | |||
| ) |
Definition at line 1728 of file float128_qsopt.c.
References float128_qsdata::basis, float128_ILLlp_basis::cstat, float128_qsdata::factorok, float128_check_qsdata_pointer(), float128_ILLlp_basis_free(), float128_ILLlp_basis_init(), ILL_SAFE_MALLOC, float128_ILLlp_basis::nrows, float128_ILLlpdata::nrows, float128_ILLlp_basis::nstruct, float128_ILLlpdata::nstruct, float128_qsdata::qslp, and float128_ILLlp_basis::rstat.
Here is the call graph for this function:

| float128_QSLIB_INTERFACE float128_QSdata* float128_QSload_prob | ( | const char * | probname, | |
| int | ncols, | |||
| int | nrows, | |||
| int * | cmatcnt, | |||
| int * | cmatbeg, | |||
| int * | cmatind, | |||
| float128 * | cmatval, | |||
| int | objsense, | |||
| float128 * | obj, | |||
| float128 * | rhs, | |||
| char * | sense, | |||
| float128 * | lower, | |||
| float128 * | upper, | |||
| const char ** | colnames, | |||
| const char ** | rownames | |||
| ) |
Definition at line 643 of file float128_qsopt.c.
References float128_qsdata::factorok, float128_ILLlib_addcols(), float128_ILLlib_newrows(), float128_QScreate_prob(), float128_QSfree_prob(), and float128_qsdata::lp.
Here is the call graph for this function:

| float128_QSLIB_INTERFACE int float128_QSnew_col | ( | float128_QSdata * | p, | |
| const float128 | obj, | |||
| const float128 | lower, | |||
| const float128 | upper, | |||
| const char * | name | |||
| ) |
Definition at line 855 of file float128_qsopt.c.
References float128_qsdata::basis, float128_qsdata::factorok, float128_check_qsdata_pointer(), float128_free_cache(), float128_ILLlib_newcol(), and float128_qsdata::lp.
Here is the call graph for this function:

| float128_QSLIB_INTERFACE int float128_QSnew_row | ( | float128_QSdata * | p, | |
| const float128 | rhs, | |||
| int | sense, | |||
| const char * | name | |||
| ) |
Definition at line 932 of file float128_qsopt.c.
References float128_qsdata::basis, float128_qsdata::factorok, float128_check_qsdata_pointer(), float128_free_cache(), float128_ILLlib_newrow(), and float128_qsdata::lp.
Here is the call graph for this function:

| float128_QSLIB_INTERFACE int float128_QSopt_dual | ( | float128_QSdata * | p, | |
| int * | status | |||
| ) |
Definition at line 224 of file float128_qsopt.c.
References __QS_SB_VERB, float128_qsdata::basis, float128_qsdata::cache, float128_qsdata::factorok, float128_check_qsdata_pointer(), float128_opt_work(), QS_LP_CHANGE_PREC, QS_LP_UNSOLVED, and float128_ILLlp_cache::status.
Here is the call graph for this function:

| float128_QSLIB_INTERFACE int float128_QSopt_pivotin_col | ( | float128_QSdata * | p, | |
| int | ccnt, | |||
| int * | clist | |||
| ) |
Definition at line 436 of file float128_qsopt.c.
References float128_check_qsdata_pointer(), float128_grab_basis(), float128_ILLsimplex_pivotin(), ILL_ERROR, float128_qsdata::lp, float128_qsdata::pricing, and SIMPLEX_PIVOTINCOL.
Here is the call graph for this function:

| float128_QSLIB_INTERFACE int float128_QSopt_pivotin_row | ( | float128_QSdata * | p, | |
| int | rcnt, | |||
| int * | rlist | |||
| ) |
Definition at line 408 of file float128_qsopt.c.
References float128_check_qsdata_pointer(), float128_grab_basis(), float128_ILLsimplex_pivotin(), ILL_ERROR, float128_qsdata::lp, float128_qsdata::pricing, and SIMPLEX_PIVOTINROW.
Here is the call graph for this function:

| float128_QSLIB_INTERFACE int float128_QSopt_primal | ( | float128_QSdata * | p, | |
| int * | status | |||
| ) |
Definition at line 194 of file float128_qsopt.c.
References float128_qsdata::basis, float128_qsdata::cache, float128_check_qsdata_pointer(), float128_opt_work(), QS_LP_UNSOLVED, and float128_ILLlp_cache::status.
Here is the call graph for this function:

| float128_QSLIB_INTERFACE int float128_QSopt_strongbranch | ( | float128_QSdata * | p, | |
| int | ncand, | |||
| int * | candidatelist, | |||
| float128 * | xlist, | |||
| float128 * | down_vals, | |||
| float128 * | up_vals, | |||
| int | iterations, | |||
| float128 | objbound | |||
| ) |
Definition at line 465 of file float128_qsopt.c.
References float128_qsdata::factorok, float128_check_qsdata_pointer(), float128_free_cache(), float128_ILLlib_strongbranch(), float128_qsdata::itcnt, float128_qsdata::lp, float128_qsdata::pricing, QS_LP_UNSOLVED, and float128_qsdata::qstatus.
Here is the call graph for this function:

| float128_QSLIB_INTERFACE int float128_QSread_and_load_basis | ( | float128_QSdata * | p, | |
| const char * | filename | |||
| ) |
Definition at line 1701 of file float128_qsopt.c.
References float128_qsdata::basis, float128_check_qsdata_pointer(), float128_ILLlib_readbasis(), float128_ILLlp_basis_free(), float128_ILLlp_basis_init(), ILL_SAFE_MALLOC, and float128_qsdata::lp.
Here is the call graph for this function:

| float128_QSLIB_INTERFACE QSbasis* float128_QSread_basis | ( | float128_QSdata * | p, | |
| const char * | filename | |||
| ) |
Definition at line 1631 of file float128_qsopt.c.
References float128_check_qsdata_pointer(), float128_illbasis_to_qsbasis(), float128_ILLlib_readbasis(), float128_ILLlp_basis_free(), float128_ILLlp_basis_init(), float128_init_basis(), float128_QSfree_basis(), ILL_NEW, and float128_qsdata::lp.
Here is the call graph for this function:

| float128_QSLIB_INTERFACE float128_QSdata* float128_QSread_prob | ( | const char * | filename, | |
| const char * | filetype | |||
| ) |
Definition at line 615 of file float128_qsopt.c.
References float128_ILLline_reader_new(), float128_QSget_prob(), float128_QSline_reader_free(), and NULL.
Here is the call graph for this function:

| float128_QSLIB_INTERFACE int float128_QSreport_prob | ( | float128_QSdata * | p, | |
| const char * | filetype, | |||
| float128_qserror_collector * | c | |||
| ) |
Definition at line 3726 of file float128_qsopt.c.
References float128_formatIsMps(), float128_ILLwrite_lp(), float128_ILLwrite_mps(), and float128_qsdata::qslp.
Here is the call graph for this function:

| float128_QSLIB_INTERFACE int float128_QSset_param | ( | float128_QSdata * | p, | |
| int | whichparam, | |||
| int | newvalue | |||
| ) |
Definition at line 3345 of file float128_qsopt.c.
References float128_price_info::dI_price, float128_price_info::dII_price, float128_check_qsdata_pointer(), float128_qsdata::lp, float128_lpinfo::maxiter, float128_price_info::pI_price, float128_price_info::pII_price, float128_qsdata::pricing, QS_PARAM_DUAL_PRICING, QS_PARAM_PRIMAL_PRICING, QS_PARAM_SIMPLEX_DISPLAY, QS_PARAM_SIMPLEX_MAX_ITERATIONS, QS_PARAM_SIMPLEX_SCALING, QS_PRICE_DDANTZIG, QS_PRICE_DDEVEX, QS_PRICE_DMULTPARTIAL, QS_PRICE_DSTEEP, QS_PRICE_PDANTZIG, QS_PRICE_PDEVEX, QS_PRICE_PMULTPARTIAL, QS_PRICE_PSTEEP, float128_qsdata::simplex_display, and float128_qsdata::simplex_scaling.
Here is the call graph for this function:

| float128_QSLIB_INTERFACE int float128_QSset_param_EGlpNum | ( | float128_QSdata * | p, | |
| int | whichparam, | |||
| float128 | newvalue | |||
| ) |
Definition at line 3434 of file float128_qsopt.c.
References float128_check_qsdata_pointer(), float128_ILL_MAXDOUBLE, float128_ILL_MINDOUBLE, float128_ILLsimplex_set_bound(), float128_QSget_objsense(), float128_qsdata::lobjlim, float128_qsdata::lp, float128_lpinfo::maxtime, QS_MAX, QS_MIN, QS_PARAM_OBJLLIM, QS_PARAM_OBJULIM, QS_PARAM_SIMPLEX_MAX_TIME, and float128_qsdata::uobjlim.
Here is the call graph for this function:

| void float128_QSset_precision | ( | const unsigned | prec | ) |
Definition at line 173 of file float128_qsopt.c.
References float128_ILLchange_precision().
Here is the call graph for this function:

| float128_QSLIB_INTERFACE void float128_QSset_reporter | ( | float128_QSprob | prob, | |
| int | skip, | |||
| void * | fct, | |||
| void * | dest | |||
| ) |
Definition at line 3762 of file float128_qsopt.c.
References float128_check_pointer(), float128_check_qsdata_pointer(), ILL_FAILtrue, ILLstring_reporter_init(), float128_lpinfo::iterskip, float128_qsdata::lp, NULL, float128_qsdata::qslp, and float128_ILLlpdata::reporter.
Referenced by float128_solver_main().
Here is the call graph for this function:

| float128_QSLIB_INTERFACE int float128_QStest_row_norms | ( | float128_QSdata * | p | ) |
Definition at line 2730 of file float128_qsopt.c.
References float128_check_qsdata_pointer().
Here is the call graph for this function:

| float128_QSLIB_INTERFACE char* float128_QSversion | ( | void | ) |
Definition at line 3747 of file float128_qsopt.c.
References PACKAGE_STRING.
Referenced by float128_solver_main(), and float128_usage().
| float128_QSLIB_INTERFACE int float128_QSwrite_basis | ( | float128_QSdata * | p, | |
| QSbasis * | B, | |||
| const char * | filename | |||
| ) |
Definition at line 1821 of file float128_qsopt.c.
References float128_qsdata::basis, float128_check_qsdata_pointer(), float128_ILLlib_writebasis(), float128_ILLlp_basis_free(), float128_ILLlp_basis_init(), float128_qsbasis_to_illbasis(), and float128_qsdata::lp.
Here is the call graph for this function:

| float128_QSLIB_INTERFACE int float128_QSwrite_prob | ( | float128_QSdata * | p, | |
| const char * | filename, | |||
| const char * | filetype | |||
| ) |
Definition at line 3295 of file float128_qsopt.c.
References float128_QSwrite_prob_EGioFile(), ILL_CHECKnull, and NULL.
Here is the call graph for this function:

| static int float128_QSwrite_prob_EGioFile | ( | float128_QSdata * | p, | |
| EGioFile_t * | out, | |||
| const char * | filetype | |||
| ) | [static] |
Definition at line 3279 of file float128_qsopt.c.
References float128_QSreport_prob(), ILL_RESULT, ILLstring_reporter_copy(), ILLstring_reporter_init(), NULL, float128_qsdata::qslp, and float128_ILLlpdata::reporter.
Referenced by float128_QSwrite_prob(), and float128_QSwrite_prob_file().
Here is the call graph for this function:

| float128_QSLIB_INTERFACE int float128_QSwrite_prob_file | ( | float128_QSdata * | p, | |
| FILE * | out, | |||
| const char * | filetype | |||
| ) |
Definition at line 3325 of file float128_qsopt.c.
References float128_QSwrite_prob_EGioFile().
Here is the call graph for this function:

int TRACE = 0 [static] |
Definition at line 24 of file float128_qsopt.c.
1.4.7