Skip to content

Commit 81395b2

Browse files
committed
typo
1 parent 97434b5 commit 81395b2

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/pyscipopt/scip.pxd

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -827,7 +827,7 @@ cdef extern from "scip/scip.h":
827827
SCIP_Bool SCIPvarIsBinary(SCIP_VAR* var)
828828
SCIP_Bool SCIPvarIsIntegral(SCIP_VAR* var)
829829
SCIP_Bool SCIPvarIsImpliedIntegral(SCIP_VAR* var)
830-
SCIP_Bool SCIPvarIsNonImpliedIntegral(SCIP_VAR* var)
830+
SCIP_Bool SCIPvarIsNonimpliedIntegral(SCIP_VAR* var)
831831
SCIP_IMPLINTTYPE SCIPvarGetImplType(SCIP_VAR* var)
832832
SCIP_Bool SCIPvarIsOriginal(SCIP_VAR* var)
833833
SCIP_Bool SCIPvarIsTransformed(SCIP_VAR* var)

src/pyscipopt/scip.pxi

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1575,7 +1575,7 @@ cdef class Variable(Expr):
15751575
-------
15761576
bool
15771577
"""
1578-
return SCIPvarIsNonImpliedIntegral(self.scip_var)
1578+
return SCIPvarIsNonimpliedIntegral(self.scip_var)
15791579

15801580
def getImplType(self):
15811581
"""

0 commit comments

Comments
 (0)