Skip to content

Commit

Permalink
Added support in LTS
Browse files Browse the repository at this point in the history
  • Loading branch information
leventeBajczi committed Nov 29, 2024
1 parent e89774e commit ccbbcb4
Showing 1 changed file with 5 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -191,6 +191,11 @@ fun getCoreXcfaLts() =
}
.flatten()
.toSet()
.filter { action ->
s.syncingOn?.let { key ->
action.label.getFlatLabels().first().let { it is SyncRecvLabel && it.key == key }
} ?: true
}
}

fun getXcfaLts(): LTS<XcfaState<out PtrState<out ExprState>>, XcfaAction> {
Expand Down

0 comments on commit ccbbcb4

Please sign in to comment.