This website requires JavaScript.
Explore
Help
Sign In
patrick
/
foliage-rs
Watch
1
Star
0
Fork
0
You've already forked foliage-rs
Code
Issues
Pull Requests
Releases
Wiki
Activity
deae102405
foliage-rs
/
src
/
lib.rs
7 lines
83 B
Rust
Raw
Normal View
History
Unescape
Escape
Initial commit This provides an abstract syntax tree for first-order logic with integer arithmetics. Initially, the following types of formulas are supported: - Booleans values (true and false) - predicates - negated formulas - comparisons of terms (<, ≤, >, ≥, =, ≠) - implications and biconditionals - conjunctions and disjunctions of formulas - existentially and universally quantified formulas In addition, these types of terms are provided: - Boolean values (true and false) - integers - strings - special integers (infimum and supremum) - symbolic functions - variables - binary operations (addition, subtraction, multiplication, division, modulo, exponentiation) - unary operations (absolute value, numeric negation)
2020-02-05 03:17:28 +01:00
mod
ast
;
pub
mod
format
;
Start reimplementing parser
2020-02-25 15:36:34 +01:00
#[
cfg(feature =
"
parse
"
)
]
pub
mod
parse
;
Initial commit This provides an abstract syntax tree for first-order logic with integer arithmetics. Initially, the following types of formulas are supported: - Booleans values (true and false) - predicates - negated formulas - comparisons of terms (<, ≤, >, ≥, =, ≠) - implications and biconditionals - conjunctions and disjunctions of formulas - existentially and universally quantified formulas In addition, these types of terms are provided: - Boolean values (true and false) - integers - strings - special integers (infimum and supremum) - symbolic functions - variables - binary operations (addition, subtraction, multiplication, division, modulo, exponentiation) - unary operations (absolute value, numeric negation)
2020-02-05 03:17:28 +01:00
pub
use
ast
::
*
;
Reference in New Issue
Copy Permalink