00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024 #ifndef dbl___RATIO_H
00025 #define dbl___RATIO_H
00026 #include "basicdefs.h"
00027 typedef struct dbl_ratio_res
00028 {
00029 double tz;
00030 int eindex;
00031 int lindex;
00032 int lvstat;
00033 int ratio_stat;
00034 int boundch;
00035 int coeffch;
00036 double lbound;
00037 double ecoeff;
00038 double pivotval;
00039 }
00040 dbl_ratio_res;
00041
00042 void dbl_ILLratio_pI_test (
00043 dbl_lpinfo * const lp,
00044 int const eindex,
00045 int const dir,
00046 dbl_ratio_res * const rs),
00047 dbl_ILLratio_pII_test (
00048 dbl_lpinfo * const lp,
00049 int const eindex,
00050 int const dir,
00051 dbl_ratio_res * const rs),
00052 dbl_ILLratio_dI_test (
00053 dbl_lpinfo * const lp,
00054 int const lindex,
00055 int const lvstat,
00056 dbl_ratio_res * const rs),
00057 dbl_ILLratio_dII_test (
00058 dbl_lpinfo * const lp,
00059 int const lindex,
00060 int const lvstat,
00061 dbl_ratio_res * const rs),
00062 dbl_ILLratio_longdII_test (
00063 dbl_lpinfo * const lp,
00064 int const lindex,
00065 int const lvstat,
00066 dbl_ratio_res * const rs),
00067 dbl_ILLratio_pivotin_test (
00068 dbl_lpinfo * const lp,
00069 int *const rlist,
00070 int const rcnt,
00071 dbl_ratio_res * const rs);
00072
00073 #endif