-
Notifications
You must be signed in to change notification settings - Fork 205
Expand file tree
/
Copy pathnegate.rs
More file actions
54 lines (48 loc) · 1.49 KB
/
negate.rs
File metadata and controls
54 lines (48 loc) · 1.49 KB
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
//! Negate the diffs of collections and streams.
use timely::Data;
use timely::dataflow::{Scope, Stream, StreamCore};
use timely::dataflow::operators::Map;
use crate::{AsCollection, Collection};
use crate::difference::Abelian;
/// Negate the contents of a stream.
pub trait Negate<G, C> {
/// Creates a new collection whose counts are the negation of those in the input.
///
/// This method is most commonly used with `concat` to get those element in one collection but not another.
/// However, differential dataflow computations are still defined for all values of the difference type `R`,
/// including negative counts.
///
/// # Examples
///
/// ```
/// use differential_dataflow::input::Input;
///
/// ::timely::example(|scope| {
///
/// let data = scope.new_collection_from(1 .. 10).1;
///
/// let odds = data.filter(|x| x % 2 == 1);
/// let evens = data.filter(|x| x % 2 == 0);
///
/// odds.negate()
/// .concat(&data)
/// .assert_eq(&evens);
/// });
/// ```
fn negate(&self) -> Self;
}
impl<G, D, R, C> Negate<C, G> for Collection<G, D, R, C>
where
G: Scope,
C: Clone,
StreamCore<G, C>: Negate<C, G>,
{
fn negate(&self) -> Self {
self.inner.negate().as_collection()
}
}
impl<G: Scope, D: Data, T: Data, R: Data + Abelian> Negate<Vec<(D, T, R)>, G> for Stream<G, (D, T, R)> {
fn negate(&self) -> Self {
self.map_in_place(|x| x.2.negate())
}
}