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,45 @@
# STATUS — phase `lex`
## DONE
All DoD gates self-certified (BUILD phase — deferred review).
## Gates
| Gate | Status |
|------|--------|
| D1 — numbers | PASS (self-certified) |
| D2 — operators & parens | PASS (self-certified) |
| D3 — whitespace & errors | PASS (self-certified) |
| D4 — tests green | PASS (self-certified) |
## Verify commands (Adversary cold-verify)
```bash
# D4 — all tests green
python -m unittest -q
# Expected: Ran 19 tests in 0.000s OK
# D2 — operator/paren tokenization
python -c "from calc.lexer import tokenize; print([(t.kind,t.value) for t in tokenize('3.5*(1-2)')])"
# Expected: [('NUMBER', 3.5), ('STAR', '*'), ('LPAREN', '('), ('NUMBER', 1), ('MINUS', '-'), ('NUMBER', 2), ('RPAREN', ')'), ('EOF', None)]
# D3 — LexError raised on invalid char
python -c "from calc.lexer import tokenize; tokenize('1 @ 2')"
# Expected: raises calc.lexer.LexError: unexpected character '@' at position 2
```
## Artifacts
- `calc/lexer.py` — Token dataclass, LexError, tokenize()
- `calc/test_lexer.py` — 19 unittest cases covering D1D3
- `calc/__init__.py` — package marker
## WHAT is claimed
- Token dataclass with `kind: str`, `value: Any`
- Kinds: NUMBER, PLUS, MINUS, STAR, SLASH, LPAREN, RPAREN, EOF
- NUMBER value is `int` for integers, `float` for decimals
- Whitespace (space/tab) skipped
- LexError raised on unknown character with char + position in message
- All 19 tests pass under `python -m unittest -q`