From 682242216c8b32c75edcb5e28d35bf8ab184baa6 Mon Sep 17 00:00:00 2001 From: Joao-Dionisio Date: Wed, 12 Nov 2025 14:04:40 +0000 Subject: [PATCH] status and aggregation stubs --- src/pyscipopt/scip.pyi | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/pyscipopt/scip.pyi b/src/pyscipopt/scip.pyi index e1926d7f8..1c1b0f841 100644 --- a/src/pyscipopt/scip.pyi +++ b/src/pyscipopt/scip.pyi @@ -459,6 +459,8 @@ class Model: def chgVarObjDive(self, *args, **kwargs): ... def chgVarObjProbing(self, *args, **kwargs): ... def chgVarType(self, *args, **kwargs): ... + def markDoNotAggrVar(self, *args, **kwargs): ... + def markDoNotMultaggrVar(self, *args, **kwargs): ... def chgVarUb(self, *args, **kwargs): ... def chgVarUbDive(self, *args, **kwargs): ... def chgVarUbGlobal(self, *args, **kwargs): ... @@ -1325,11 +1327,13 @@ class Variable(Expr): def isDeletable(self, *args, **kwargs): ... def isInLP(self, *args, **kwargs): ... def isOriginal(self, *args, **kwargs): ... + def isActive(self, *args, **kwargs): ... def isRelaxationOnly(self, *args, **kwargs): ... def markRelaxationOnly(self, *args, **kwargs): ... def ptr(self, *args, **kwargs): ... def varMayRound(self, *args, **kwargs): ... def vtype(self, *args, **kwargs): ... + def getStatus(self, *args, **kwargs): ... class _VarArray: def __init__(self, *args, **kwargs) -> None: ...