DSDP
dsdpconverge.h
Go to the documentation of this file.
1#ifndef __DSDP_CONVERGE_H
2#define __DSDP_CONVERGE_H
7#define DSDPHistory 200
8typedef struct {
9 int history; /* length of records for iter, alpha, relgap */
10 double alpha[DSDPHistory]; /* History of stepsize */
11 double gaphist[DSDPHistory]; /* History of duality gap */
12 double infhist[DSDPHistory]; /* History of dual infeasiblity */
13
14 double steptol;
15 double rgaptol;
16 double pnormtol;
17 double dualbound;
18} ConvergenceMonitor;
19#endif