Scippy

SCIP

Solving Constraint Integer Programs

reader_gms.h
Go to the documentation of this file.
1 /* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
2 /* */
3 /* This file is part of the program and library */
4 /* SCIP --- Solving Constraint Integer Programs */
5 /* */
6 /* Copyright (C) 2002-2014 Konrad-Zuse-Zentrum */
7 /* fuer Informationstechnik Berlin */
8 /* */
9 /* SCIP is distributed under the terms of the ZIB Academic License. */
10 /* */
11 /* You should have received a copy of the ZIB Academic License */
12 /* along with SCIP; see the file COPYING. If not email to scip@zib.de. */
13 /* */
14 /* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
15 
16 /**@file reader_gms.h
17  * @ingroup FILEREADERS
18  * @brief GAMS file reader and writer
19  * @author Ambros Gleixner
20  *
21  * This reader writes a CIP in GAMS format.
22  * It can write all kinds of linear and nonlinear constraints (as occurring in MINLPs) and indicator constraints.
23  *
24  * If SCIP has been compiled with GAMS=true, it can also read GAMS model instances.
25  * This requires a working GAMS system.
26  */
27 
28 /*---+----1----+----2----+----3----+----4----+----5----+----6----+----7----+----8----+----9----+----0----+----1----+----2*/
29 
30 #ifndef __SCIP_READER_GMS_H__
31 #define __SCIP_READER_GMS_H__
32 
33 
34 #include "scip/scip.h"
35 
36 #ifdef __cplusplus
37 extern "C" {
38 #endif
39 
40 /** includes the gms file reader into SCIP */
41 extern
43  SCIP* scip /**< SCIP data structure */
44  );
45 
46 /** writes problem to file */
47 extern
49  SCIP* scip, /**< SCIP data structure */
50  FILE* file, /**< output file, or NULL if standard output should be used */
51  const char* name, /**< problem name */
52  SCIP_Bool transformed, /**< TRUE iff problem is the transformed problem */
53  SCIP_OBJSENSE objsense, /**< objective sense */
54  SCIP_Real objscale, /**< scalar applied to objective function; external objective value is
55  * extobj = objsense * objscale * (intobj + objoffset) */
56  SCIP_Real objoffset, /**< objective offset from bound shifting and fixing */
57  SCIP_VAR** vars, /**< array with active variables ordered binary, integer, implicit, continuous */
58  int nvars, /**< number of active variables in the problem */
59  int nbinvars, /**< number of binary variables */
60  int nintvars, /**< number of general integer variables */
61  int nimplvars, /**< number of implicit integer variables */
62  int ncontvars, /**< number of continuous variables */
63  SCIP_CONS** conss, /**< array with constraints of the problem */
64  int nconss, /**< number of constraints in the problem */
65  SCIP_RESULT* result /**< pointer to store the result of the file writing call */
66  );
67 
68 #ifdef __cplusplus
69 }
70 #endif
71 
72 #endif
73