Scippy

SCIP

Solving Constraint Integer Programs

nlpi_worhp.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-2019 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 scip.zib.de. */
13 /* */
14 /* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
15 
16 /**@file nlpi_worhp.h
17  * @brief Worhp NLP interface
18  * @ingroup NLPIS
19  * @author Benjamin Mueller
20  * @author Renke Kuhlmann
21  */
22 
23 /*---+----1----+----2----+----3----+----4----+----5----+----6----+----7----+----8----+----9----+----0----+----1----+----2*/
24 
25 #ifndef __SCIP_NLPI_WORHP_H__
26 #define __SCIP_NLPI_WORHP_H__
27 
28 #include "nlpi/type_nlpi.h"
29 
30 #ifdef __cplusplus
31 extern "C" {
32 #endif
33 
34 /**@addtogroup NLPIS
35  *
36  * @{
37  */
38 
39 /** create solver interface for Worhp solver */
40 extern
42  BMS_BLKMEM* blkmem, /**< block memory data structure */
43  SCIP_NLPI** nlpi, /**< pointer to buffer for nlpi address */
44  SCIP_Bool useip /**< TRUE for using Interior Point, FALSE for SQP */
45  );
46 
47 /** gets string that identifies Worhp (version number) */
48 extern
49 const char* SCIPgetSolverNameWorhp(
50  void
51  );
52 
53 /** gets string that describes Worhp (version number) */
54 extern
55 const char* SCIPgetSolverDescWorhp(
56  void
57  );
58 
59 /** returns whether Worhp is available, i.e., whether it has been linked in */
60 extern
62  void
63  );
64 
65 /* @} */
66 
67 #ifdef __cplusplus
68 }
69 #endif
70 
71 #endif /* __SCIP_NLPI_WORHP_H__ */
const char * SCIPgetSolverDescWorhp(void)
Definition: nlpi_worhp.c:2447
enum SCIP_Retcode SCIP_RETCODE
Definition: type_retcode.h:53
SCIP_Bool SCIPisWorhpAvailableWorhp(void)
Definition: nlpi_worhp.c:2455
#define SCIP_Bool
Definition: def.h:69
const char * SCIPgetSolverNameWorhp(void)
Definition: nlpi_worhp.c:2433
SCIP_RETCODE SCIPcreateNlpSolverWorhp(BMS_BLKMEM *blkmem, SCIP_NLPI **nlpi, SCIP_Bool useip)
Definition: nlpi_worhp.c:2369
struct BMS_BlkMem BMS_BLKMEM
Definition: memory.h:426
type definitions for specific NLP solver interfaces