Scippy

SCIP

Solving Constraint Integer Programs

Detailed Description

methods to include specific nonlinear handlers into SCIP

This module contains methods to include specific nonlinear handlers into SCIP.

Note
All default plugins can be included at once (including all default nonlinear handlers) using SCIPincludeDefaultPlugins()

Functions

SCIP_RETCODE SCIPincludeNlhdlrBilinear (SCIP *scip)
 
SCIP_RETCODE SCIPincludeNlhdlrConvex (SCIP *scip)
 
SCIP_RETCODE SCIPincludeNlhdlrConcave (SCIP *scip)
 
SCIP_RETCODE SCIPincludeNlhdlrDefault (SCIP *scip)
 
SCIP_RETCODE SCIPincludeNlhdlrPerspective (SCIP *scip)
 
SCIP_RETCODE SCIPincludeNlhdlrQuadratic (SCIP *scip)
 
SCIP_RETCODE SCIPincludeNlhdlrQuotient (SCIP *scip)
 
SCIP_RETCODE SCIPincludeNlhdlrSoc (SCIP *scip)
 

Function Documentation

◆ SCIPincludeNlhdlrBilinear()

◆ SCIPincludeNlhdlrConvex()

◆ SCIPincludeNlhdlrConcave()

◆ SCIPincludeNlhdlrDefault()

SCIP_RETCODE SCIPincludeNlhdlrDefault ( SCIP scip)

includes default nonlinear handler in nonlinear constraint handler

Parameters
scipSCIP data structure

Definition at line 602 of file nlhdlr_default.c.

References NLHDLR_DESC, NLHDLR_DETECTPRIORITY, NLHDLR_ENFOPRIORITY, NLHDLR_NAME, NULL, SCIP_CALL, SCIP_OKAY, SCIPincludeNlhdlrNonlinear(), SCIPnlhdlrSetCopyHdlr(), SCIPnlhdlrSetFreeExprData(), SCIPnlhdlrSetProp(), and SCIPnlhdlrSetSepa().

Referenced by SCIP_DECL_NLHDLRCOPYHDLR(), and SCIPincludeDefaultPlugins().

◆ SCIPincludeNlhdlrPerspective()

◆ SCIPincludeNlhdlrQuadratic()

◆ SCIPincludeNlhdlrQuotient()

SCIP_RETCODE SCIPincludeNlhdlrQuotient ( SCIP scip)

includes quotient nonlinear handler in nonlinear constraint handler

Parameters
scipSCIP data structure

Definition at line 1260 of file nlhdlr_quotient.c.

References NLHDLR_DESC, NLHDLR_DETECTPRIORITY, NLHDLR_ENFOPRIORITY, NLHDLR_NAME, NULL, SCIP_CALL, SCIP_OKAY, SCIPincludeNlhdlrNonlinear(), SCIPnlhdlrSetCopyHdlr(), SCIPnlhdlrSetFreeExprData(), SCIPnlhdlrSetProp(), and SCIPnlhdlrSetSepa().

Referenced by SCIP_DECL_NLHDLRCOPYHDLR(), and SCIPincludeDefaultPlugins().

◆ SCIPincludeNlhdlrSoc()