commonly used methods from different categories
Below you find a list of miscellaneous methods grouped by different categories
Topics | |
Memory Management | |
methods and macros to use the SCIP memory management | |
Timing | |
methods for timing | |
Bandit Algorithms | |
methods for bandit algorithms | |
Interval Arithmetics | |
methods for interval arithmetics | |
Public Variable Graph Methods | |
methods to create a variable graph and perform breadth-first search | |
Statistical tests | |
public methods for statistical tests | |
Linear Regression | |
methods for linear regression | |
GML Graphical Printing | |
GML graph printing methods. | |
Numerical Methods | |
commonly used numerical methods | |
Random Numbers | |
structures and methods for pseudo random number generation | |
Permutations Shuffling | |
methods for shuffling arrays | |
Arrays | |
miscellaneous methods for arrays | |
String Methods | |
commonly used methods for strings | |
File Methods | |
commonly used file methods | |
Algorithms for (Weighted) Median Selection | |
public methods for the selection of (weighted) k-median. | |
Sorting Algorithms | |
public methods for in place sorting of arrays | |
Functions | |
SCIP_Real | SCIPversion (void) |
int | SCIPmajorVersion (void) |
int | SCIPminorVersion (void) |
int | SCIPtechVersion (void) |
int | SCIPsubversion (void) |
void | SCIPprintVersion (SCIP *scip, FILE *file) |
void | SCIPprintBuildOptions (SCIP *scip, FILE *file) |
void | SCIPprintError (SCIP_RETCODE retcode) |
returns complete SCIP version number in the format "major . minor tech"
Definition at line 101 of file scip_general.c.
References i.
int SCIPmajorVersion | ( | void | ) |
returns SCIP major version
Definition at line 112 of file scip_general.c.
References i.
Referenced by SCIPprintVersion().
int SCIPminorVersion | ( | void | ) |
returns SCIP minor version
Definition at line 123 of file scip_general.c.
References i.
Referenced by SCIPprintVersion().
int SCIPtechVersion | ( | void | ) |
returns SCIP technical version
Definition at line 134 of file scip_general.c.
References i.
Referenced by SCIPprintVersion().
int SCIPsubversion | ( | void | ) |
returns SCIP sub version number
Definition at line 145 of file scip_general.c.
References SCIP_SUBVERSION.
Referenced by SCIPprintVersion().
prints a version information line to a file stream via the message handler system
scip | SCIP data structure |
file | output file (or NULL for standard output) |
Definition at line 156 of file scip_general.c.
References assert(), NULL, SCIP_COPYRIGHT, SCIPgetGitHash(), SCIPlpiGetSolverName(), SCIPmajorVersion(), SCIPmessageFPrintInfo(), SCIPminorVersion(), SCIPsubversion(), and SCIPtechVersion().
Referenced by execmain(), fromAmpl(), processArguments(), runSCIP(), SCIPprocessShellArguments(), solveClassification(), and solveMinIISC().
prints detailed information on the compile-time flags
scip | SCIP data structure |
file | output file (or NULL for standard output) |
Definition at line 191 of file scip_general.c.
References assert(), i, NULL, SCIPgetBuildFlags(), and SCIPmessageFPrintInfo().
Referenced by SCIPprocessShellArguments().
void SCIPprintError | ( | SCIP_RETCODE | retcode | ) |
prints error message for the given SCIP_RETCODE via the error prints method
retcode | SCIP return code causing the error |
Definition at line 221 of file scip_general.c.
References SCIPmessagePrintError(), and SCIPretcodePrintError().
Referenced by checkSolutionOrig(), and main().