Example #1
0
func NewEfhSim(shallow bool) *EfhSim {
	s := &EfhSim{
		simu:     sim.NewSim(shallow),
		observer: sim.NewMuxObserver(),
	}
	return s
}
Example #2
0
func NewSplitter(shallow bool) *Splitter {
	return &Splitter{
		simu: sim.NewSim(shallow),
	}
}