File tree Expand file tree Collapse file tree 2 files changed +4
-0
lines changed
Expand file tree Collapse file tree 2 files changed +4
-0
lines changed Original file line number Diff line number Diff line change @@ -857,6 +857,7 @@ cdef extern from "scip/scip.h":
857857 SCIP_READERDATA* readerdata)
858858 SCIP_READER* SCIPfindReader(SCIP* scip, const char * name)
859859 SCIP_READERDATA* SCIPreaderGetData(SCIP_READER* reader)
860+ int SCIPgetNReaders(SCIP* scip)
860861
861862 # Event handler plugin
862863 SCIP_RETCODE SCIPincludeEventhdlr(SCIP* scip,
Original file line number Diff line number Diff line change @@ -4573,6 +4573,9 @@ cdef class Model:
45734573 """ Counts the number of feasible points of problem."""
45744574 PY_SCIP_CALL(SCIPcount(self ._scip))
45754575
4576+ def getNReaders (self ):
4577+ return SCIPgetNReaders(self ._scip)
4578+
45764579 def getNCountedSols (self ):
45774580 """ Get number of feasible solution."""
45784581 cdef SCIP_Bool valid
You can’t perform that action at this time.
0 commit comments