1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
use super::*;
use std::convert::TryFrom;
impl BddVariableSet {
pub fn new_anonymous(num_vars: u16) -> BddVariableSet {
if num_vars >= (u16::MAX - 1) {
panic!(
"Too many BDD variables. There can be at most {} variables.",
u16::MAX - 1
)
}
BddVariableSet {
num_vars,
var_names: (0..num_vars).map(|i| format!("x_{}", i)).collect(),
var_index_mapping: (0..num_vars).map(|i| (format!("x_{}", i), i)).collect(),
}
}
pub fn new(vars: &[&str]) -> BddVariableSet {
let mut builder = BddVariableSetBuilder::new();
builder.make_variables(vars);
builder.build()
}
pub fn num_vars(&self) -> u16 {
self.num_vars
}
pub fn var_by_name(&self, name: &str) -> Option<BddVariable> {
self.var_index_mapping.get(name).cloned().map(BddVariable)
}
pub fn variables(&self) -> Vec<BddVariable> {
(0..self.num_vars).map(BddVariable).collect()
}
pub fn name_of(&self, variable: BddVariable) -> String {
self.var_names[variable.0 as usize].clone()
}
pub fn mk_true(&self) -> Bdd {
Bdd::mk_true(self.num_vars)
}
pub fn mk_false(&self) -> Bdd {
Bdd::mk_false(self.num_vars)
}
pub fn mk_var(&self, var: BddVariable) -> Bdd {
debug_assert!(var.0 < self.num_vars, "Invalid variable id.");
Bdd::mk_var(self.num_vars, var)
}
pub fn mk_not_var(&self, var: BddVariable) -> Bdd {
debug_assert!(var.0 < self.num_vars, "Invalid variable id.");
Bdd::mk_not_var(self.num_vars, var)
}
pub fn mk_literal(&self, var: BddVariable, value: bool) -> Bdd {
debug_assert!(var.0 < self.num_vars, "Invalid variable id.");
Bdd::mk_literal(self.num_vars, var, value)
}
pub fn mk_var_by_name(&self, var: &str) -> Bdd {
self.var_by_name(var)
.map(|var| self.mk_var(var))
.unwrap_or_else(|| panic!("Variable {} is not known in this set.", var))
}
pub fn mk_not_var_by_name(&self, var: &str) -> Bdd {
self.var_by_name(var)
.map(|var| self.mk_not_var(var))
.unwrap_or_else(|| panic!("Variable {} is not known in this set.", var))
}
pub fn mk_conjunctive_clause(&self, clause: &BddPartialValuation) -> Bdd {
let mut result = self.mk_true();
for (index, value) in clause.0.iter().enumerate().rev() {
if let Some(value) = value {
assert!(index < self.num_vars as usize);
debug_assert!(u16::try_from(index).is_ok());
let variable = BddVariable(index as u16);
let node = if *value {
BddNode::mk_node(variable, BddPointer::zero(), result.root_pointer())
} else {
BddNode::mk_node(variable, result.root_pointer(), BddPointer::zero())
};
result.push_node(node);
}
}
result
}
pub fn mk_disjunctive_clause(&self, clause: &BddPartialValuation) -> Bdd {
if clause.is_empty() {
return self.mk_false();
}
let mut result = self.mk_true();
let mut shadow_root = BddPointer::zero();
for (index, value) in clause.0.iter().enumerate().rev() {
if let Some(value) = value {
assert!(index < self.num_vars as usize);
debug_assert!(u16::try_from(index).is_ok());
let variable = BddVariable(index as u16);
let node = if *value {
BddNode::mk_node(variable, shadow_root, BddPointer::one())
} else {
BddNode::mk_node(variable, BddPointer::one(), shadow_root)
};
result.push_node(node);
shadow_root = result.root_pointer();
}
}
result
}
pub fn mk_cnf(&self, cnf: &[BddPartialValuation]) -> Bdd {
cnf.iter()
.map(|it| self.mk_disjunctive_clause(it))
.fold(self.mk_true(), |a, b| a.and(&b))
}
pub fn mk_dnf(&self, dnf: &[BddPartialValuation]) -> Bdd {
dnf.iter()
.map(|it| self.mk_conjunctive_clause(it))
.fold(self.mk_false(), |a, b| a.or(&b))
}
}
#[cfg(test)]
mod tests {
use super::_test_util::mk_5_variable_set;
use super::*;
#[test]
fn bdd_universe_anonymous() {
let universe = BddVariableSet::new_anonymous(5);
assert_eq!(Some(BddVariable(0)), universe.var_by_name("x_0"));
assert_eq!(Some(BddVariable(1)), universe.var_by_name("x_1"));
assert_eq!(Some(BddVariable(2)), universe.var_by_name("x_2"));
assert_eq!(Some(BddVariable(3)), universe.var_by_name("x_3"));
assert_eq!(Some(BddVariable(4)), universe.var_by_name("x_4"));
}
#[test]
fn bdd_universe_mk_const() {
let variables = mk_5_variable_set();
let tt = variables.mk_true();
let ff = variables.mk_false();
assert!(tt.is_true());
assert!(ff.is_false());
assert_eq!(Bdd::mk_true(5), tt);
assert_eq!(Bdd::mk_false(5), ff);
}
#[test]
#[should_panic]
#[cfg(debug_assertions)]
fn bdd_universe_mk_var_invalid_id() {
mk_5_variable_set().mk_var(BddVariable(6));
}
#[test]
#[should_panic]
#[cfg(debug_assertions)]
fn bdd_universe_mk_not_var_invalid_id() {
mk_5_variable_set().mk_not_var(BddVariable(6));
}
#[test]
#[should_panic]
fn bdd_universe_mk_var_by_name_invalid_name() {
mk_5_variable_set().mk_var_by_name("abc");
}
#[test]
#[should_panic]
fn bdd_universe_mk_not_var_by_name_invalid_name() {
mk_5_variable_set().mk_not_var_by_name("abc");
}
#[test]
fn bdd_mk_clause() {
let universe = BddVariableSet::new_anonymous(5);
let variables = universe.variables();
let valuation = BddPartialValuation::from_values(&[
(variables[0], true),
(variables[2], false),
(variables[4], true),
]);
let con_expected = universe.eval_expression_string("x_0 & !x_2 & x_4");
let dis_expected = universe.eval_expression_string("x_0 | !x_2 | x_4");
assert_eq!(con_expected, universe.mk_conjunctive_clause(&valuation));
assert_eq!(dis_expected, universe.mk_disjunctive_clause(&valuation));
}
#[test]
fn bdd_mk_empty_clause() {
let universe = BddVariableSet::new_anonymous(5);
let empty = BddPartialValuation::empty();
assert_eq!(universe.mk_true(), universe.mk_conjunctive_clause(&empty));
assert_eq!(universe.mk_false(), universe.mk_disjunctive_clause(&empty));
}
#[test]
#[should_panic]
fn bdd_mk_conjunctive_clause_fails() {
let universe = BddVariableSet::new_anonymous(5);
let valuation = BddPartialValuation::from_values(&[(BddVariable(7), true)]);
universe.mk_conjunctive_clause(&valuation);
}
#[test]
#[should_panic]
fn bdd_mk_disjunctive_clause_fails() {
let universe = BddVariableSet::new_anonymous(5);
let valuation = BddPartialValuation::from_values(&[(BddVariable(7), true)]);
universe.mk_conjunctive_clause(&valuation);
}
#[test]
fn bdd_mk_normal_form() {
let universe = BddVariableSet::new_anonymous(5);
let variables = universe.variables();
let cnf_expected =
universe.eval_expression_string("(x_0 | !x_4) & (x_1 | !x_3 | !x_0) & x_2");
let dnf_expected =
universe.eval_expression_string("(x_0 & !x_4) | (x_1 & !x_3 & !x_0) | x_2");
assert!(!cnf_expected.is_true() && !cnf_expected.is_false());
assert!(!dnf_expected.is_true() && !dnf_expected.is_false());
let c1 = BddPartialValuation::from_values(&[(variables[0], true), (variables[4], false)]);
let c2 = BddPartialValuation::from_values(&[
(variables[1], true),
(variables[3], false),
(variables[0], false),
]);
let c3 = BddPartialValuation::from_values(&[(variables[2], true)]);
let formula = &[c1, c2, c3];
assert_eq!(cnf_expected, universe.mk_cnf(formula));
assert_eq!(dnf_expected, universe.mk_dnf(formula));
}
}