diff --git a/internal/simulation/simu.go b/internal/simulation/simu.go index 553829a1f4d33b3825903248a0aae68171560910..2eb61e22ddd6b3ac15b96d651c8193d994f37c14 100644 --- a/internal/simulation/simu.go +++ b/internal/simulation/simu.go @@ -142,7 +142,7 @@ func (simu *Simulation) Run() { var wg sync.WaitGroup for _, agt := range simu.env.ags { - + wg.Add(1) go func(agent Agent) { defer wg.Done() @@ -236,7 +236,6 @@ func (simu *Simulation) Print() [][]string { return result } - func (simu *Simulation) Log() { // Not implemented }