scip_dialog.h
Go to the documentation of this file.
29 /*---+----1----+----2----+----3----+----4----+----5----+----6----+----7----+----8----+----9----+----0----+----1----+----2*/
70 * @return \ref SCIP_OKAY is returned if everything worked. Otherwise a suitable error code is passed. See \ref
77 SCIP_DECL_DIALOGCOPY ((*dialogcopy)), /**< copy method of dialog or NULL if you don't want to copy your plugin into sub-SCIPs */
99 * @return \ref SCIP_OKAY is returned if everything worked. otherwise a suitable error code is passed. see \ref
110 * @return \ref SCIP_OKAY is returned if everything worked. otherwise a suitable error code is passed. see \ref
119 /** makes given dialog the root dialog of SCIP's interactive user shell; captures dialog and releases former root dialog
121 * @return \ref SCIP_OKAY is returned if everything worked. otherwise a suitable error code is passed. see \ref
141 * @return \ref SCIP_OKAY is returned if everything worked. otherwise a suitable error code is passed. see \ref
153 * @return \ref SCIP_OKAY is returned if everything worked. otherwise a suitable error code is passed. see \ref
162 /** adds a single line of input to the command history which can be accessed with the cursor keys
164 * @return \ref SCIP_OKAY is returned if everything worked. otherwise a suitable error code is passed. see \ref
175 * @return \ref SCIP_OKAY is returned if everything worked. otherwise a suitable error code is passed. see \ref
182 * @post After calling this method \SCIP reaches one of the following stages depending on if and when the
185 * - \ref SCIP_STAGE_TRANSFORMED if the interactive shell was closed after the problem was transformed
internal methods for branch and bound tree
Definition: struct_scip.h:58
SCIP_RETCODE SCIPaddDialogEntry(SCIP *scip, SCIP_DIALOG *dialog, SCIP_DIALOG *subdialog)
Definition: scip_dialog.c:242
Definition: struct_dialog.h:36
SCIP_Bool SCIPexistsDialog(SCIP *scip, SCIP_DIALOG *dialog)
Definition: scip_dialog.c:163
type definitions for return codes for SCIP methods
SCIP_RETCODE SCIPcaptureDialog(SCIP *scip, SCIP_DIALOG *dialog)
Definition: scip_dialog.c:178
SCIP_RETCODE SCIPincludeDialog(SCIP *scip, SCIP_DIALOG **dialog, SCIP_DECL_DIALOGCOPY((*dialogcopy)), SCIP_DECL_DIALOGEXEC((*dialogexec)), SCIP_DECL_DIALOGDESC((*dialogdesc)), SCIP_DECL_DIALOGFREE((*dialogfree)), const char *name, const char *desc, SCIP_Bool issubmenu, SCIP_DIALOGDATA *dialogdata)
Definition: scip_dialog.c:130
SCIP_RETCODE SCIPaddDialogHistoryLine(SCIP *scip, const char *inputline)
Definition: scip_dialog.c:280
type definitions for SCIP's main datastructure
internal miscellaneous methods
internal methods for global SCIP settings
SCIP main data structure.
internal methods for problem variables
methods for debugging
datastructures for problem statistics
internal methods for main solving loop and node processing
type definitions for user interface dialog
internal methods for constraints and constraint handlers
SCIP_RETCODE SCIPreleaseDialog(SCIP *scip, SCIP_DIALOG **dialog)
Definition: scip_dialog.c:195
common defines and data types used in all packages of SCIP
Definition: objbenders.h:33
SCIP_RETCODE SCIPsetRootDialog(SCIP *scip, SCIP_DIALOG *dialog)
Definition: scip_dialog.c:212
SCIP_RETCODE SCIPaddDialogInputLine(SCIP *scip, const char *inputline)
Definition: scip_dialog.c:263