• Home
  • Features
  • Pricing
  • Docs
  • Announcements
  • Sign In

CodeReclaimers / neat-python / 23119156240
85%

Build:
DEFAULT BRANCH: master
Ran 15 Mar 2026 08:57PM UTC
Jobs 1
Files 30
Run time 1min
Badge
Embed ▾
README BADGES
x

If you need to use a raster PNG badge, change the '.svg' to '.png' in the link

Markdown

Textile

RDoc

HTML

Rst

15 Mar 2026 08:57PM UTC coverage: 83.94%. Remained the same
23119156240

push

github

CodeReclaimers
Fix two double-buffer bugs in CTRNN advance method

Bug 1: The exponential Euler update applied decay to ovalues (the stale
buffer from two steps ago) instead of ivalues (the current state). Each
buffer was only updated every other step, so the decay term used state
from two timesteps ago rather than one.

Fix: decay * ivalues[node_key] instead of decay * ovalues[node_key]

Bug 2: The return statement read from values[1 - self.active], which
is the pre-update buffer (ivalues), not the just-written buffer
(ovalues). This returned output lagging one step behind the actual
state.

Fix: return values[self.active] (the buffer that was last written to)

Both bugs existed in the original forward Euler code and were carried
over in the exponential Euler conversion. They were found by the GPU
numerical equivalence tests, which use single-buffer in-place updates
and thus don't have the double-buffer issue.

Also fix test_response_parameter_effect to use small inputs/weights
that avoid tanh saturation, which was masking the response difference.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>

2 of 2 new or added lines in 1 file covered. (100.0%)

2028 of 2416 relevant lines covered (83.94%)

0.84 hits per line

Jobs
ID Job ID Ran Files Coverage
1 23119156240.1 15 Mar 2026 08:57PM UTC 30
83.94
GitHub Action Run
Source Files on build 23119156240
  • Tree
  • List 30
  • Changed 0
  • Source Changed 0
  • Coverage Changed 0
Coverage ∆ File Lines Relevant Covered Missed Hits/Line
  • Back to Repo
  • 56653d4b on github
  • Prev Build on master (#23119008543)
  • Next Build on master (#23215631907)
STATUS · Troubleshooting · Open an Issue · Sales · Support · CAREERS · ENTERPRISE · START FREE · SCHEDULE DEMO
ANNOUNCEMENTS · TWITTER · TOS & SLA · Supported CI Services · What's a CI service? · Automated Testing

© 2026 Coveralls, Inc