Scippy

SCIP

Solving Constraint Integer Programs

xternal_relaxator.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-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 xternal_relaxator.c
17  * @brief Main documentation page of the Relaxator example
18  * @author Benjamin Mueller
19  */
20 
21 /*--+----1----+----2----+----3----+----4----+----5----+----6----+----7----+----8----+----9----+----0----+----1----+----2*/
22 
23 /**@page RELAXATOR_MAIN Relaxator Example
24  * @author Benjamin Mueller
25  *
26  * This example illustrates how to write a relaxator for SCIP. It extends the default plugins of <a
27  * href="http://scip.zib.de">SCIP</a> by two additional relaxator plugins, one for solving the linear and another one
28  * for solving the convex nonlinear relaxation. Both relaxators are called in each node of the branch-and-bound tree.
29  */