2025-08-24 02:01:24 +02:00
|
|
|
|
use serde::{Deserialize, Serialize};
|
2025-09-07 17:55:53 +02:00
|
|
|
|
use std::collections::{BTreeMap, BTreeSet};
|
2025-08-24 02:01:24 +02:00
|
|
|
|
use std::fmt;
|
2025-09-07 17:55:53 +02:00
|
|
|
|
use std::hash::Hash;
|
2025-08-24 02:01:24 +02:00
|
|
|
|
|
2025-09-07 17:55:53 +02:00
|
|
|
|
use super::element::{IdState, IdType, PositiveType};
|
|
|
|
|
|
use super::translator::{Formatter, PrintableWithTranslator, Translator};
|
2025-08-26 16:56:08 +02:00
|
|
|
|
|
|
|
|
|
|
/// Basic trait for all Set implementations.
|
|
|
|
|
|
/// Implement IntoIterator for &Self to have .iter() (not required directly by
|
|
|
|
|
|
/// the trait).
|
|
|
|
|
|
pub trait BasicSet
|
2025-09-07 17:55:53 +02:00
|
|
|
|
where
|
2025-09-10 22:41:40 +02:00
|
|
|
|
Self: Clone
|
|
|
|
|
|
+ Eq
|
|
|
|
|
|
+ Ord
|
|
|
|
|
|
+ Default
|
|
|
|
|
|
+ Serialize
|
|
|
|
|
|
+ IntoIterator
|
|
|
|
|
|
+ PrintableWithTranslator,
|
2025-09-07 17:55:53 +02:00
|
|
|
|
for<'de> Self: Deserialize<'de>,
|
2025-08-26 16:56:08 +02:00
|
|
|
|
{
|
2025-08-29 17:59:49 +02:00
|
|
|
|
type Element;
|
|
|
|
|
|
|
2025-08-26 16:56:08 +02:00
|
|
|
|
fn is_subset(&self, other: &Self) -> bool;
|
|
|
|
|
|
fn is_disjoint(&self, other: &Self) -> bool;
|
|
|
|
|
|
fn union(&self, other: &Self) -> Self;
|
|
|
|
|
|
fn push(&mut self, other: &Self);
|
|
|
|
|
|
fn extend(&mut self, other: Option<&Self>);
|
|
|
|
|
|
fn intersection(&self, other: &Self) -> Self;
|
|
|
|
|
|
fn subtraction(&self, other: &Self) -> Self;
|
|
|
|
|
|
fn len(&self) -> usize;
|
|
|
|
|
|
fn is_empty(&self) -> bool;
|
2025-08-29 17:59:49 +02:00
|
|
|
|
fn contains(&self, el: &Self::Element) -> bool;
|
2025-08-23 23:40:19 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
2025-08-26 16:56:08 +02:00
|
|
|
|
pub trait ExtensionsSet {
|
2025-09-07 17:55:53 +02:00
|
|
|
|
fn iter(&self) -> <&Self as IntoIterator>::IntoIter
|
|
|
|
|
|
where
|
|
|
|
|
|
for<'b> &'b Self: IntoIterator;
|
|
|
|
|
|
|
2025-09-10 22:41:40 +02:00
|
|
|
|
fn split<'a>(
|
|
|
|
|
|
&'a self,
|
|
|
|
|
|
trace: &'a [Self],
|
|
|
|
|
|
) -> Option<(&'a [Self], &'a [Self])>
|
2025-09-07 17:55:53 +02:00
|
|
|
|
where
|
|
|
|
|
|
Self: Sized;
|
2025-08-23 23:40:19 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
2025-08-26 16:56:08 +02:00
|
|
|
|
/// Implementations for all sets.
|
|
|
|
|
|
impl<T: BasicSet> ExtensionsSet for T {
|
|
|
|
|
|
fn iter(&self) -> <&T as IntoIterator>::IntoIter
|
2025-09-07 17:55:53 +02:00
|
|
|
|
where
|
|
|
|
|
|
for<'b> &'b T: IntoIterator,
|
|
|
|
|
|
{
|
|
|
|
|
|
self.into_iter()
|
2025-08-23 23:40:19 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
2025-08-26 16:56:08 +02:00
|
|
|
|
/// Returns the prefix and the loop from a trace.
|
2025-09-10 22:41:40 +02:00
|
|
|
|
fn split<'a>(
|
|
|
|
|
|
&'a self,
|
|
|
|
|
|
trace: &'a [Self],
|
|
|
|
|
|
) -> Option<(&'a [Self], &'a [Self])> {
|
2025-09-07 17:55:53 +02:00
|
|
|
|
let position = trace.iter().rposition(|x| x == self);
|
|
|
|
|
|
position.map(|pos| trace.split_at(pos))
|
2025-08-23 23:40:19 +02:00
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2025-08-26 16:56:08 +02:00
|
|
|
|
// -----------------------------------------------------------------------------
|
|
|
|
|
|
|
|
|
|
|
|
/// Basic set of entities.
|
2025-09-10 22:41:40 +02:00
|
|
|
|
#[derive(
|
|
|
|
|
|
Clone, Debug, Default, PartialOrd, Eq, Ord, Serialize, Deserialize,
|
|
|
|
|
|
)]
|
2025-08-26 16:56:08 +02:00
|
|
|
|
pub struct Set {
|
|
|
|
|
|
pub identifiers: BTreeSet<IdType>,
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
impl BasicSet for Set {
|
2025-08-29 17:59:49 +02:00
|
|
|
|
type Element = IdType;
|
|
|
|
|
|
|
2025-08-26 16:56:08 +02:00
|
|
|
|
fn is_subset(&self, other: &Self) -> bool {
|
2025-09-07 17:55:53 +02:00
|
|
|
|
self.identifiers.is_subset(&other.identifiers)
|
2025-08-23 23:40:19 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
2025-08-26 16:56:08 +02:00
|
|
|
|
fn is_disjoint(&self, other: &Self) -> bool {
|
2025-09-07 17:55:53 +02:00
|
|
|
|
self.identifiers.is_disjoint(&other.identifiers)
|
2025-08-23 23:40:19 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// returns the new set a \cup b
|
2025-08-26 16:56:08 +02:00
|
|
|
|
fn union(&self, other: &Self) -> Self {
|
2025-09-07 17:55:53 +02:00
|
|
|
|
self.iter()
|
|
|
|
|
|
.chain(other.iter())
|
|
|
|
|
|
.cloned()
|
|
|
|
|
|
.collect::<Vec<_>>()
|
|
|
|
|
|
.into()
|
2025-08-23 23:40:19 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
2025-08-26 23:36:29 +02:00
|
|
|
|
fn push(&mut self, other: &Self) {
|
2025-09-07 17:55:53 +02:00
|
|
|
|
self.identifiers.extend(other.iter())
|
2025-08-26 16:56:08 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
fn extend(&mut self, other: Option<&Self>) {
|
2025-09-07 17:55:53 +02:00
|
|
|
|
if let Some(other) = other {
|
|
|
|
|
|
self.identifiers.extend(other);
|
|
|
|
|
|
}
|
2025-08-23 23:40:19 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/// returns the new set a \cap b
|
2025-08-26 16:56:08 +02:00
|
|
|
|
fn intersection(&self, other: &Self) -> Self {
|
2025-09-07 17:55:53 +02:00
|
|
|
|
// TODO maybe find more efficient way without copy/clone
|
|
|
|
|
|
let res: BTreeSet<_> = other
|
|
|
|
|
|
.identifiers
|
|
|
|
|
|
.intersection(&self.identifiers)
|
|
|
|
|
|
.copied()
|
|
|
|
|
|
.collect();
|
|
|
|
|
|
Set { identifiers: res }
|
2025-08-23 23:40:19 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/// returns the new set a ∖ b
|
2025-08-26 16:56:08 +02:00
|
|
|
|
fn subtraction(&self, other: &Self) -> Self {
|
2025-09-07 17:55:53 +02:00
|
|
|
|
// TODO maybe find more efficient way without copy/clone
|
|
|
|
|
|
let res: BTreeSet<_> = self
|
|
|
|
|
|
.identifiers
|
|
|
|
|
|
.difference(&other.identifiers)
|
|
|
|
|
|
.copied()
|
|
|
|
|
|
.collect();
|
|
|
|
|
|
Set { identifiers: res }
|
2025-08-23 23:40:19 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
2025-08-26 16:56:08 +02:00
|
|
|
|
fn len(&self) -> usize {
|
2025-09-07 17:55:53 +02:00
|
|
|
|
self.identifiers.len()
|
2025-08-23 23:40:19 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
2025-08-26 16:56:08 +02:00
|
|
|
|
fn is_empty(&self) -> bool {
|
2025-09-07 17:55:53 +02:00
|
|
|
|
self.identifiers.is_empty()
|
2025-08-23 23:40:19 +02:00
|
|
|
|
}
|
2025-08-29 17:59:49 +02:00
|
|
|
|
|
|
|
|
|
|
fn contains(&self, el: &Self::Element) -> bool {
|
2025-09-07 17:55:53 +02:00
|
|
|
|
self.identifiers.contains(el)
|
2025-08-29 17:59:49 +02:00
|
|
|
|
}
|
2025-08-23 23:40:19 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
impl PartialEq for Set {
|
|
|
|
|
|
fn eq(&self, other: &Self) -> bool {
|
2025-09-07 17:55:53 +02:00
|
|
|
|
self.identifiers.eq(&other.identifiers)
|
2025-08-23 23:40:19 +02:00
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
impl Hash for Set {
|
|
|
|
|
|
fn hash<H: std::hash::Hasher>(&self, state: &mut H) {
|
2025-09-07 17:55:53 +02:00
|
|
|
|
self.identifiers.hash(state)
|
2025-08-23 23:40:19 +02:00
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
impl IntoIterator for Set {
|
|
|
|
|
|
type Item = IdType;
|
|
|
|
|
|
type IntoIter = std::collections::btree_set::IntoIter<Self::Item>;
|
|
|
|
|
|
|
|
|
|
|
|
fn into_iter(self) -> Self::IntoIter {
|
2025-09-07 17:55:53 +02:00
|
|
|
|
self.identifiers.into_iter()
|
2025-08-23 23:40:19 +02:00
|
|
|
|
}
|
|
|
|
|
|
}
|
2025-08-24 02:01:24 +02:00
|
|
|
|
|
2025-08-26 16:56:08 +02:00
|
|
|
|
impl<'a> IntoIterator for &'a Set {
|
|
|
|
|
|
type Item = &'a IdType;
|
|
|
|
|
|
type IntoIter = std::collections::btree_set::Iter<'a, IdType>;
|
|
|
|
|
|
|
|
|
|
|
|
fn into_iter(self) -> Self::IntoIter {
|
2025-09-07 17:55:53 +02:00
|
|
|
|
self.identifiers.iter()
|
2025-08-26 16:56:08 +02:00
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2025-08-24 02:01:24 +02:00
|
|
|
|
impl PrintableWithTranslator for Set {
|
2025-09-10 22:41:40 +02:00
|
|
|
|
fn print(
|
|
|
|
|
|
&self,
|
|
|
|
|
|
f: &mut fmt::Formatter,
|
|
|
|
|
|
translator: &Translator,
|
|
|
|
|
|
) -> fmt::Result {
|
2025-09-07 17:55:53 +02:00
|
|
|
|
write!(f, "{{")?;
|
|
|
|
|
|
let mut it = self.iter().peekable();
|
|
|
|
|
|
while let Some(el) = it.next() {
|
|
|
|
|
|
if it.peek().is_none() {
|
|
|
|
|
|
write!(f, "{}", Formatter::from(translator, el))?;
|
|
|
|
|
|
} else {
|
|
|
|
|
|
write!(f, "{}, ", Formatter::from(translator, el))?;
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
write!(f, "}}")
|
2025-08-24 02:01:24 +02:00
|
|
|
|
}
|
|
|
|
|
|
}
|
2025-08-26 16:56:08 +02:00
|
|
|
|
|
|
|
|
|
|
impl<const N: usize> From<[IdType; N]> for Set {
|
|
|
|
|
|
fn from(arr: [IdType; N]) -> Self {
|
2025-09-07 17:55:53 +02:00
|
|
|
|
Set {
|
|
|
|
|
|
identifiers: BTreeSet::from(arr),
|
|
|
|
|
|
}
|
2025-08-26 16:56:08 +02:00
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
impl From<&[IdType]> for Set {
|
|
|
|
|
|
fn from(arr: &[IdType]) -> Self {
|
2025-09-07 17:55:53 +02:00
|
|
|
|
Set {
|
|
|
|
|
|
identifiers: BTreeSet::from_iter(arr.to_vec()),
|
|
|
|
|
|
}
|
2025-08-26 16:56:08 +02:00
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
impl From<Vec<IdType>> for Set {
|
|
|
|
|
|
fn from(arr: Vec<IdType>) -> Self {
|
2025-09-07 17:55:53 +02:00
|
|
|
|
Set {
|
|
|
|
|
|
identifiers: BTreeSet::from_iter(arr),
|
|
|
|
|
|
}
|
2025-08-26 16:56:08 +02:00
|
|
|
|
}
|
|
|
|
|
|
}
|
2025-08-26 23:36:29 +02:00
|
|
|
|
|
2025-08-27 23:58:43 +02:00
|
|
|
|
impl Set {
|
|
|
|
|
|
/// Converts set to positive set. All elements with the same state.
|
|
|
|
|
|
pub fn to_positive_set(&self, state: IdState) -> PositiveSet {
|
2025-09-07 17:55:53 +02:00
|
|
|
|
PositiveSet {
|
|
|
|
|
|
identifiers: self.iter().map(|x| (*x, state)).collect(),
|
|
|
|
|
|
}
|
2025-08-27 23:58:43 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/// Computes minimized prohibiting set from reactants and inhibitors.
|
2025-08-28 16:08:01 +02:00
|
|
|
|
/// Computes the powerset of the union of all reactants ∪ inhibitors sets
|
|
|
|
|
|
/// and checks for each element of that set if they are also in all other
|
|
|
|
|
|
/// unions. Then minimizes the result.
|
2025-08-27 23:58:43 +02:00
|
|
|
|
pub fn prohibiting_set(
|
2025-09-07 17:55:53 +02:00
|
|
|
|
reactants: &[Set],
|
|
|
|
|
|
inhibitors: &[Set],
|
2025-08-27 23:58:43 +02:00
|
|
|
|
) -> Result<Vec<PositiveSet>, String> {
|
2025-09-07 17:55:53 +02:00
|
|
|
|
if reactants.len() != inhibitors.len() {
|
|
|
|
|
|
return Err(format!(
|
|
|
|
|
|
"Different length inputs supplied to create \
|
2025-08-27 23:58:43 +02:00
|
|
|
|
prohibiting set. reactants: {:?}, \
|
|
|
|
|
|
inhibitors: {:?}",
|
2025-09-07 17:55:53 +02:00
|
|
|
|
reactants, inhibitors
|
|
|
|
|
|
));
|
|
|
|
|
|
}
|
|
|
|
|
|
if let Some((r, i)) = reactants
|
|
|
|
|
|
.iter()
|
|
|
|
|
|
.zip(inhibitors.iter())
|
|
|
|
|
|
.find(|(sr, si)| !sr.intersection(si).is_empty())
|
|
|
|
|
|
{
|
|
|
|
|
|
return Err(format!(
|
|
|
|
|
|
"Element in both reactants and inhibitors when \
|
2025-08-27 23:58:43 +02:00
|
|
|
|
creating prohibiting set. reactants: {:?}, \
|
|
|
|
|
|
inhibitors: {:?}",
|
2025-09-07 17:55:53 +02:00
|
|
|
|
r, i
|
|
|
|
|
|
));
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// generate all valid combinations, keeping track of invalid ones (where
|
|
|
|
|
|
// one simbol is both positive and negative)
|
|
|
|
|
|
let mut t = {
|
|
|
|
|
|
let unions = reactants
|
|
|
|
|
|
.iter()
|
|
|
|
|
|
.zip(inhibitors.iter())
|
|
|
|
|
|
.map(|(sr, si)| {
|
|
|
|
|
|
sr.iter()
|
|
|
|
|
|
.map(|&id| PositiveType {
|
|
|
|
|
|
id,
|
|
|
|
|
|
state: IdState::Negative,
|
|
|
|
|
|
})
|
|
|
|
|
|
.chain(si.iter().map(|&id| PositiveType {
|
|
|
|
|
|
id,
|
|
|
|
|
|
state: IdState::Positive,
|
|
|
|
|
|
}))
|
|
|
|
|
|
.collect::<Vec<_>>()
|
|
|
|
|
|
})
|
|
|
|
|
|
.collect::<Vec<_>>();
|
|
|
|
|
|
|
|
|
|
|
|
let mut state = vec![0_usize; unions.len()];
|
|
|
|
|
|
let mut t = vec![];
|
|
|
|
|
|
|
|
|
|
|
|
loop {
|
2025-09-10 22:41:40 +02:00
|
|
|
|
let mut new_combination = unions
|
|
|
|
|
|
.iter()
|
|
|
|
|
|
.zip(state.iter())
|
2025-09-07 17:55:53 +02:00
|
|
|
|
.map(|(els, pos)| els[*pos])
|
|
|
|
|
|
.collect::<Vec<_>>();
|
2025-09-10 22:41:40 +02:00
|
|
|
|
new_combination.sort_by(|a, b| {
|
2025-09-07 17:55:53 +02:00
|
|
|
|
a.id.cmp(&b.id).then(a.state.cmp(&b.state))
|
2025-09-10 22:41:40 +02:00
|
|
|
|
});
|
2025-09-07 17:55:53 +02:00
|
|
|
|
|
|
|
|
|
|
let mut error = false;
|
|
|
|
|
|
|
2025-09-10 22:41:40 +02:00
|
|
|
|
'external: for i in 0..new_combination.len() - 1 {
|
2025-09-07 17:55:53 +02:00
|
|
|
|
let mut j = i + 1;
|
|
|
|
|
|
loop {
|
|
|
|
|
|
if new_combination[i].id != new_combination[j].id {
|
|
|
|
|
|
break;
|
|
|
|
|
|
} else if new_combination[i].id == new_combination[j].id
|
2025-09-10 22:41:40 +02:00
|
|
|
|
&& new_combination[i].state
|
|
|
|
|
|
!= new_combination[j].state
|
2025-09-07 17:55:53 +02:00
|
|
|
|
{
|
|
|
|
|
|
error = true;
|
|
|
|
|
|
break 'external;
|
|
|
|
|
|
} else {
|
|
|
|
|
|
j += 1;
|
|
|
|
|
|
if j >= new_combination.len() {
|
|
|
|
|
|
break;
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
if !error {
|
|
|
|
|
|
t.push(PositiveSet::from(new_combination));
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2025-09-10 22:41:40 +02:00
|
|
|
|
let next = unions
|
|
|
|
|
|
.iter()
|
|
|
|
|
|
.zip(state.iter())
|
|
|
|
|
|
.enumerate()
|
|
|
|
|
|
.rfind(|(_, (els, pos))| **pos < els.len() - 1);
|
2025-09-07 17:55:53 +02:00
|
|
|
|
match next {
|
|
|
|
|
|
None => break,
|
|
|
|
|
|
Some((pos, _)) => {
|
|
|
|
|
|
state[pos] += 1;
|
2025-09-10 22:41:40 +02:00
|
|
|
|
state.iter_mut().skip(pos + 1).for_each(|el| *el = 0);
|
2025-09-07 17:55:53 +02:00
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
t
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
// minimization
|
|
|
|
|
|
// remove sets that contain other sets
|
|
|
|
|
|
{
|
|
|
|
|
|
let mut tmp_t = t.clone().into_iter();
|
|
|
|
|
|
let mut e = tmp_t.next().unwrap_or_default();
|
|
|
|
|
|
loop {
|
|
|
|
|
|
let mut modified = false;
|
|
|
|
|
|
t.retain(|set| {
|
|
|
|
|
|
if *set == e {
|
|
|
|
|
|
true
|
|
|
|
|
|
} else if e.is_subset(set) {
|
|
|
|
|
|
modified = true;
|
|
|
|
|
|
false
|
|
|
|
|
|
} else {
|
|
|
|
|
|
true
|
|
|
|
|
|
}
|
|
|
|
|
|
});
|
|
|
|
|
|
if !modified {
|
|
|
|
|
|
e = {
|
|
|
|
|
|
match tmp_t.next() {
|
|
|
|
|
|
Some(a) => a,
|
|
|
|
|
|
None => break,
|
|
|
|
|
|
}
|
|
|
|
|
|
};
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// replace pair of sets that have a common negative-positive element
|
|
|
|
|
|
// with set without
|
|
|
|
|
|
let mut removed = 0;
|
2025-09-10 22:41:40 +02:00
|
|
|
|
|
2025-09-07 17:55:53 +02:00
|
|
|
|
for (pos_set1, set1) in t.clone().iter_mut().enumerate() {
|
|
|
|
|
|
// we find another set that has at least one opposite element in
|
|
|
|
|
|
// common
|
2025-09-10 22:41:40 +02:00
|
|
|
|
if let Some((pos_set2, set2)) = t
|
|
|
|
|
|
.iter()
|
|
|
|
|
|
.enumerate()
|
|
|
|
|
|
.find(|(_, set2)| set1.equal_except_negated_elements(set2))
|
|
|
|
|
|
{
|
2025-09-07 17:55:53 +02:00
|
|
|
|
let intersection = set1.opposite_intersection(set2);
|
2025-09-08 19:04:26 +02:00
|
|
|
|
if intersection.len() != 1 {
|
2025-09-10 22:41:40 +02:00
|
|
|
|
continue;
|
2025-09-08 19:04:26 +02:00
|
|
|
|
}
|
2025-09-07 17:55:53 +02:00
|
|
|
|
set1.remove_elements(intersection);
|
|
|
|
|
|
|
|
|
|
|
|
t[pos_set1 - removed] = set1.clone();
|
|
|
|
|
|
t.remove(pos_set2);
|
|
|
|
|
|
removed += 1;
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
Ok(t)
|
2025-08-26 23:36:29 +02:00
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2025-08-27 23:58:43 +02:00
|
|
|
|
// -----------------------------------------------------------------------------
|
|
|
|
|
|
|
2025-09-10 22:41:40 +02:00
|
|
|
|
#[derive(
|
|
|
|
|
|
Clone, Debug, Default, PartialOrd, Eq, Ord, Serialize, Deserialize,
|
|
|
|
|
|
)]
|
2025-08-26 23:36:29 +02:00
|
|
|
|
pub struct PositiveSet {
|
|
|
|
|
|
pub identifiers: BTreeMap<IdType, IdState>,
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
impl BasicSet for PositiveSet {
|
2025-08-29 17:59:49 +02:00
|
|
|
|
type Element = PositiveType;
|
|
|
|
|
|
|
2025-08-26 23:36:29 +02:00
|
|
|
|
fn is_subset(&self, other: &Self) -> bool {
|
2025-09-07 17:55:53 +02:00
|
|
|
|
for (id, s) in self.iter() {
|
|
|
|
|
|
if let Some(s1) = other.identifiers.get(id) {
|
|
|
|
|
|
if s1 != s {
|
|
|
|
|
|
return false;
|
|
|
|
|
|
}
|
|
|
|
|
|
} else {
|
|
|
|
|
|
return false;
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
true
|
2025-08-26 23:36:29 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
fn is_disjoint(&self, other: &Self) -> bool {
|
2025-09-07 17:55:53 +02:00
|
|
|
|
for (id, _s) in self.iter() {
|
|
|
|
|
|
if other.identifiers.contains_key(id) {
|
|
|
|
|
|
return false;
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
true
|
2025-08-26 23:36:29 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/// ☞ The operation cannot fail, so we prefer self elements to other,
|
|
|
|
|
|
/// but if the reaction system is consistent there wont be any problem.
|
|
|
|
|
|
fn union(&self, other: &Self) -> Self {
|
2025-09-07 17:55:53 +02:00
|
|
|
|
self.iter()
|
|
|
|
|
|
.chain(other.iter())
|
|
|
|
|
|
.map(|(a, b)| (*a, *b))
|
|
|
|
|
|
.collect::<Vec<_>>()
|
|
|
|
|
|
.into()
|
2025-08-26 23:36:29 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
fn push(&mut self, other: &Self) {
|
2025-09-07 17:55:53 +02:00
|
|
|
|
self.identifiers.extend(other.iter())
|
2025-08-26 23:36:29 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
fn extend(&mut self, other: Option<&Self>) {
|
2025-09-07 17:55:53 +02:00
|
|
|
|
if let Some(other) = other {
|
|
|
|
|
|
self.identifiers.extend(other);
|
|
|
|
|
|
}
|
2025-08-26 23:36:29 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/// ☞ only returns values that are shared among both, meaning if they have
|
|
|
|
|
|
/// different state (positive, negative) they are considered different.
|
|
|
|
|
|
fn intersection(&self, other: &Self) -> Self {
|
2025-09-07 17:55:53 +02:00
|
|
|
|
let res: BTreeMap<_, _> = other
|
|
|
|
|
|
.identifiers
|
|
|
|
|
|
.iter()
|
|
|
|
|
|
.filter(|(id, s)| {
|
|
|
|
|
|
if let Some(s1) = self.identifiers.get(id)
|
|
|
|
|
|
&& s1 == *s
|
|
|
|
|
|
{
|
|
|
|
|
|
true
|
|
|
|
|
|
} else {
|
|
|
|
|
|
false
|
|
|
|
|
|
}
|
|
|
|
|
|
})
|
|
|
|
|
|
.map(|(id, s)| (*id, *s))
|
|
|
|
|
|
.collect();
|
|
|
|
|
|
PositiveSet { identifiers: res }
|
2025-08-26 23:36:29 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/// ☞ returns a ∖ b, values that are shared but with different state are
|
|
|
|
|
|
/// preserved in the subtraction.
|
|
|
|
|
|
fn subtraction(&self, other: &Self) -> Self {
|
2025-09-07 17:55:53 +02:00
|
|
|
|
let res: BTreeMap<_, _> = self
|
|
|
|
|
|
.identifiers
|
|
|
|
|
|
.iter()
|
|
|
|
|
|
.filter(|(id, s)| {
|
|
|
|
|
|
if let Some(s1) = other.identifiers.get(id)
|
|
|
|
|
|
&& s1 == *s
|
|
|
|
|
|
{
|
|
|
|
|
|
false
|
|
|
|
|
|
} else {
|
|
|
|
|
|
true
|
|
|
|
|
|
}
|
|
|
|
|
|
})
|
|
|
|
|
|
.map(|(id, s)| (*id, *s))
|
|
|
|
|
|
.collect();
|
|
|
|
|
|
PositiveSet { identifiers: res }
|
2025-08-26 23:36:29 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
fn len(&self) -> usize {
|
2025-09-07 17:55:53 +02:00
|
|
|
|
self.identifiers.len()
|
2025-08-26 23:36:29 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
fn is_empty(&self) -> bool {
|
2025-09-07 17:55:53 +02:00
|
|
|
|
self.identifiers.is_empty()
|
2025-08-26 23:36:29 +02:00
|
|
|
|
}
|
2025-08-29 17:59:49 +02:00
|
|
|
|
|
|
|
|
|
|
fn contains(&self, el: &Self::Element) -> bool {
|
2025-09-07 17:55:53 +02:00
|
|
|
|
if let Some(e) = self.identifiers.get(&el.id)
|
|
|
|
|
|
&& *e == el.state
|
|
|
|
|
|
{
|
|
|
|
|
|
true
|
|
|
|
|
|
} else {
|
|
|
|
|
|
false
|
|
|
|
|
|
}
|
2025-08-29 17:59:49 +02:00
|
|
|
|
}
|
2025-08-26 23:36:29 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
impl PrintableWithTranslator for PositiveSet {
|
2025-09-10 22:41:40 +02:00
|
|
|
|
fn print(
|
|
|
|
|
|
&self,
|
|
|
|
|
|
f: &mut fmt::Formatter,
|
|
|
|
|
|
translator: &Translator,
|
|
|
|
|
|
) -> fmt::Result {
|
2025-09-07 17:55:53 +02:00
|
|
|
|
write!(f, "{{")?;
|
|
|
|
|
|
let mut it = self.iter().peekable();
|
|
|
|
|
|
while let Some((id, s)) = it.next() {
|
|
|
|
|
|
if it.peek().is_none() {
|
|
|
|
|
|
write!(
|
|
|
|
|
|
f,
|
|
|
|
|
|
"{}",
|
2025-09-10 22:41:40 +02:00
|
|
|
|
Formatter::from(
|
|
|
|
|
|
translator,
|
|
|
|
|
|
&PositiveType { id: *id, state: *s }
|
|
|
|
|
|
)
|
2025-09-07 17:55:53 +02:00
|
|
|
|
)?;
|
|
|
|
|
|
} else {
|
|
|
|
|
|
write!(
|
|
|
|
|
|
f,
|
|
|
|
|
|
"{}, ",
|
2025-09-10 22:41:40 +02:00
|
|
|
|
Formatter::from(
|
|
|
|
|
|
translator,
|
|
|
|
|
|
&PositiveType { id: *id, state: *s }
|
|
|
|
|
|
)
|
2025-09-07 17:55:53 +02:00
|
|
|
|
)?;
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
write!(f, "}}")
|
2025-08-26 23:36:29 +02:00
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
impl PartialEq for PositiveSet {
|
|
|
|
|
|
fn eq(&self, other: &Self) -> bool {
|
2025-09-07 17:55:53 +02:00
|
|
|
|
self.identifiers.eq(&other.identifiers)
|
2025-08-26 23:36:29 +02:00
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2025-08-27 23:58:43 +02:00
|
|
|
|
impl Hash for PositiveSet {
|
|
|
|
|
|
fn hash<H: std::hash::Hasher>(&self, state: &mut H) {
|
2025-09-07 17:55:53 +02:00
|
|
|
|
self.identifiers.hash(state)
|
2025-08-27 23:58:43 +02:00
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2025-08-26 23:36:29 +02:00
|
|
|
|
impl IntoIterator for PositiveSet {
|
|
|
|
|
|
type Item = (IdType, IdState);
|
|
|
|
|
|
type IntoIter = std::collections::btree_map::IntoIter<IdType, IdState>;
|
|
|
|
|
|
|
|
|
|
|
|
fn into_iter(self) -> Self::IntoIter {
|
2025-09-07 17:55:53 +02:00
|
|
|
|
self.identifiers.into_iter()
|
2025-08-26 23:36:29 +02:00
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
impl<'a> IntoIterator for &'a PositiveSet {
|
|
|
|
|
|
type Item = (&'a IdType, &'a IdState);
|
|
|
|
|
|
type IntoIter = std::collections::btree_map::Iter<'a, IdType, IdState>;
|
|
|
|
|
|
|
|
|
|
|
|
fn into_iter(self) -> Self::IntoIter {
|
2025-09-07 17:55:53 +02:00
|
|
|
|
self.identifiers.iter()
|
2025-08-26 23:36:29 +02:00
|
|
|
|
}
|
|
|
|
|
|
}
|
2025-08-27 23:58:43 +02:00
|
|
|
|
|
|
|
|
|
|
impl<const N: usize> From<[(IdType, IdState); N]> for PositiveSet {
|
|
|
|
|
|
fn from(arr: [(IdType, IdState); N]) -> Self {
|
2025-09-07 17:55:53 +02:00
|
|
|
|
PositiveSet {
|
|
|
|
|
|
identifiers: BTreeMap::from(arr),
|
|
|
|
|
|
}
|
2025-08-27 23:58:43 +02:00
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
impl From<&[(IdType, IdState)]> for PositiveSet {
|
|
|
|
|
|
fn from(arr: &[(IdType, IdState)]) -> Self {
|
2025-09-07 17:55:53 +02:00
|
|
|
|
PositiveSet {
|
|
|
|
|
|
identifiers: BTreeMap::from_iter(arr.to_vec()),
|
|
|
|
|
|
}
|
2025-08-27 23:58:43 +02:00
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
impl From<Vec<(IdType, IdState)>> for PositiveSet {
|
|
|
|
|
|
fn from(arr: Vec<(IdType, IdState)>) -> Self {
|
2025-09-07 17:55:53 +02:00
|
|
|
|
PositiveSet {
|
|
|
|
|
|
identifiers: BTreeMap::from_iter(arr),
|
|
|
|
|
|
}
|
2025-08-27 23:58:43 +02:00
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2025-09-07 17:55:53 +02:00
|
|
|
|
impl<const N: usize> From<[PositiveType; N]> for PositiveSet {
|
|
|
|
|
|
fn from(arr: [PositiveType; N]) -> Self {
|
|
|
|
|
|
arr.into_iter()
|
|
|
|
|
|
.map(|el| (el.id, el.state))
|
|
|
|
|
|
.collect::<Vec<_>>()
|
|
|
|
|
|
.into()
|
2025-08-27 23:58:43 +02:00
|
|
|
|
}
|
2025-09-07 17:55:53 +02:00
|
|
|
|
}
|
2025-08-27 23:58:43 +02:00
|
|
|
|
|
2025-09-07 17:55:53 +02:00
|
|
|
|
impl From<&[PositiveType]> for PositiveSet {
|
|
|
|
|
|
fn from(arr: &[PositiveType]) -> Self {
|
|
|
|
|
|
arr.iter()
|
|
|
|
|
|
.map(|el| (el.id, el.state))
|
|
|
|
|
|
.collect::<Vec<_>>()
|
|
|
|
|
|
.into()
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
impl From<Vec<PositiveType>> for PositiveSet {
|
|
|
|
|
|
fn from(arr: Vec<PositiveType>) -> Self {
|
|
|
|
|
|
arr.into_iter()
|
|
|
|
|
|
.map(|el| (el.id, el.state))
|
|
|
|
|
|
.collect::<Vec<_>>()
|
|
|
|
|
|
.into()
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2025-09-08 20:35:37 +02:00
|
|
|
|
impl FromIterator<PositiveType> for PositiveSet {
|
|
|
|
|
|
fn from_iter<T: IntoIterator<Item = PositiveType>>(iter: T) -> Self {
|
2025-09-10 22:41:40 +02:00
|
|
|
|
Self {
|
|
|
|
|
|
identifiers: iter.into_iter().map(|el| (el.id, el.state)).collect(),
|
|
|
|
|
|
}
|
2025-09-08 20:35:37 +02:00
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
impl FromIterator<(IdType, IdState)> for PositiveSet {
|
|
|
|
|
|
fn from_iter<T: IntoIterator<Item = (IdType, IdState)>>(iter: T) -> Self {
|
2025-09-10 22:41:40 +02:00
|
|
|
|
Self {
|
|
|
|
|
|
identifiers: iter.into_iter().collect(),
|
|
|
|
|
|
}
|
2025-09-08 20:35:37 +02:00
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2025-09-07 17:55:53 +02:00
|
|
|
|
impl PositiveSet {
|
|
|
|
|
|
/// Returns the list of elements that are in both set with opposite state.
|
|
|
|
|
|
/// Example: [+1, +2, -3] ⩀ [-1, +2, +3] = [1, 3]
|
2025-08-27 23:58:43 +02:00
|
|
|
|
pub fn opposite_intersection(&self, other: &Self) -> Vec<IdType> {
|
2025-09-07 17:55:53 +02:00
|
|
|
|
let mut ret = vec![];
|
|
|
|
|
|
for (el, state) in self {
|
|
|
|
|
|
if let Some(state2) = other.identifiers.get(el)
|
|
|
|
|
|
&& *state == !*state2
|
|
|
|
|
|
{
|
|
|
|
|
|
ret.push(*el);
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
ret
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
fn remove_elements(&mut self, other: Vec<IdType>) {
|
|
|
|
|
|
for element in other {
|
|
|
|
|
|
self.identifiers.remove(&element);
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
fn equal_except_negated_elements(&self, other: &Self) -> bool {
|
|
|
|
|
|
let mut intersection = self.opposite_intersection(other);
|
|
|
|
|
|
intersection.sort();
|
|
|
|
|
|
let mut self_copy = self.identifiers.clone();
|
|
|
|
|
|
for el in other {
|
|
|
|
|
|
if intersection.binary_search(el.0).is_err()
|
|
|
|
|
|
|| self_copy.get(el.0) != Some(el.1)
|
|
|
|
|
|
{
|
|
|
|
|
|
return false;
|
|
|
|
|
|
}
|
|
|
|
|
|
self_copy.remove(el.0);
|
|
|
|
|
|
}
|
|
|
|
|
|
self_copy.is_empty()
|
2025-08-27 23:58:43 +02:00
|
|
|
|
}
|
2025-09-08 20:35:37 +02:00
|
|
|
|
|
|
|
|
|
|
pub fn positives(&self) -> Self {
|
2025-09-10 22:41:40 +02:00
|
|
|
|
self.iter()
|
|
|
|
|
|
.filter(|el| *el.1 == IdState::Positive)
|
2025-09-08 20:35:37 +02:00
|
|
|
|
.map(|el| (*el.0, *el.1))
|
|
|
|
|
|
.collect::<PositiveSet>()
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
pub fn negatives(&self) -> Self {
|
2025-09-10 22:41:40 +02:00
|
|
|
|
self.iter()
|
|
|
|
|
|
.filter(|el| *el.1 == IdState::Negative)
|
2025-09-08 20:35:37 +02:00
|
|
|
|
.map(|el| (*el.0, *el.1))
|
|
|
|
|
|
.collect::<PositiveSet>()
|
|
|
|
|
|
}
|
2025-08-27 23:58:43 +02:00
|
|
|
|
}
|