Skip to content

Commit 0ecd8eb

Browse files
authored
Add dislcaimer. Remove incorrect warning (#902)
1 parent 729420c commit 0ecd8eb

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

docs/install.rst

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,6 @@
22
Installation Guide
33
##################
44

5-
**This file is deprecated and will be removed soon. Please see the online documentation.**
6-
75
This page will detail all methods for installing PySCIPOpt via package managers,
86
which come with their own versions of SCIP. For building PySCIPOpt against your
97
own custom version of SCIP, or for building PySCIPOpt from source, visit :doc:`this page </build>`.

src/pyscipopt/scip.pxi

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6164,7 +6164,8 @@ cdef class Model:
61646164

61656165
def solveConcurrent(self):
61666166
"""Transforms, presolves, and solves problem using additional solvers which emphasize on
6167-
finding solutions."""
6167+
finding solutions.
6168+
WARNING: This feature is still experimental and prone to some errors."""
61686169
if SCIPtpiGetNumThreads() == 1:
61696170
warnings.warn("SCIP was compiled without task processing interface. Parallel solve not possible - using optimize() instead of solveConcurrent()")
61706171
self.optimize()

0 commit comments

Comments
 (0)