Scippy

SCIP

Solving Constraint Integer Programs

main.c
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-2022 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 visit scipopt.org. */
13 /* */
14 /* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
15 
16 /**@file Coloring/src/main.c
17  * @brief Main file for C compilation
18  * @author Gerald Gamrath
19  */
20 
21 /*--+----1----+----2----+----3----+----4----+----5----+----6----+----7----+----8----+----9----+----0----+----1----+----2*/
22 
23 
24 #include "reader_col.h"
25 #include "scip/scip.h"
26 #include "scip/scipdefplugins.h"
27 #include "scip/scipshell.h"
28 #include "coloringplugins.h"
29 
30 static
32  int argc, /**< number of shell parameters */
33  char** argv, /**< array with shell parameters */
34  const char* defaultsetname /**< name of default settings file */
35  )
36 {
37  SCIP* scip = NULL;
38 
39  /*********
40  * Setup *
41  *********/
42 
43  /* initialize SCIP */
44  SCIP_CALL( SCIPcreate(&scip) );
45 
46  /* include coloring plugins */
48 
49  /* we explicitly enable the use of a debug solution for this main SCIP instance */
50  SCIPenableDebugSol(scip);
51 
52  /**********************************
53  * Process command line arguments *
54  **********************************/
55 
56  SCIP_CALL( SCIPprocessShellArguments(scip, argc, argv, defaultsetname) );
57 
58 
59  /********************
60  * Deinitialization *
61  ********************/
62 
63  SCIP_CALL( SCIPfree(&scip) );
64 
66 
67  return SCIP_OKAY;
68 }
69 
70 
71 int
73  int argc,
74  char** argv
75  )
76 {
77  SCIP_RETCODE retcode;
78 
79  retcode = SCIPrunColoringShell(argc, argv, "scip.set");
80 
81  if( retcode != SCIP_OKAY )
82  {
83  SCIPprintError(retcode);
84  return -1;
85  }
86 
87  return 0;
88 }
#define BMScheckEmptyMemory()
Definition: memory.h:148
enum SCIP_Retcode SCIP_RETCODE
Definition: type_retcode.h:54
SCIP_RETCODE SCIPincludeColoringPlugins(SCIP *scip)
file reader for vertex coloring instances
SCIP_RETCODE SCIPcreate(SCIP **scip)
Definition: scip_general.c:283
SCIP command line interface.
#define NULL
Definition: lpi_spx1.cpp:155
#define SCIP_CALL(x)
Definition: def.h:384
static SCIP_RETCODE SCIPrunColoringShell(int argc, char **argv, const char *defaultsetname)
Definition: main.c:31
SCIP_RETCODE SCIPprocessShellArguments(SCIP *scip, int argc, char **argv, const char *defaultsetname)
Definition: scipshell.c:217
void SCIPprintError(SCIP_RETCODE retcode)
Definition: scip_general.c:211
int main(int argc, char **argv)
Definition: main.c:53
default SCIP plugins
SCIP callable library.
SCIP_RETCODE SCIPfree(SCIP **scip)
Definition: scip_general.c:315
SCIP plugins for coloring.
void SCIPenableDebugSol(SCIP *scip)
Definition: scip_debug.c:48