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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
use crate::goals::Goal;
use crate::{
    constraints::{resolve_2, Constraint, ResolveFn, VarWatch},
    core::{State, Unify, Value},
};
use std::fmt::{self, Debug};
use std::rc::Rc;

/** A [projection goal](super) that succeeds if the resolved values pass
an assertion test. Create with [`assert_2`].
*/
pub struct Assert2<A: Unify, B: Unify> {
    a: Value<A>,
    b: Value<B>,
    #[allow(clippy::type_complexity)]
    f: Rc<dyn Fn(&A, &B) -> bool>,
}

impl<A: Unify, B: Unify> Clone for Assert2<A, B> {
    fn clone(&self) -> Self {
        Self {
            a: self.a.clone(),
            b: self.b.clone(),
            f: self.f.clone(),
        }
    }
}

/** Create a [projection goal](super) that succeeds if the resolved values pass
an assertion test.

```
use canrun::{LVar, Query};
use canrun::goals::{assert_2, all, unify};

let (x, y) = (LVar::new(), LVar::new());
let goal = all![
    unify(1, x),
    unify(2, y),
    assert_2(x, y, |x, y| x < y),
];
let result: Vec<_> = goal.query((x, y)).collect();
assert_eq!(result, vec![(1, 2)])
```
*/
pub fn assert_2<A, IA, B, IB, F>(a: IA, b: IB, func: F) -> Assert2<A, B>
where
    A: Unify,
    IA: Into<Value<A>>,
    B: Unify,
    IB: Into<Value<B>>,
    F: (Fn(&A, &B) -> bool) + 'static,
{
    Assert2 {
        a: a.into(),
        b: b.into(),
        f: Rc::new(func),
    }
}

impl<A: Unify, B: Unify> Debug for Assert2<A, B> {
    fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
        write!(f, "Assert2 {:?} {:?}", self.a, self.b)
    }
}

impl<A: Unify, B: Unify> Constraint for Assert2<A, B> {
    fn attempt(&self, state: &State) -> Result<ResolveFn, VarWatch> {
        let (a, b) = resolve_2(&self.a, &self.b, state)?;
        let assert = self.f.clone();
        Ok(Box::new(move |state| {
            if assert(a.as_ref(), b.as_ref()) {
                Some(state)
            } else {
                None
            }
        }))
    }
}

impl<A: Unify, B: Unify> Goal for Assert2<A, B> {
    fn apply(&self, state: State) -> Option<State> {
        state.constrain(Rc::new(self.clone()))
    }
}

#[cfg(test)]
mod tests {
    use crate::{
        core::{LVar, Query},
        goals::{both::both, unify},
    };

    use super::*;

    #[test]
    fn succeeds() {
        let x = LVar::new();
        let goal = both(unify(x, 2), assert_2(x, 1, move |x, y| x > y));
        assert_eq!(goal.query(x).collect::<Vec<_>>(), vec![2]);
    }

    #[test]
    fn fails() {
        let x = LVar::new();
        let goal = both(unify(x, 1), assert_2(x, 1, move |x, y| x > y));
        assert_eq!(goal.query(x).count(), 0);
    }
}