Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
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
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