Skip to content

Commit 1f35a32

Browse files
authored
Update scip.pxi
hopefully ended white space errors
1 parent 9a5b9e5 commit 1f35a32

File tree

1 file changed

+20
-20
lines changed

1 file changed

+20
-20
lines changed

src/pyscipopt/scip.pxi

Lines changed: 20 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -6836,20 +6836,20 @@ cdef class Model:
68366836

68376837
def copyLargeNeighborhoodSearch(self, to_fix, fix_vals) -> Model:
68386838
"""
6839-
Creates a copy of the transformed model
6840-
6841-
Parameters
6842-
----------
6843-
to_fix : List[Variable]
6844-
A list of variables to fix in the copy
6839+
Creates a copy of the transformed model
6840+
6841+
Parameters
6842+
----------
6843+
to_fix : List[Variable]
6844+
A list of variables to fix in the copy
68456845
fix_vals : List[Real]
6846-
A list of the values to which to fix the variables in the copy (care their order)
6847-
6846+
A list of the values to which to fix the variables in the copy (care their order)
6847+
68486848
Returns
68496849
-------
68506850
model : Model
6851-
A model containing the created copy
6852-
6851+
A model containing the created copy
6852+
68536853
"""
68546854
orig_vars = SCIPgetVars(self._scip)
68556855
vars = <SCIP_VAR**> malloc(len(to_fix) * sizeof(SCIP_VAR*))
@@ -6880,22 +6880,22 @@ cdef class Model:
68806880

68816881
def translateSubSol(self, Model sub_model, Solution sol, heur) -> :
68826882
"""
6883-
Translates a solution of a model copy into a solution of the main model
6884-
6885-
Parameters
6886-
----------
6883+
Translates a solution of a model copy into a solution of the main model
6884+
6885+
Parameters
6886+
----------
68876887
sub_model : Model
6888-
The python-wrapper of the subscip
6888+
The python-wrapper of the subscip
68896889
sol : Solution
6890-
The python-wrapper of the solution of the subscip
6890+
The python-wrapper of the solution of the subscip
68916891
heur : Heur
6892-
The python-wrapper of the heuristic that found the solution
6893-
6892+
The python-wrapper of the heuristic that found the solution
6893+
68946894
Returns
68956895
-------
68966896
solution : Solution
6897-
The corresponding solution in the main model
6898-
6897+
The corresponding solution in the main model
6898+
68996899
"""
69006900
cdef SCIP_SOL* real_sol
69016901
cdef SCIP_SOL* subscip_sol

0 commit comments

Comments
 (0)