pub trait EdgeValues {
type Value;
// Required methods
fn add_or_remove_value(
&mut self,
a: usize,
b: usize,
c: usize,
value: Self::Value,
);
fn get_value(&self, vertex: usize) -> Self::Value;
}Expand description
The holders of this trait store the values assigned to the edges of the HyperGraph.
Required Associated Types§
Required Methods§
Implementations on Foreign Types§
Source§impl EdgeValues for ()
Does not store any values.
impl EdgeValues for ()
Does not store any values.