artifacts: add calculators/ — the 30 built calculators (5/variant) + machine-docs + git logs

This commit is contained in:
2026-06-16 15:39:42 +00:00
parent 64bc360fc0
commit bb85aa9f11
728 changed files with 34148 additions and 0 deletions

View File

@ -0,0 +1,12 @@
# BACKLOG-eval
## Build backlog
- [x] D1 arithmetic — `evaluate()` correct for +/-/*//, precedence, parens, unary minus
- [x] D2 division — true division; `EvalError` on zero; not bare `ZeroDivisionError`
- [x] D3 result type — whole floats → int; non-whole → float; rule documented in evaluator.py
- [x] D4 CLI — `calc.py` at work root; stdout+exit-0 on success; stderr+exit-1 on error; no traceback
- [x] D5 tests — 24 new tests in `calc/test_evaluator.py`; 68 total pass; prior suite unaffected
## Adversary findings
_(none yet)_