Skip to content

Commit 354f216

Browse files
committed
Update dependencies
1 parent 3ba9834 commit 354f216

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

.github/workflows/build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,8 @@ jobs:
2424
uses: actions/setup-python@v4
2525
with:
2626
python-version: ${{ matrix.python-version }}
27-
- name: Install nauty
28-
run: sudo apt-get install -y libnauty2-dev
27+
- name: Install dependencies
28+
run: sudo apt-get -y install liblapack-dev libbz2-dev
2929
if: matrix.os == 'ubuntu-latest'
3030
- name: Install CLP (MacOS)
3131
run: |

extern/CMakeLists.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ FetchContent_MakeAvailable(Boost)
1515
FetchContent_Declare(
1616
optimizationtools
1717
GIT_REPOSITORY https://github.com/fontanf/optimizationtools.git
18-
GIT_TAG a0973a7dfa64b9d305f75879c80d252e714ce2cf
18+
GIT_TAG dd6359ddc0996247f3a571e5d71606286dbab326
1919
#SOURCE_DIR "${PROJECT_SOURCE_DIR}/../optimizationtools/"
2020
EXCLUDE_FROM_ALL)
2121
FetchContent_MakeAvailable(optimizationtools)
@@ -39,7 +39,7 @@ endif()
3939
FetchContent_Declare(
4040
mathoptsolverscmake
4141
GIT_REPOSITORY https://github.com/fontanf/mathoptsolverscmake.git
42-
GIT_TAG 80cd13a843e2c10684abbfe76cf9aae0d71ff79d
42+
GIT_TAG 4472814a28a40f4d861ccd757e140835c3a31bd0
4343
#SOURCE_DIR "${PROJECT_SOURCE_DIR}/../mathoptsolverscmake/"
4444
EXCLUDE_FROM_ALL)
4545
FetchContent_MakeAvailable(mathoptsolverscmake)

src/clique/algorithms/local_search.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -555,7 +555,7 @@ const Output stablesolver::clique::local_search(
555555
llsbfls_parameters.initial_solution_ids = std::vector<Counter>(
556556
llsbfls_parameters.number_of_threads_2, 0);
557557
bool end = false;
558-
llsbfls_parameters.timer.set_end_boolean(&end);
558+
llsbfls_parameters.timer.add_end_boolean(&end);
559559
llsbfls_parameters.new_solution_callback
560560
= [&instance, &output, &algorithm_formatter, &end](
561561
const localsearchsolver::Output<LocalScheme>& lss_output)

0 commit comments

Comments
 (0)