Skip to content

Commit

Permalink
fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
smijeva committed Nov 27, 2024
1 parent 8477542 commit 8b40c42
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion src/bindings/pbn_control/control.rs
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,12 @@ impl Control {
// If initial states is not set, we consider all networks states as potential initial states
let initial_states_native = match initial_states {
Some(x) => x.as_native().clone(),

Check warning on line 162 in src/bindings/pbn_control/control.rs

View check run for this annotation

Codecov / codecov/patch

src/bindings/pbn_control/control.rs#L162

Added line #L162 was not covered by tests
None => graph.get().as_native().mk_unit_colored_vertices().vertices().clone()
None => graph
.get()
.as_native()
.mk_unit_colored_vertices()
.vertices()
.clone(),
};

// If size limit is not set, we consider the largest possible size.
Expand Down

0 comments on commit 8b40c42

Please sign in to comment.