1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
use ergotree_ir::mir::constant::TryExtractInto;
use ergotree_ir::mir::logical_not::LogicalNot;
use ergotree_ir::mir::value::Value;
use crate::eval::env::Env;
use crate::eval::EvalContext;
use crate::eval::EvalError;
use crate::eval::Evaluable;
impl Evaluable for LogicalNot {
fn eval(&self, env: &Env, ctx: &mut EvalContext) -> Result<Value, EvalError> {
let input_v = self.input.eval(env, ctx)?;
let input_v_bool = input_v.try_extract_into::<bool>()?;
Ok((!input_v_bool).into())
}
}
#[cfg(test)]
mod tests {
use super::*;
use crate::eval::tests::eval_out_wo_ctx;
use ergotree_ir::mir::expr::Expr;
fn check(input: bool) -> bool {
let expr: Expr = LogicalNot {
input: Expr::Const(input.into()).into(),
}
.into();
eval_out_wo_ctx::<bool>(&expr)
}
#[test]
fn eval() {
assert!(!check(true));
assert!(check(false));
}
}