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
39
40
41
42
use ergotree_ir::mir::constant::TryExtractInto;
use ergotree_ir::mir::value::Value;
use crate::eval::env::Env;
use crate::eval::EvalContext;
use crate::eval::EvalError;
use crate::eval::Evaluable;
use ergotree_ir::mir::xor_of::XorOf;
impl Evaluable for XorOf {
fn eval(&self, env: &Env, ctx: &mut EvalContext) -> Result<Value, EvalError> {
let input_v = self.input.eval(env, ctx)?;
let input_v_bools = input_v.try_extract_into::<Vec<bool>>()?;
Ok(input_v_bools.into_iter().fold(false, |a, b| a ^ b).into())
}
}
#[allow(clippy::panic)]
#[cfg(test)]
mod tests {
use super::*;
use crate::eval::context::Context;
use crate::eval::tests::eval_out;
use ergotree_ir::mir::expr::Expr;
use proptest::collection;
use proptest::prelude::*;
use sigma_test_util::force_any_val;
use std::rc::Rc;
proptest! {
#[test]
fn eval(bools in collection::vec(any::<bool>(), 0..=10)) {
let expr: Expr = XorOf {input: Expr::Const(bools.clone().into()).into()}.into();
let ctx = Rc::new(force_any_val::<Context>());
let res = eval_out::<bool>(&expr, ctx);
let expected = bools.into_iter().filter(|x| *x).count() & 1 == 1;
prop_assert_eq!(res, expected);
}
}
}