Skip to main content

MonotoneProof

Trait MonotoneProof 

Source
pub trait MonotoneProof: Sealed {
    // Required method
    fn register_proof(&self, expr: &Expr);
}
Expand description

A trait for proof mechanisms that can validate monotonicity.

Required Methods§

Source

fn register_proof(&self, expr: &Expr)

Registers the expression with the proof mechanism.

This should not perform any blocking analysis; it is only intended to record the expression for later processing.

Implementors§