Skip to content

Commit

Permalink
Merge pull request #34 from waywardmonkeys/fix-typos
Browse files Browse the repository at this point in the history
chore: Fix some typos.
  • Loading branch information
ptal committed Nov 17, 2023
2 parents c0bfc8b + 24d1359 commit eb6e056
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/libpcp/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
// See the License for the specific language governing permissions and
// limitations under the License.

//! Constraint programming is a declarative programming paradigm mainly used to solve combinatorial problems where you state what constraints a solution must fullfil instead of explaining how to solve it (see README.md).
//! Constraint programming is a declarative programming paradigm mainly used to solve combinatorial problems where you state what constraints a solution must fulfill instead of explaining how to solve it (see README.md).
//! A very classic introductory problem to constraint programming is the [N-Queens puzzle](https://en.wikipedia.org/wiki/Eight_queens_puzzle): the goal is to align N queens on a chessboard of size N*N such that no queen can attack each other.
//! In PCP, we can solve this problem as follows:
//! ```rust
Expand Down
2 changes: 1 addition & 1 deletion src/libpcp/logic/boolean_neg.rs
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
// See the License for the specific language governing permissions and
// limitations under the License.

/// This class implements the negation of boolean value (not arbritrary formula, for which the negation can be obtained with `f.not()`).
/// This class implements the negation of boolean value (not arbitrary formula, for which the negation can be obtained with `f.not()`).

use trilean::SKleene;
use kernel::*;
Expand Down
2 changes: 1 addition & 1 deletion src/libpcp/variable/memory/trailed.rs
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
// limitations under the License.


// TODO: Redo unecessary? By recomputation?
// TODO: Redo unnecessary? By recomputation?
// Investigate why it became slow again...
// Turn TrailingStore into a store and not a memory.
// Add different store for NonFailure/StrictMonotonicity/... : First implement Derive(...) and see the inheritance system.
Expand Down

0 comments on commit eb6e056

Please sign in to comment.