mirror of
https://github.com/ellmau/adf-obdd.git
synced 2025-12-20 09:39:38 +01:00
Add missing doc strings
This commit is contained in:
parent
c34e57f3e0
commit
f1a797fb38
@ -133,9 +133,13 @@ impl std::fmt::Debug for Formula {
|
|||||||
/// Note that the parser can be utilised by an [ADF][`crate::adf::Adf`] to initialise it with minimal overhead.
|
/// Note that the parser can be utilised by an [ADF][`crate::adf::Adf`] to initialise it with minimal overhead.
|
||||||
#[derive(Debug)]
|
#[derive(Debug)]
|
||||||
pub struct AdfParser {
|
pub struct AdfParser {
|
||||||
|
/// A name for each statement (identified by index in vector)
|
||||||
pub namelist: Arc<RwLock<Vec<String>>>,
|
pub namelist: Arc<RwLock<Vec<String>>>,
|
||||||
|
/// Inverse mapping from name to index of statement in vector above
|
||||||
pub dict: Arc<RwLock<HashMap<String, usize>>>,
|
pub dict: Arc<RwLock<HashMap<String, usize>>>,
|
||||||
|
/// The formula (acceptance condition) for each statement identified by its index
|
||||||
pub formulae: RefCell<Vec<Formula>>,
|
pub formulae: RefCell<Vec<Formula>>,
|
||||||
|
/// The formula for each statement identified by its index
|
||||||
pub formulaname: RefCell<Vec<String>>,
|
pub formulaname: RefCell<Vec<String>>,
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user