Skip to content

Commit

Permalink
add comments to ParsedFormula struct
Browse files Browse the repository at this point in the history
  • Loading branch information
timbeurskens committed Mar 13, 2022
1 parent ce71744 commit 3cdaf3c
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/parser.rs
Original file line number Diff line number Diff line change
Expand Up @@ -90,9 +90,13 @@ pub enum SymbolicBDD {

#[derive(Debug, Clone)]
pub struct ParsedFormula {
// all variables in the parse tree
pub vars: Vec<String>,
// all variables not bound by a quantifier in the parse tree
pub free_vars: Vec<String>,
// the parse tree
pub bdd: SymbolicBDD,
// the environment
pub env: RefCell<BDDEnv<NamedSymbol>>,
}

Expand Down

0 comments on commit 3cdaf3c

Please sign in to comment.