Finishes cache

This commit is contained in:
2026-02-10 18:11:50 +01:00
parent 1c17aa20c2
commit d8180a982e
5 changed files with 142 additions and 32 deletions

View File

@ -8,7 +8,7 @@ use crate::ast::Variable;
#[derive(Clone, Debug)]
pub struct Constraints
{
set: HashMap<Variable, Predicate>,
pub(crate) set: HashMap<Variable, Predicate>,
}
impl Constraints