Download Latest Version v0.2.0 -- Multi-Language Ports source code.zip (101.9 kB)
Email in envelope

Get an email when there's a new version of LombokECC

Home / v0.0.2
Name Modified Size InfoDownloads / Week
Parent folder
CHANGELOG.md 2026-08-29 772 Bytes
LICENSE 2026-08-29 10.8 kB
README.md 2026-08-29 4.4 kB
v0.0.2 -- BMA Bug Identified source code.tar.gz 2026-08-28 15.3 kB
v0.0.2 -- BMA Bug Identified source code.zip 2026-08-28 20.2 kB
Totals: 5 Items   51.5 kB 0

LombokECC — Reed-Solomon Error Correction Codes

A TypeScript implementation of Reed-Solomon error-correction codes over GF(256).

Version: v0.0.2 · Status: Encoder stable, decoder under intensive debugging


GitHub

Stars Release License

Quality

TypeScript Zero deps

Lombok Ecosystem

LombokClarion LombokCSS LombokCharts LombokQRCode LombokTableSheet LombokAnimate LombokECC


Changes from v0.0.1

  • Multiple Forney formula variants tested in decoder
  • BMA L-computation bug identified: computes L=8 for single-error case (should be L=1)
  • Decoder debugging via modified test vectors in test-rs.ts
  • Encoder remains stable and fully tested

What works

  • GF(256) field arithmetic (exp/log tables, mul, div, inv, pow)
  • Systematic RS encoding with parity layout [parity(16) || message(239)]
  • Syndrome computation and isValid() check

What doesn't work yet

  • Decoder (BMA) — L-update condition produces wrong values; root cause identified but not yet fixed

Build & Test

npm install
npm run build         # tsc → dist/
npm run test:full     # encoder + GF polynomial tests (PASS)
npm run test:decode   # decoder test (EXPECTED FAIL — decoder belum works)

Note: npm run test:full hanya menjalankan test yang PASS di versi ini. test:decode tersedia terpisah untuk debugging — akan FAIL karena decoder belum selesai.

Publishing

git tag -a v0.0.2 -m "LombokECC 0.0.2" && git push origin main --tags

License

Apache-2.0 — LICENSE

Repository: github.com/codinglombok/LombokECC

Source: README.md, updated 2026-08-29