Skip to content

Commit

Permalink
Fix formatting.
Browse files Browse the repository at this point in the history
  • Loading branch information
daemontus committed May 8, 2023
1 parent a9aca89 commit 9964e74
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/_impl_boolean_network.rs
Original file line number Diff line number Diff line change
Expand Up @@ -309,8 +309,7 @@ impl BooleanNetwork {
let regulator_is_false = ctx.bdd_variable_set().mk_not_var(regulator);

let observability = {
let fn_x1_to_1 =
bdd!(fn_is_true & regulator_is_true).var_exists(regulator);
let fn_x1_to_1 = bdd!(fn_is_true & regulator_is_true).var_exists(regulator);
let fn_x0_to_1 =
bdd!(fn_is_true & regulator_is_false).var_exists(regulator);
bdd!(fn_x1_to_1 ^ fn_x0_to_1).exists(ctx.state_variables())
Expand Down

0 comments on commit 9964e74

Please sign in to comment.