pub fn antichain_join<T: Lattice>(one: &[T], other: &[T]) -> Antichain<T>
Expand description

Returns the “smallest” minimal antichain “greater or equal” to both inputs.

This method is primarily meant for cases where one cannot use the methods of Antichain’s PartialOrder implementation, such as when one has only references rather than owned antichains.

§Examples


let f1 = &[Product::new(3, 7), Product::new(5, 6)];
let f2 = &[Product::new(4, 6)];
let join = antichain_join(f1, f2);
assert_eq!(&*join.elements(), &[Product::new(4, 7), Product::new(5, 6)]);