Skip to content

Commit d6b200d

Browse files
committed
Bump version
1 parent 156ab6d commit d6b200d

File tree

4 files changed

+5
-18
lines changed

4 files changed

+5
-18
lines changed

CHANGELOG.md

Lines changed: 2 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -2,24 +2,11 @@
22

33
All notable changes to this project will be documented in this file.
44

5-
## [Unreleased]
6-
### Added
7-
- Reified comparison constraints for FlatZinc Phase 2 integration:
8-
- `int_lt_reif(x, y, b)` - Reified less-than: b ⇔ (x < y)
9-
- `int_le_reif(x, y, b)` - Reified less-or-equal: b ⇔ (x ≤ y)
10-
- `int_gt_reif(x, y, b)` - Reified greater-than: b ⇔ (x > y)
11-
- `int_ge_reif(x, y, b)` - Reified greater-or-equal: b ⇔ (x ≥ y)
12-
- Comprehensive integration tests for Phase 2 constraints (12 tests, all passing)
13-
- Example demonstrating reification comparison constraints with 5 use cases
14-
- Documentation: `docs/development/PHASE2_REIFICATION_COMPARISON.md`
15-
16-
### Fixed
17-
- Critical bug: Reification constraints were being removed during constraint optimization
18-
- Added all reification constraint types to `constraint_types_to_optimize` list
19-
- Ensures reification propagators are preserved during `prepare_for_search()`
205

216
## [0.8.6] - 2025-10-01
227
- Linear Constraint Helpers
8+
- Constrain propagation bug fixed
9+
- Reified b ⇔ (x < y), b ⇔ (x ≤ y), b ⇔ (x > y), b ⇔ (x ≥ y)
2310

2411
## [0.8.5] - 2025-10-01
2512
- Implemented reified constraint.

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "selen"
3-
version = "0.8.5"
3+
version = "0.8.6"
44
edition = "2024"
55
description = "Constraint Satisfaction Problem (CSP) solver"
66
rust-version = "1.88"

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ Add this to your `Cargo.toml`:
5151

5252
```toml
5353
[dependencies]
54-
selen = "0.8.5"
54+
selen = "0.8.6"
5555
```
5656

5757
```

0 commit comments

Comments
 (0)