pub struct FunctionalInterpretation {
pub formula: DialecticaFormula,
pub functional_description: String,
}Expand description
Computable functional realizing ∀∃ statements under Dialectica.
Fields§
§formula: DialecticaFormulaThe formula being realized.
functional_description: StringDescription of the realizing functional.
Implementations§
Source§impl FunctionalInterpretation
impl FunctionalInterpretation
Sourcepub fn new(
formula: DialecticaFormula,
functional_description: impl Into<String>,
) -> Self
pub fn new( formula: DialecticaFormula, functional_description: impl Into<String>, ) -> Self
Create a new functional interpretation.
Trait Implementations§
Source§impl Clone for FunctionalInterpretation
impl Clone for FunctionalInterpretation
Source§fn clone(&self) -> FunctionalInterpretation
fn clone(&self) -> FunctionalInterpretation
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for FunctionalInterpretation
impl RefUnwindSafe for FunctionalInterpretation
impl Send for FunctionalInterpretation
impl Sync for FunctionalInterpretation
impl Unpin for FunctionalInterpretation
impl UnsafeUnpin for FunctionalInterpretation
impl UnwindSafe for FunctionalInterpretation
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more