From 4c51fafd245285f81ac5aa789b212338daf1e985 Mon Sep 17 00:00:00 2001 From: Mark Turner Date: Wed, 25 Sep 2024 18:14:04 +0200 Subject: [PATCH] Add dislcaimer. Remove incorrect warning --- docs/install.rst | 2 -- src/pyscipopt/scip.pxi | 3 ++- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/docs/install.rst b/docs/install.rst index b66ee7c26..d9cc7613b 100644 --- a/docs/install.rst +++ b/docs/install.rst @@ -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 `. diff --git a/src/pyscipopt/scip.pxi b/src/pyscipopt/scip.pxi index a57e322e7..e8fd5fd5f 100644 --- a/src/pyscipopt/scip.pxi +++ b/src/pyscipopt/scip.pxi @@ -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()