Build a reachability model from the given inputs.
(
policy: PolicyModel,
credentials: CredentialSet,
binary_registry: BinaryRegistry,
)
| 384 | |
| 385 | /// Build a reachability model from the given inputs. |
| 386 | pub fn build_model( |
| 387 | policy: PolicyModel, |
| 388 | credentials: CredentialSet, |
| 389 | binary_registry: BinaryRegistry, |
| 390 | ) -> ReachabilityModel { |
| 391 | // Ensure the thread-local Z3 context is initialized |
| 392 | let _ctx = Context::thread_local(); |
| 393 | ReachabilityModel::new(policy, credentials, binary_registry) |
| 394 | } |
no outgoing calls