Skip to content

Commit bbba21f

Browse files
committed
documentation
1 parent d9c84f5 commit bbba21f

File tree

2 files changed

+17
-4
lines changed

2 files changed

+17
-4
lines changed

README.md

+15-2
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,22 @@ Scuttle is a multi-objective MaxSAT solver written in Rust and based on the
66

77
## Algorithms
88

9-
For now the only implemented algorithm is P-minimal model enumeration.
9+
| `--algorithm=` | Description |
10+
| ---------------- | ------------------------------------------------------------------------- |
11+
| `p-minimal` | P-Minimal model enumeration as described in \[1\] and \[2\] |
12+
| `lower-bounding` | Lower-bounding search as described in \[3\] (called "core-guiding" there) |
1013

11-
> Soh, T., Banbara, M., Tamura, N., & Le Berre, D. (2017). _Solving Multiobjective Discrete Optimization Problems with Propositional Minimal Model Generation_. CP.
14+
### References
15+
16+
- \[1\] Takehide Soh and Mutsunori Banbara and Naoyuki Tamura and Daniel Le
17+
Berre: _Solving Multiobjective Discrete Optimization Problems with
18+
Propositional Minimal Model Generation_, CP 2017.
19+
- \[2\] Miyuki Koshimura and Hidetomo Nabeshima and Hiroshi Fujita and Ryuzo
20+
Hasegawa: _Minimal Model Generation with Respect to an Atom Set_, FTP
21+
2009.
22+
- \[3\] Joao Cortes and Ines Lynce and Vasco M. Maquinho: _New Core-Guided
23+
and Hitting Set Algorithms for Multi-Objective Combinatorial Optimization_,
24+
TACAS 2023.
1225

1326
## What's The Name
1427

src/solver/lowerbounding.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@
55
//! ## References
66
//!
77
//! - \[1\] Joao Cortes and Ines Lynce and Vasco M. Maquinho: _New Core-Guided
8-
//! and Hitting Set Algorithms for Multi-Objective Combinatorial Optimization_,
9-
//! TACAS 2023.
8+
//! and Hitting Set Algorithms for Multi-Objective Combinatorial Optimization_,
9+
//! TACAS 2023.
1010
1111
use rustsat::{
1212
encodings::{self, card, pb},

0 commit comments

Comments
 (0)