Skip to content

Commit 04711ee

Browse files
committed
Updating README and github-action scripts
1 parent 2ec7e60 commit 04711ee

File tree

3 files changed

+20
-1
lines changed

3 files changed

+20
-1
lines changed

.github/workflows/macos-build.yml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,13 @@ jobs:
1313

1414
steps:
1515
- uses: actions/checkout@v4
16+
- name: clone COMiniSatPS
17+
run: |
18+
cd ..
19+
git clone https://github.com/marekpiotrow/cominisatps
20+
cd cominisatps
21+
rm core simp mtl utils
22+
ln -s minisat/core minisat/simp minisat/mtl minisat/utils .
1623
- name: build CaDiCaL
1724
run: |
1825
cd ..

.github/workflows/msys2-build.yml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,13 @@ jobs:
2121
update: true
2222
install: git make patch unzip mingw-w64-ucrt-x86_64-toolchain mingw-w64-ucrt-x86_64-zlib mingw-w64-ucrt-x86_64-gmp
2323
- uses: actions/checkout@v4
24+
- name: clone COMiniSatPS
25+
run: |
26+
cd ..
27+
git clone https://github.com/marekpiotrow/cominisatps
28+
cd cominisatps
29+
rm core simp mtl utils
30+
ln -s minisat/core minisat/simp minisat/mtl minisat/utils .
2431
- name: build CaDiCaL
2532
run: |
2633
cd ..

README.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,13 @@ Since version 1.7.0 the default SAT solver is changed to CaDiCaL by Armin Biere.
1313
================================================================================
1414
### Quick Install
1515

16-
1. clone the repository into uwrmaxsat:
16+
1. clone the repositories into uwrmaxsat and cominisatps:
1717
git clone https://github.com/marekpiotrow/UWrMaxSat uwrmaxsat
18+
git clone https://github.com/marekpiotrow/cominisatps
19+
cd cominisatps
20+
rm core simp mtl utils
21+
ln -s minisat/core minisat/simp minisat/mtl minisat/utils .
22+
cd ..
1823

1924
2. clone and build the CaDiCaL SAT solver by Armin Biere:
2025
git clone https://github.com/arminbiere/cadical

0 commit comments

Comments
 (0)