Skip to content

Commit

Permalink
Update docstring
Browse files Browse the repository at this point in the history
  • Loading branch information
Joao-Dionisio authored Jan 15, 2025
1 parent c938854 commit e9506a2
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/pyscipopt/scip.pxi
Original file line number Diff line number Diff line change
Expand Up @@ -6836,7 +6836,7 @@ cdef class Model:

def copyLargeNeighborhoodSearch(self, to_fix, fix_vals) -> Model:
"""
Creates a copy of the transformed model
Creates a configured copy of the transformed problem and applies provided fixings intended for LNS heuristics.

Parameters
----------
Expand All @@ -6849,8 +6849,8 @@ cdef class Model:
-------
model : Model
A model containing the created copy

"""

orig_vars = SCIPgetVars(self._scip)
vars = <SCIP_VAR**> malloc(len(to_fix) * sizeof(SCIP_VAR*))
vals = <SCIP_Real*> malloc(len(fix_vals) * sizeof(SCIP_Real))
Expand Down Expand Up @@ -6895,8 +6895,8 @@ cdef class Model:
-------
solution : Solution
The corresponding solution in the main model

"""

cdef SCIP_SOL* real_sol
cdef SCIP_SOL* subscip_sol
cdef SCIP_Bool success
Expand Down

0 comments on commit e9506a2

Please sign in to comment.