Thanks to visit codestin.com
Credit goes to github.com

Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Remove redeclaration
  • Loading branch information
Joao-Dionisio committed May 7, 2025
commit 9c7659ce5dbd4675acbf7732086311e7287eaa3c
1 change: 0 additions & 1 deletion src/pyscipopt/scip.pxd
Original file line number Diff line number Diff line change
Expand Up @@ -1502,7 +1502,6 @@ cdef extern from "scip/cons_knapsack.h"
SCIP_Real SCIPgetDualfarkasKnapsack(SCIP* scip, SCIP_CONS* cons)
SCIP_RETCODE SCIPchgCapacityKnapsack(SCIP* scip, SCIP_CONS* cons, SCIP_Real rhs)
SCIP_Real SCIPgetCapacityKnapsack(SCIP* scip, SCIP_CONS* cons)
SCIP_RETCODE SCIPaddCoefKnapsack(SCIP* scip, SCIP_CONS* cons, SCIP_VAR*, SCIP_Real val)
SCIP_VAR** SCIPgetVarsKnapsack(SCIP* scip, SCIP_CONS* cons)
int SCIPgetNVarsKnapsack(SCIP* scip, SCIP_CONS* cons)
SCIP_Real* SCIPgetWeightsKnapsack(SCIP* scip, SCIP_CONS* cons)
Expand Down
2 changes: 1 addition & 1 deletion src/pyscipopt/scip.pxi
Original file line number Diff line number Diff line change
Expand Up @@ -6645,7 +6645,7 @@ cdef class Model:

def getRhs(self, Constraint cons):
"""
Retrieve right-hand side value of a linear constraint.
Retrieve right-hand side value of a constraint.

Parameters
----------
Expand Down