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
|
|
|
[package]
|
|
|
|
name = "foliage"
|
|
|
|
version = "0.1.0"
|
|
|
|
authors = ["Patrick Lühne <patrick@luehne.de>"]
|
|
|
|
description = "Abstract syntax tree for first-order logic with integer arithmetics"
|
|
|
|
documentation = "https://github.com/potassco/foliage"
|
|
|
|
homepage = "https://github.com/potassco/foliage"
|
|
|
|
repository = "https://github.com/potassco/foliage"
|
|
|
|
readme = "README.md"
|
|
|
|
keywords = ["logic"]
|
|
|
|
categories = ["data-structures", "science"]
|
|
|
|
license = "MIT"
|
|
|
|
edition = "2018"
|
2020-02-25 15:36:34 +01:00
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
nom = {version = "5.1", optional = true}
|
|
|
|
|
|
|
|
[features]
|
2020-03-12 21:05:58 +01:00
|
|
|
default = ["parse"]
|
2020-02-25 15:36:34 +01:00
|
|
|
parse = ["nom"]
|