Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Added a comentary given credit to the author of CSDP library. At the
[simgrid.git] / include / csdp / parameters.h
1 /*
2   This file is part of the CSDP 5.0 package developed by Dr. Brian Borchers.
3   Which can be distributed under the LGPL licence. The source code and 
4   manual can be downloaded at http://euler.nmt.edu/~brian/csdp.html.
5
6   This include file contains declarations for a number of parameters that 
7   can affect the performance of CSDP.  You can adjust these parameters by 
8  
9     1. #include "parameters.h" in your code.
10     2. Declare struct paramstruc params;
11     3. Call init_params(params); to get default values.
12     4. Change the value of the parameter that you're interested in.
13
14
15
16   */
17
18 struct paramstruc {
19   double axtol;
20   double atytol;
21   double objtol;
22   double pinftol;
23   double dinftol;
24   int maxiter;
25   double minstepfrac;
26   double maxstepfrac;
27   double minstepp;
28   double minstepd;
29   int usexzgap;
30   int tweakgap;
31   int affine;
32   int perturbobj;
33   int fastmode;
34 };
35
36
37
38
39
40