Skip to content

Commit

Permalink
Add dislcaimer. Remove incorrect warning (#902)
Browse files Browse the repository at this point in the history
  • Loading branch information
Opt-Mucca authored Sep 25, 2024
1 parent 729420c commit 0ecd8eb
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
2 changes: 0 additions & 2 deletions docs/install.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,6 @@
Installation Guide
##################

**This file is deprecated and will be removed soon. Please see the online documentation.**

This page will detail all methods for installing PySCIPOpt via package managers,
which come with their own versions of SCIP. For building PySCIPOpt against your
own custom version of SCIP, or for building PySCIPOpt from source, visit :doc:`this page </build>`.
Expand Down
3 changes: 2 additions & 1 deletion src/pyscipopt/scip.pxi
Original file line number Diff line number Diff line change
Expand Up @@ -6164,7 +6164,8 @@ cdef class Model:

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

0 comments on commit 0ecd8eb

Please sign in to comment.