/usr/include/qsopt_ex/basis_mpf.h is in libqsopt-ex-dev 2.5.10.3-1build1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 | /* WARNING! This file was autogenerated from template */
/****************************************************************************/
/* */
/* This file is part of QSopt_ex. */
/* */
/* (c) Copyright 2006 by David Applegate, William Cook, Sanjeeb Dash, */
/* and Daniel Espinoza */
/* */
/* Sanjeeb Dash ownership of copyright in QSopt_ex is derived from his */
/* copyright in QSopt. */
/* */
/* This code may be used under the terms of the GNU General Public License */
/* (Version 2.1 or later) as published by the Free Software Foundation. */
/* */
/* Alternatively, use is granted for research purposes only. */
/* */
/* It is your choice of which of these two licenses you are operating */
/* under. */
/* */
/* We make no guarantees about the correctness or usefulness of this code. */
/* */
/****************************************************************************/
/* RCSINFO $Id: basis_mpf.h,v 1.3 2003/11/05 16:57:39 meven Exp $ */
#ifndef mpf___BASIS_H
#define mpf___BASIS_H
#include "dstruct_mpf.h"
#include "lpdefs_mpf.h"
#include "lpdata_mpf.h"
typedef struct mpf_var_data
{
int nartif;
int nslacks;
int nfree;
int nbndone;
int nbounded;
int nfixed;
mpf_t cmax;
}
mpf_var_data;
void mpf_ILLbasis_init_vardata (
mpf_var_data * vd);
void mpf_ILLbasis_clear_vardata (
mpf_var_data * vd);
int mpf_ILLbasis_build_basisinfo (
mpf_lpinfo * lp),
mpf_ILLbasis_get_initial (
mpf_lpinfo * lp,
int algorithm),
mpf_ILLbasis_get_cinitial (
mpf_lpinfo * lp,
int algorithm),
mpf_ILLbasis_load (
mpf_lpinfo * lp,
mpf_ILLlp_basis * B),
mpf_ILLbasis_tableau_row (
mpf_lpinfo * lp,
int row,
mpf_t * brow,
mpf_t * trow,
mpf_t * rhs,
int strict),
mpf_ILLbasis_factor (
mpf_lpinfo * lp,
int *singular),
mpf_ILLbasis_refactor (
mpf_lpinfo * lp),
mpf_ILLbasis_update (
mpf_lpinfo * lp,
mpf_svector * y,
int lindex,
int *refactor,
int *singular);
void mpf_ILLbasis_column_solve (
mpf_lpinfo * lp,
mpf_svector * rhs,
mpf_svector * soln),
mpf_ILLbasis_column_solve_update (
mpf_lpinfo * lp,
mpf_svector * rhs,
mpf_svector * upd,
mpf_svector * soln),
mpf_ILLbasis_row_solve (
mpf_lpinfo * lp,
mpf_svector * rhs,
mpf_svector * soln),
mpf_ILLbasis_free_basisinfo (
mpf_lpinfo * lp),
mpf_ILLbasis_free_fbasisinfo (
mpf_lpinfo * lp),
mpf_ILLbasis_init_basisinfo (
mpf_lpinfo * lp);
#endif /* mpf___BASIS_H */
|