C++ wrapper for file readers and writers.
This class defines the interface for file readers and writers implemented in C++.
Definition at line 42 of file objreader.h.
#include <objreader.h>
Public Member Functions | |
ObjReader (SCIP *scip, const char *name, const char *desc, const char *extension) | |
virtual | ~ObjReader () |
virtual | SCIP_DECL_READERFREE (scip_free) |
virtual | SCIP_DECL_READERREAD (scip_read) |
virtual | SCIP_DECL_READERWRITE (scip_write) |
Public Member Functions inherited from scip::ObjCloneable | |
virtual | ~ObjCloneable () |
virtual | SCIP_DECL_OBJCLONEABLECLONE (ObjCloneable *clone) |
virtual | SCIP_DECL_OBJCLONEABLEISCLONEABLE (iscloneable) |
Data Fields | |
SCIP * | scip_ |
char * | scip_name_ |
char * | scip_desc_ |
char * | scip_extension_ |
|
inline |
default constructor
scip | SCIP data structure |
name | name of file reader |
desc | description of file reader |
extension | file extension that reader processes |
Definition at line 60 of file objreader.h.
References SCIP_CALL_ABORT, and SCIPduplicateMemoryArray.
|
inlinevirtual |
|
inlinevirtual |
destructor of file reader to free user data (called when SCIP is exiting)
Reimplemented in tsp::ReaderTSP.
Definition at line 91 of file objreader.h.
References SCIP_OKAY.
|
inlinevirtual |
problem reading method of reader
Reimplemented in tsp::ReaderTSP.
Definition at line 100 of file objreader.h.
References NULL, SCIP_DIDNOTRUN, and SCIP_OKAY.
|
inlinevirtual |
problem writing method of reader; NOTE: if the parameter "genericnames" is TRUE, then SCIP already set all variable and constraint names to generic names; therefore, this method should always use SCIPvarGetName() and SCIPconsGetName();
Reimplemented in tsp::ReaderTSP.
Definition at line 116 of file objreader.h.
References NULL, SCIP_Bool, SCIP_DIDNOTRUN, SCIP_OKAY, SCIPfindObjReader(), SCIPgetObjReader(), and SCIPincludeObjReader().
SCIP* scip::ObjReader::scip_ |
SCIP data structure
Definition at line 48 of file objreader.h.
char* scip::ObjReader::scip_name_ |
name of the file reader
Definition at line 51 of file objreader.h.
Referenced by SCIPincludeObjReader().
char* scip::ObjReader::scip_desc_ |
description of the file reader
Definition at line 54 of file objreader.h.
Referenced by SCIPincludeObjReader().
char* scip::ObjReader::scip_extension_ |
file extension that reader processes
Definition at line 57 of file objreader.h.
Referenced by SCIPincludeObjReader().