HackerTrans
トップ新着トレンドコメント過去質問紹介求人

old8man

no profile record

投稿

[untitled]

1 ポイント·投稿者 old8man·2 か月前·0 コメント

Verum, examined – a systems language for an age when humans write less code

verum-lang.org
5 ポイント·投稿者 old8man·3 か月前·3 コメント

UHM: Consciousness derived from 4 axioms – five critical exponents (paper v2)

zenodo.org
2 ポイント·投稿者 old8man·3 か月前·0 コメント

Consciousness has a number. We derived it

medium.com
3 ポイント·投稿者 old8man·3 か月前·0 コメント

Show HN: Formal theory of consciousness built on ∞-categories

holon.sh
2 ポイント·投稿者 old8man·3 か月前·1 コメント

A single equation for intelligence – from quantum mechanics to AGI in 5 axioms

holon.sh
1 ポイント·投稿者 old8man·3 か月前·0 コメント

コメント

old8man
·3 か月前·議論
Good question. The main difference is where the spec lives and who enforces it.

TLA+ is a specification language separate from your implementation. TLC model-checks the spec. Whether the code faithfully implements it is on you. Catching a bug in the design is not catching it in the code.

Workflow model checkers like CBMC, KLEE, SPIN run on code but are bolted on. Usually bounded, usually assertion-style, no type-level integration.

Verum puts the refinement into the type itself. Int { self > 0 } is the type, and SMT discharges it during type checking. Same pass. User predicates declared @logic become SMT-LIB define-fun-rec axioms, so the solver reasons about them structurally rather than treating them as oracles. If SMT gives up, 22 named tactics are first-class; if you need cross-verification, @verify(thorough) races Z3 and CVC5 in parallel and treats disagreement as a diagnostic.

Second axis: verification is a gradient. @verify(runtime) through @verify(certified), same source. TLA+ has no gradient. CBMC either discharges an assertion or does not.

Third axis, the one I think is underappreciated: Verum's verification layer is backend-agnostic. Obligations are classified by theory (arrays, LIA, strings, nonlinear) and routed to whichever solver handles that fragment best. When a better solver appears, existing proofs don't break. That is closer to a capability system than a monolithic verifier.

For @verify(certified), the compiler extracts the proof term from the solver's log and embeds it in a .verum-cert archive exportable to Coq, Lean, Dedukti, or Metamath. A downstream consumer can re-validate offline with an orthogonal tool. That is the move TLA+ and CBMC structurally cannot make.
old8man
·3 か月前·議論
thanks.. I would phrase the pitch differently though. Verum is a systems language, not a method for AI systems. The thing that is actually load-bearing is that verification is a knob (@verify has seven levels, same source promotes from runtime checks to certified proofs without a rewrite), memory safety has three cost-tiers you pick per function, and runtime dependency injection and compile-time metaprogramming share one primitive. RAG is a retrieval technique for LLM prompts and is unrelated. The nearest prior art for the verification gradient is SPARK, not anything AI-adjacent..
old8man
·3 か月前·議論
[dead]
old8man
·5 か月前·議論
Ruliology provides a powerful descriptive framework - a taxonomy of computational behavior. However, it operates at the level of external dynamics without grounding in a primitive ontology. It tells us that rules behave, not why they exist or what they fundamentally are.

This makes ruliology an invaluable cartography of the computational landscape, but not a foundation. It maps the territory without explaining what the territory is made of.
old8man
·5 か月前·議論
Anthropic's Claude Code has revolutionized the workflow forever.
old8man
·7 か月前·議論
While the reduction of a compiler to a deterministic function is theoretically sound, modern engineering practice necessitates addressing "Compiler-as-a-Service" architectures (LSP, incrementalism), where persistent state management complicates the purported simplicity of debugging. Furthermore, the article overlooks the non-deterministic nature of JIT compilation and parallel builds, which fundamentally challenges the comparison to stateless CLI utilities like grep.
old8man
·7 か月前·議論
Very useful article, thank you! Many people suggest CUID2, but it is less efficient and is better used for frontend/url encoding. For backend/db, only UUID v7 should be used.