-
Notifications
You must be signed in to change notification settings - Fork 293
Expand file tree
/
Copy pathipx_parameters.h
More file actions
76 lines (62 loc) · 1.52 KB
/
ipx_parameters.h
File metadata and controls
76 lines (62 loc) · 1.52 KB
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
#ifndef IPX_PARAMETERS_H_
#define IPX_PARAMETERS_H_
#include "io/HighsIO.h"
#include "ipm/ipx/ipx_config.h"
#include <iostream>
#ifdef __cplusplus
extern "C" {
#endif
struct ipx_parameters {
/* Solver control */
ipxint display;
const char* logfile;
double print_interval;
double time_limit;
bool analyse_basis_data;
/* Preprocessing */
ipxint dualize;
ipxint scale;
/* Interior point method */
ipxint ipm_maxiter;
double ipm_feasibility_tol;
double ipm_optimality_tol;
double ipm_drop_primal;
double ipm_drop_dual;
/* Linear solver */
double kkt_tol;
/* Basis construction in IPM */
ipxint crash_basis;
double dependency_tol;
double volume_tol;
ipxint rows_per_slice;
ipxint maxskip_updates;
/* LU factorization */
ipxint lu_kernel;
double lu_pivottol;
/* Crossover */
ipxint run_crossover;
double start_crossover_tol;
double pfeasibility_tol;
double dfeasibility_tol;
/* Debugging */
ipxint debug;
ipxint switchiter;
ipxint stop_at_switch;
ipxint update_heuristic;
ipxint maxpasses;
/* Centring */
ipxint run_centring;
ipxint max_centring_steps;
double centring_ratio_tolerance;
double centring_ratio_reduction;
double centring_alpha_scaling;
ipxint bad_products_tolerance;
/* HiGHS logging parameters */
bool highs_logging;
bool timeless_log;
const HighsLogOptions* log_options;
};
#ifdef __cplusplus
}
#endif
#endif /* IPX_PARAMETERS_H_ */