pub trait Sym2Smt<Info = ()> {
    fn sym_to_smt2<Writer>(&self, w: &mut Writer, i: Info) -> SmtRes<()>
    where
        Writer: Write
; }
Expand description

A symbol printable in the SMT-LIB 2 standard given some info.

Required Methods

Prints a symbol to a writer given some info.

Implementations on Foreign Types

Implementors