reader.h
Go to the documentation of this file.
21 /*---+----1----+----2----+----3----+----4----+----5----+----6----+----7----+----8----+----9----+----0----+----1----+----2*/ 54 SCIP_DECL_READERCOPY ((*readercopy)), /**< copy method of reader or NULL if you don't want to copy your plugin into sub-SCIPs */ 113 SCIP_DECL_READERCOPY ((*readercopy)) /**< copy method of reader or NULL if you don't want to copy your plugin into sub-SCIPs */
Definition: struct_reader.h:35 SCIP_RETCODE SCIPreaderCreate(SCIP_READER **reader, const char *name, const char *desc, const char *extension, SCIP_DECL_READERCOPY((*readercopy)), SCIP_DECL_READERFREE((*readerfree)), SCIP_DECL_READERREAD((*readerread)), SCIP_DECL_READERWRITE((*readerwrite)), SCIP_READERDATA *readerdata) Definition: reader.c:61 type definitions for global SCIP settings SCIP_RETCODE SCIPreaderCopyInclude(SCIP_READER *reader, SCIP_SET *set) Definition: reader.c:43 Definition: struct_prob.h:38 type definitions for return codes for SCIP methods Definition: struct_set.h:56 void SCIPreaderSetFree(SCIP_READER *reader, SCIP_DECL_READERFREE((*readerfree))) Definition: reader.c:477 void SCIPreaderEnableOrDisableClocks(SCIP_READER *reader, SCIP_Bool enable) Definition: reader.c:570 void SCIPreaderSetCopy(SCIP_READER *reader, SCIP_DECL_READERCOPY((*readercopy))) Definition: reader.c:466 SCIP_Real SCIPreaderGetReadingTime(SCIP_READER *reader) Definition: reader.c:560 void SCIPreaderSetWrite(SCIP_READER *reader, SCIP_DECL_READERWRITE((*readerwrite))) Definition: reader.c:499 type definitions for input file readers type definitions for storing and manipulating the main problem void SCIPreaderSetRead(SCIP_READER *reader, SCIP_DECL_READERREAD((*readerread))) Definition: reader.c:488 SCIP_RETCODE SCIPreaderRead(SCIP_READER *reader, SCIP_SET *set, const char *filename, const char *extension, SCIP_RESULT *result) Definition: reader.c:136 SCIP_RETCODE SCIPreaderWrite(SCIP_READER *reader, SCIP_PROB *prob, SCIP_SET *set, FILE *file, const char *format, SCIP_Bool genericnames, SCIP_RESULT *result) Definition: reader.c:222 result codes for SCIP callback methods public methods for input file readers SCIP_RETCODE SCIPreaderFree(SCIP_READER **reader, SCIP_SET *set) Definition: reader.c:95 SCIP_RETCODE SCIPreaderResetReadingTime(SCIP_READER *reader) Definition: reader.c:581 common defines and data types used in all packages of SCIP |