Enum smtlib_lowlevel::ast::ModelResponse
source · pub enum ModelResponse {
DefineFun(FunctionDef),
DefineFunRec(FunctionDef),
DefineFunsRec(Vec<FunctionDec>, Vec<Term>),
}Variants§
DefineFun(FunctionDef)
(define-fun <function_def>)
DefineFunRec(FunctionDef)
(define-fun-rec <function_def>)
DefineFunsRec(Vec<FunctionDec>, Vec<Term>)
(define-funs-rec (<function_dec>n+1) (<term>n+1))
Implementations§
Trait Implementations§
source§impl Clone for ModelResponse
impl Clone for ModelResponse
source§fn clone(&self) -> ModelResponse
fn clone(&self) -> ModelResponse
Returns a copy 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 moresource§impl Debug for ModelResponse
impl Debug for ModelResponse
source§impl Display for ModelResponse
impl Display for ModelResponse
source§impl Hash for ModelResponse
impl Hash for ModelResponse
source§impl PartialEq<ModelResponse> for ModelResponse
impl PartialEq<ModelResponse> for ModelResponse
source§fn eq(&self, other: &ModelResponse) -> bool
fn eq(&self, other: &ModelResponse) -> bool
This method tests for
self and other values to be equal, and is used
by ==.