Skip to content

Update to SCIP 9.2.1 #37

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 3 commits into
base: main
Choose a base branch
from
Open
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
6 changes: 3 additions & 3 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -71,9 +71,9 @@ jobs:
boost_version: 1.84.0
- name: Install SCIP
run: |
wget https://github.com/scipopt/scip/releases/download/v920/SCIPOptSuite-9.2.0-Linux-ubuntu22.sh
chmod +x SCIPOptSuite-9.2.0-Linux-ubuntu22.sh
./SCIPOptSuite-9.2.0-Linux-ubuntu22.sh --skip-license
wget https://github.com/scipopt/scip/releases/download/v921/SCIPOptSuite-9.2.1-Linux-ubuntu22.sh
chmod +x SCIPOptSuite-9.2.1-Linux-ubuntu22.sh
./SCIPOptSuite-9.2.1-Linux-ubuntu22.sh --skip-license
- name: Build SCIP++
run: |
CMAKE_PREFIX_PATH=./lib/cmake/scip:./boost/boost/lib/cmake/Boost-1.84.0 cmake -DBUILD_TESTS=ON .
Expand Down
2 changes: 1 addition & 1 deletion changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

### Changed

- [PR27](https://github.com/scipopt/SCIPpp/pull/27) Update to SCIP 9.2.0.
- [PR37](https://github.com/scipopt/SCIPpp/pull/37) Update to SCIP 9.2.1.

## Added

Expand Down
4 changes: 2 additions & 2 deletions conanfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -67,13 +67,13 @@ def set_version(self):
try:
self.version = git.run("describe --tags --dirty=-d").strip()
except:
self.version = "1.3.0-alpha"
self.version = "1.3.0"

def layout(self):
cmake_layout(self)

def requirements(self):
self.requires("scip/9.2.0", transitive_headers=True)
self.requires("scip/9.2.1", transitive_headers=True)
if self.options.with_tests:
self.requires("boost/[>=1.84.0 <2]") # required only for tests

Expand Down
2 changes: 1 addition & 1 deletion include/scippp/parameters.hpp
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#pragma once

// This file is automatically generated using gen_constexpr_parameters from the utils
// updated for SCIP 9.2.0
// updated for SCIP 9.2.1

#include "scippp/param.hpp"
#undef INFINITY
Expand Down
Loading