use of org.batfish.z3.state.DropAcl in project batfish by batfish.
the class DefaultTransitionGenerator method visitDropAcl.
@Override
public void visitDropAcl(DropAcl.State dropAcl) {
// CopyDropAclIn
_rules.add(new BasicRuleStatement(DropAclIn.INSTANCE, DropAcl.INSTANCE));
// CopyDropAclOut
_rules.add(new BasicRuleStatement(DropAclOut.INSTANCE, DropAcl.INSTANCE));
// ProjectNodeDropAcl (unused for now)
// _rules.add(
// new RuleStatement(
// new OrExpr(
// _input
// .getEnabledNodes()
// .keySet()
// .stream()
// .map(NodeDropAcl::new)
// .collect(ImmutableList.toImmutableList())),
// DropAcl.INSTANCE));
}
Aggregations