1
0
mirror of https://github.com/ellmau/adf-obdd.git synced 2025-12-19 09:29:36 +01:00

Fixed compile issue with --no-default-features

This commit is contained in:
Stefan Ellmauthaler 2022-04-04 13:08:49 +02:00
parent 3feeb1343b
commit ff5398ee51
Failed to extract signature

View File

@ -321,7 +321,7 @@ impl Bdd {
}
#[cfg(not(feature = "adhoccounting"))]
match self.count_cache.borrow().get(&term) {
Some((mc, depth)) => *depth,
Some((_mc, _pc, depth)) => *depth,
None => {
if term.is_truth_value() {
0