use of org.batfish.datamodel.ForwardingAnalysisImpl in project batfish by batfish.
the class NodJobTest method setupSynthesizer.
private void setupSynthesizer() {
Topology topology = new Topology(_dataPlane.getTopologyEdges());
SynthesizerInput input = SynthesizerInputImpl.builder().setConfigurations(_configs).setForwardingAnalysis(new ForwardingAnalysisImpl(_configs, _dataPlane.getRibs(), _dataPlane.getFibs(), topology)).setSimplify(false).setTopology(topology).build();
_synthesizer = new Synthesizer(input);
}
Aggregations