Skip to content

Commit

Permalink
Generalize initializer type in BFS provider
Browse files Browse the repository at this point in the history
  • Loading branch information
mondokm committed Feb 16, 2024
1 parent d7289e3 commit 218df2e
Showing 1 changed file with 2 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -28,11 +28,8 @@ public MddHandle compute(
AbstractNextStateDescriptor nextStateRelation,
MddVariableHandle highestAffectedVariable
) {

final MddHandle initialStates =
relProdProvider.compute(((MddGraph<Boolean>) variableOrder.getMddGraph()).getHandleFor(true,
highestAffectedVariable
), initializer, highestAffectedVariable);

final MddHandle initialStates = relProdProvider.compute(variableOrder.getMddGraph().getHandleForTop(), initializer, highestAffectedVariable);

MddNode result;

Expand Down

0 comments on commit 218df2e

Please sign in to comment.