Skip to content

Commit 21ce4bb

Browse files
Rename project from "consensus" to "watchsat" across configuration and documentation files
1 parent b748393 commit 21ce4bb

4 files changed

Lines changed: 6 additions & 6 deletions

File tree

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,5 +1,5 @@
11
[package]
2-
name = "consensus"
2+
name = "watchsat"
33
version = "0.1.0"
44
authors = ["Riccardo De Benedictis"]
55
edition = "2024"

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
# Consensus
1+
# watchsat
22

33
A high-performance CDCL-based Constraint Engine written in pure Rust, focusing on safety and solver efficiency.

src/lib.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
//!
1313
//! ## Example
1414
//! ```rust
15-
//! # use consensus::{Engine, pos, neg};
15+
//! # use watchsat::{Engine, pos, neg};
1616
//! let mut engine = Engine::new();
1717
//! let a = engine.add_var();
1818
//! let b = engine.add_var();
@@ -53,7 +53,7 @@ impl Display for LBool {
5353
///
5454
/// # Examples
5555
/// ```
56-
/// # use consensus::{Lit, pos, neg};
56+
/// # use watchsat::{Lit, pos, neg};
5757
/// let a = pos(0); // Represents the literal b0
5858
/// let not_a = neg(0); // Represents the literal ¬b0
5959
///
@@ -159,7 +159,7 @@ impl Display for Clause {
159159
///
160160
/// # Examples
161161
/// ```
162-
/// # use consensus::{Engine, pos, neg, LBool};
162+
/// # use watchsat::{Engine, pos, neg, LBool};
163163
/// let mut engine = Engine::new();
164164
/// let a = engine.add_var();
165165
/// let b = engine.add_var();

0 commit comments

Comments
 (0)