Skip to content

Commit

Permalink
core generate fixed
Browse files Browse the repository at this point in the history
  • Loading branch information
rcoreilly committed Oct 17, 2024
1 parent 296da6d commit 53cd681
Show file tree
Hide file tree
Showing 6 changed files with 93 additions and 93 deletions.
170 changes: 85 additions & 85 deletions axon/enumgen.go

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions axon/hip_net.go
Original file line number Diff line number Diff line change
Expand Up @@ -238,7 +238,7 @@ func (net *Network) ConfigLoopsHip(ctx *Context, man *looper.Manager, hip *HipCo
beta1.OnEvent.Add("Hip:Beta1", func() {
ca1FromEc3.Params.PathScale.Rel = hip.ThetaLow
ca1FromCa3.Params.PathScale.Rel = hip.ThetaHigh
if man.Mode == etime.Test {
if ctx.Mode == etime.Test {
ca3FromDg.Params.PathScale.Rel = dgPjScale * (1 - hip.MossyDeltaTest)
}
net.InitGScale(ctx) // update computed scaling factors
Expand All @@ -253,7 +253,7 @@ func (net *Network) ConfigLoopsHip(ctx *Context, man *looper.Manager, hip *HipCo
ca1FromCa3.Params.PathScale.Rel = hip.ThetaLow
// clamp EC5 from clamp source (EC3 typically)
if hip.EC5Clamp {
if mode != etime.Test || hip.EC5ClampTest {
if ctx.Mode != etime.Test || hip.EC5ClampTest {
for di := uint32(0); di < ctx.NData; di++ {
clampSrc.UnitValues(&tmpValues, "Act", int(di))
// TODO:
Expand Down
2 changes: 1 addition & 1 deletion chans/typegen.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions examples/choose/armaze/typegen.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion examples/objrec/typegen.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit 53cd681

Please sign in to comment.