Skip to content
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
1 change: 1 addition & 0 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions pumpkin-solver/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ pumpkin-core = { version = "0.5.0", path = "../pumpkin-crates/core/", features =
pumpkin-constraints = { version = "0.5.0", path = "../pumpkin-crates/constraints/"}
pumpkin-propagators = { version = "0.5.0", path = "../pumpkin-crates/propagators/", features=["clap"]}
pumpkin-conflict-resolvers = { version = "0.5.0", path = "../pumpkin-crates/conflict-resolvers/"}
pumpkin-checking = { version = "0.5.0", path = "../pumpkin-crates/checking/"}
signal-hook = "0.4.4"
thiserror = "2.0.12"

Expand Down
8 changes: 8 additions & 0 deletions pumpkin-solver/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -347,6 +347,14 @@ pub mod propagators {
pub use pumpkin_propagators::*;
}

pub mod checking {
//! Exposes a common interface used to check inferences.
//!
//! The main exposed type is the [`InferenceChecker`], which can be implemented to verify
//! whether inferences are sound w.r.t. an inference rule.
pub use pumpkin_checking::*;
}

pub mod core {
//! The core interfaces and structures used by the pumpkin solver.
pub use pumpkin_core::*;
Expand Down
Loading