[][src]Enum razor_fol::syntax::Term

pub enum Term {
    Var {
        variable: V,
    },
    Const {
        constant: C,
    },
    App {
        function: F,
        terms: Vec<Term>,
    },
}

Represents a first-order term and consists of variables, constants and function applications.

Variants

Var

Is a variable term, wrapping a variable symbol.

Fields of Var

variable: V
Const

Is a constant term, wrapping a constant symbol.

Fields of Const

constant: C
App

Is a composite term, made by applying a function on a list of terms.

Fields of App

function: Fterms: Vec<Term>

Methods

impl Term[src]

pub fn free_vars(&self) -> Vec<&V>[src]

Returns a list of all free variable symbols in the term.

Note: In the list of free variables, each variable symbol appears only once even if it is present at multiple positions of the receiver term.

Example:


// `x_sym` and `y_sym` are variable symbols:
let x_sym = V::from("x");
let y_sym = V::from("y");

// `c_sym` is a constant symbol:
let c_sym = C::from("c");

// `x` and `y` are variable terms:
let x = Term::from(x_sym.clone());
let y = Term::from(y_sym.clone());

// `c` is a constant term:
let c = Term::from(c_sym.clone());

// `f` and `g` are function
let f = F::from("f");
let g = F::from("g");

// f(x, g(y, c, x)):
let t = f.app2(x.clone(), g.app3(y, c, x.clone()));

// comparing the two (unordered) lists:
assert_eq!(vec![&x_sym, &y_sym].iter().sorted(), t.free_vars().iter().sorted())

pub fn equals(self, term: Term) -> Formula[src]

Returns an equation (formula) between the receiver and term.

Trait Implementations

impl Clone for Term[src]

impl Debug for Term[src]

impl Display for Term[src]

impl Eq for Term[src]

impl FApp for Term[src]

impl From<C> for Term[src]

impl From<V> for Term[src]

impl Hash for Term[src]

impl Ord for Term[src]

impl PartialEq<Term> for Term[src]

impl PartialOrd<Term> for Term[src]

impl StructuralEq for Term[src]

impl StructuralPartialEq for Term[src]

impl TermBased for Term[src]

Auto Trait Implementations

impl RefUnwindSafe for Term

impl Send for Term

impl Sync for Term

impl Unpin for Term

impl UnwindSafe for Term

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T> ToString for T where
    T: Display + ?Sized
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.