From 73903b4313d3fa6020f2def9bed21f5ffbb5d1d1 Mon Sep 17 00:00:00 2001 From: "Randall C. O'Reilly" Date: Sat, 9 Nov 2024 10:21:02 -0800 Subject: [PATCH] fix for hip test init -- was calling initmode in loops which is not good. --- ch7/hip/hip.go | 1 - 1 file changed, 1 deletion(-) diff --git a/ch7/hip/hip.go b/ch7/hip/hip.go index 7f0c9b1d..5170a963 100644 --- a/ch7/hip/hip.go +++ b/ch7/hip/hip.go @@ -408,7 +408,6 @@ func (ss *Sim) Init() { } func (ss *Sim) TestInit() { - ss.Loops.InitMode(etime.Test) tst := ss.Envs.ByMode(etime.Test).(*env.FixedTable) tst.Init(0) }