pub struct FolTreeNode {
    pub formula_str: String,
    pub height: u32,
    pub node_type: NodeType,
}
Expand description

A single node in a syntax tree of a FOL formula.

Each node tracks its: - height; A positive integer starting from 0 (for term nodes). - node_type; A collection of node data represented through NodeType. - subform_str; A canonical string representation of the FOL formula, which is used for uniqueness testing during simplification and canonization.

Fields§

§formula_str: String§height: u32§node_type: NodeType

Implementations§

source§

impl FolTreeNode

source

pub fn from_tokens(tokens: &[FolToken]) -> Result<FolTreeNode, String>

“Parse” a new FolTreeNode from a list of FolToken objects.

Note that this is a very “low-level” function. Unless you know what you are doing, you should probably use some of the functions in crate::algorithms::fo_logic::parser instead.

source

pub fn mk_quantifier( child: FolTreeNode, var: &str, op: Quantifier, ) -> FolTreeNode

Create a “quantifier” FolTreeNode from the given arguments.

See also NodeType::Quantifier.

source

pub fn mk_unary(child: FolTreeNode, op: UnaryOp) -> FolTreeNode

Create a “unary” FolTreeNode from the given arguments.

See also NodeType::Unary.

source

pub fn mk_binary( left: FolTreeNode, right: FolTreeNode, op: BinaryOp, ) -> FolTreeNode

Create a “binary” FolTreeNode from the given arguments.

See also NodeType::Binary.

source

pub fn mk_constant(constant_val: bool) -> FolTreeNode

Create a FolTreeNode representing a Boolean constant.

See also NodeType::Terminal and Atom::True / Atom::False.

source

pub fn mk_variable(var_name: &str) -> FolTreeNode

Create a FolTreeNode representing a variable.

See also NodeType::Terminal and Atom::Var.

source

fn mk_atom(atom: Atom) -> FolTreeNode

A helper function which creates a new FolTreeNode for the given Atom value.

source

pub fn mk_function( name: &str, inner_nodes: Vec<FolTreeNode>, is_update: bool, ) -> FolTreeNode

Create a FolTreeNode representing a function symbol applied to given arguments.

source§

impl FolTreeNode

source

pub fn from_fn_update( fn_update: FnUpdate, bn_context: &BooleanNetwork, ) -> FolTreeNode

Recursively obtain the FolTreeNode from a similar FnUpdate object of the [biodivine_lib_param_bn] library that is used internally for update functions. The provided BN gives context for variable and parameter IDs.

source

pub fn substitute_variable( &self, var: &str, expression: &FolTreeNode, ) -> FolTreeNode

Create a copy of this FolTreeNode with every occurrence of variable var substituted for FolTreeNode expression.

You must ensure that no conflicts arise with quantification. For instance, this should be safe in case you are not substituting to quantified variables.

source§

impl FolTreeNode

source

pub fn as_str(&self) -> &str

Trait Implementations§

source§

impl Clone for FolTreeNode

source§

fn clone(&self) -> FolTreeNode

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for FolTreeNode

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Display for FolTreeNode

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Hash for FolTreeNode

source§

fn hash<__H: Hasher>(&self, state: &mut __H)

Feeds this value into the given Hasher. Read more
1.3.0 · source§

fn hash_slice<H>(data: &[Self], state: &mut H)
where H: Hasher, Self: Sized,

Feeds a slice of this type into the given Hasher. Read more
source§

impl PartialEq for FolTreeNode

source§

fn eq(&self, other: &FolTreeNode) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl Eq for FolTreeNode

source§

impl StructuralPartialEq for FolTreeNode

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> CloneToUninit for T
where T: Clone,

source§

unsafe fn clone_to_uninit(&self, dst: *mut T)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dst. Read more
§

impl<Q, K> Equivalent<K> for Q
where Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,

§

fn equivalent(&self, key: &K) -> bool

Checks if this value is equivalent to the given key. Read more
§

impl<Q, K> Equivalent<K> for Q
where Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,

§

fn equivalent(&self, key: &K) -> bool

Compare self to key and return true if they are equal.
source§

impl<Q, K> Equivalent<K> for Q
where Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,

source§

fn equivalent(&self, key: &K) -> bool

Compare self to key and return true if they are equal.
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

§

impl<T> Pointable for T

§

const ALIGN: usize = _

The alignment of pointer.
§

type Init = T

The type for initializers.
§

unsafe fn init(init: <T as Pointable>::Init) -> usize

Initializes a with the given initializer. Read more
§

unsafe fn deref<'a>(ptr: usize) -> &'a T

Dereferences the given pointer. Read more
§

unsafe fn deref_mut<'a>(ptr: usize) -> &'a mut T

Mutably dereferences the given pointer. Read more
§

unsafe fn drop(ptr: usize)

Drops the object pointed to by the given pointer. Read more
source§

impl<T> Same for T

source§

type Output = T

Should always be Self
source§

impl<T> ToOwned for T
where T: Clone,

source§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T> ToString for T
where T: Display + ?Sized,

source§

default fn to_string(&self) -> String

Converts the given value to a String. Read more
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

source§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

source§

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

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
§

impl<V, T> VZip<V> for T
where V: MultiLane<T>,

§

fn vzip(self) -> V

§

impl<T> ErasedDestructor for T
where T: 'static,

§

impl<T> MaybeSendSync for T

§

impl<T> UserEvent for T
where T: Debug + Clone + Send + 'static,