Scippy

SCIP

Solving Constraint Integer Programs

reader_pip.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-2017 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_pip.h
17  * @ingroup FILEREADERS
18  * @brief file reader for polynomial mixed-integer programs in PIP format
19  * @author Stefan Vigerske
20  *
21  * This reader allows to parse and write PIP files with linear and polynomial constraints and objective.
22  * For writing, linear (general and specialized), quadratic, and "and" constraints are supported.
23  * Also abspower, bivariate, and nonlinear constraints may be written, if they are representable as polynomials.
24  *
25  * The PIP format is similar to the LP format and defined at http://polip.zib.de/pipformat.php .
26  */
27 
28 /*---+----1----+----2----+----3----+----4----+----5----+----6----+----7----+----8----+----9----+----0----+----1----+----2*/
29 
30 #ifndef __SCIP_READER_PIP_H__
31 #define __SCIP_READER_PIP_H__
32 
33 
34 #include "scip/scip.h"
35 
36 #ifdef __cplusplus
37 extern "C" {
38 #endif
39 
40 /** includes the pip file reader into SCIP
41  *
42  * @ingroup FileReaderIncludes
43  */
44 extern
46  SCIP* scip /**< SCIP data structure */
47  );
48 
49 /**@addtogroup FILEREADERS
50  *
51  * @{
52  */
53 
54 /** reads problem from file */
55 extern
57  SCIP* scip, /**< SCIP data structure */
58  SCIP_READER* reader, /**< the file reader itself */
59  const char* filename, /**< full path and name of file to read, or NULL if stdin should be used */
60  SCIP_RESULT* result /**< pointer to store the result of the file reading call */
61  );
62 
63 /** writes problem to file */
64 extern
66  SCIP* scip, /**< SCIP data structure */
67  FILE* file, /**< output file, or NULL if standard output should be used */
68  const char* name, /**< problem name */
69  SCIP_Bool transformed, /**< TRUE iff problem is the transformed problem */
70  SCIP_OBJSENSE objsense, /**< objective sense */
71  SCIP_Real objscale, /**< scalar applied to objective function; external objective value is
72  * extobj = objsense * objscale * (intobj + objoffset) */
73  SCIP_Real objoffset, /**< objective offset from bound shifting and fixing */
74  SCIP_VAR** vars, /**< array with active variables ordered binary, integer, implicit, continuous */
75  int nvars, /**< number of active variables in the problem */
76  int nbinvars, /**< number of binary variables */
77  int nintvars, /**< number of general integer variables */
78  int nimplvars, /**< number of implicit integer variables */
79  int ncontvars, /**< number of continuous variables */
80  SCIP_CONS** conss, /**< array with constraints of the problem */
81  int nconss, /**< number of constraints in the problem */
82  SCIP_RESULT* result /**< pointer to store the result of the file writing call */
83  );
84 
85 /* @} */
86 
87 #ifdef __cplusplus
88 }
89 #endif
90 
91 #endif
enum SCIP_Result SCIP_RESULT
Definition: type_result.h:52
SCIP_RETCODE SCIPreadPip(SCIP *scip, SCIP_READER *reader, const char *filename, SCIP_RESULT *result)
Definition: reader_pip.c:3753
enum SCIP_Retcode SCIP_RETCODE
Definition: type_retcode.h:53
#define SCIP_Bool
Definition: def.h:61
enum SCIP_Objsense SCIP_OBJSENSE
Definition: type_prob.h:41
SCIP_RETCODE SCIPincludeReaderPip(SCIP *scip)
Definition: reader_pip.c:3734
SCIP_RETCODE SCIPwritePip(SCIP *scip, FILE *file, const char *name, SCIP_Bool transformed, SCIP_OBJSENSE objsense, SCIP_Real objscale, SCIP_Real objoffset, SCIP_VAR **vars, int nvars, int nbinvars, int nintvars, int nimplvars, int ncontvars, SCIP_CONS **conss, int nconss, SCIP_RESULT *result)
Definition: reader_pip.c:2942
#define SCIP_Real
Definition: def.h:135
SCIP callable library.