Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/PawelJastrzebski/propositional

Rust Propositional Logic Library
https://github.com/PawelJastrzebski/propositional

Last synced: 1 day ago
JSON representation

Rust Propositional Logic Library

Awesome Lists containing this project

README

        

# Propositional Logic

This crate offers tools for defining and manipulating logical propositions using symbols and connectives like and, or, and implies. It simplifies the creation of logical expressions and the evaluation of their truth values within defined logical contexts.

Useful for educational purposes, AI projects, and any application requiring formal logical reasoning.

## Examples
```rust
use propositional::prelude::*;

let rain = symbol!("it's raining");
let cloud = symbol!("it's cloudy");

let world = and!(
implies!(rain, cloud),
rain
);

println!("It is cloudy? {:?}", check(&world, &cloud));
//-> It is cloudy? Some(true)
```
Source: [wikipedia.org](https://en.wikipedia.org/wiki/Propositional_calculus#Arguments)

```rust
use propositional::prelude::*;

let rain = symbol!("It is raining.");
let hagrid = symbol!("Harry visited Hagrid.");
let dumbledore = symbol!("Harry visited Dumbledore.");

let knowledge = and!(
implies!(not!(rain), hagrid),
or!(hagrid, dumbledore),
not!(and!(hagrid, dumbledore)),
dumbledore
);

println!("It is raining? {:?}", check(&knowledge, &rain));
//-> It is raining? Some(true)
```
Source: [CS50](https://youtu.be/HWQLez87vqM?si=ULqkreSQPM2Y1n42&t=1692)

## Acknowledgments
Based on: CS50’s Introduction to Artificial Intelligence with Python.