InterviewSolution
| 1. |
Can I Remove Unnecessary Display Columns Or—even Better—add My Own Ones? Can I Change The Statistics Displayed At The End Of Solving? |
|
Answer» Setting the status of a display column to 0 turns it off. E.g., type set display memused status 0 in the interactive SHELL to disable the memory information column, or include the line SCIP setIntParam (scip, "display/memused/status", 0) into your source CODE. ADDING your own display column can be done by CALLING the SCIP includeDisp () method, see the doxygen documentation. The statistic display, which is shown by display statistics and SCIP print Statistics (), respectively, cannot be changed. Setting the status of a display column to 0 turns it off. E.g., type set display memused status 0 in the interactive shell to disable the memory information column, or include the line SCIP setIntParam (scip, "display/memused/status", 0) into your source code. Adding your own display column can be done by calling the SCIP includeDisp () method, see the doxygen documentation. The statistic display, which is shown by display statistics and SCIP print Statistics (), respectively, cannot be changed. |
|