惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

V
Visual Studio Blog
罗磊的独立博客
宝玉的分享
宝玉的分享
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
V
V2EX
酷 壳 – CoolShell
酷 壳 – CoolShell
T
Tailwind CSS Blog
博客园_首页
量子位
月光博客
月光博客
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
博客园 - 司徒正美
人人都是产品经理
人人都是产品经理
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
爱范儿
爱范儿
S
SegmentFault 最新的问题
雷峰网
雷峰网
小众软件
小众软件
博客园 - 聂微东
美团技术团队
Apple Machine Learning Research
Apple Machine Learning Research
WordPress大学
WordPress大学
Jina AI
Jina AI
Hugging Face - Blog
Hugging Face - Blog

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
"42% Silence": What It Means to Control Failure in AI Cod...
wintrover · 2026-04-24 · via DEV Community

We live in an era where AI writes code.

The problem is no longer productivity.

It's trust.

Code gets generated fast.
Tests pass.
But

there's no guarantee that this code is actually correct.


1) What We're Building: Axiom

Axiom is not a mere "automatic proof engine."

It's a system that makes AI-generated code trustworthy.

To achieve this, we combine:

  • SMT Solver (Z3)
  • Abstraction (CEGAR)
  • Summary-based Decomposition (Summary)
  • Formal Verification (Lean 4)

into a single orchestration.


2) The Incident: "42% Silence"

When running ax prove, the progress would stall precisely at 42%.

It looked like a simple UI glitch.

But three possibilities existed simultaneously:

  • Actual deadlock
  • Solver endlessly computing
  • Some tasks finished but UI not showing them

In other words,

The system was in a state where you couldn't tell if it was dead or thinking.


3) Kimi's Diagnosis: "It's Actually Stuck"

Investigation revealed an actual bug.

Cause 1 — Sequential Result Waiting

let result = ^task  # blocks in spawn order

Enter fullscreen mode Exit fullscreen mode

→ If one hangs, everything stops

Cause 2 — Blocking I/O

readLine()  # can wait forever on Z3 pipe

Enter fullscreen mode Exit fullscreen mode

→ Deadlock possible regardless of solver state


4) First Fix: Make the System Non-Blocking

We fixed two things.

Out-of-order processing

if isReady(task):
  collect(task)

Enter fullscreen mode Exit fullscreen mode

→ Immediately process completed tasks

Non-blocking I/O

readData()  # chunk-based processing

Enter fullscreen mode Exit fullscreen mode

→ Detect solver termination/abnormal state immediately

This removed the "true freeze."


5) But a Bigger Problem Remained

After fixing the bug, the same question lingered.

"What if the solver never finds an answer?"


6) The Technical Debate: "Bypass or Siege?"

Two perspectives collided here.

🏛️ Gemini — Engineering Siege Strategy

"We're not finding answers, we're collecting evidence"

  • Simplify problems with CEGAR
  • Break them down with Summary
  • Finalize with Lean 4

🏛️ Kimi — Limit-Awareness Design

"All these tools fail"

  • SMT is undecidable
  • CEGAR can also stall in loops
  • Lean automation is ultimately a search problem

Conclusion:

There is no perfect solution.


7) Our Conclusion

The key insight from this debate:

❌ "A system that always proves" is impossible
✅ "A system that controls failure" is possible


8) Axiom's Design Principles

Axiom is not a "proof engine" but:

"A system that structures failure"

🏛️ L1/L2 — Stop the failure

  • timeout
  • abstraction (CEGAR)

→ Block infinite computation

🏛️ L3 — Break down the failure

  • decomposition
  • summary

→ Whole failure → Partial success

🏛️ L4 — Escalate the failure

  • Lean 4
  • Human invariant

→ Automation → Collaboration


9) Another Problem Surfaced

The bug was gone, but a new problem appeared.

It still "looked stuck."

This isn't just a UX problem.

Core Issue

In a verification system, "invisible progress" equals trust collapse.


10) Solution: Heartbeat Patch

We changed our approach.

Instead of "exact progress percentage,"
show "evidence of being alive"

Before

[████████░░] 42%

Enter fullscreen mode Exit fullscreen mode

After

[████████░░] 42%

[VERIFIED] expr.nim::add
[VERIFIED] results.nim::isErr
[TIMEOUT] main.nim::getStr

Enter fullscreen mode Exit fullscreen mode

The meaning of this change:

"It's not stuck — it's solving a hard problem."


11) Additional Improvement: Evidence-Based Hints

Z3 says nothing when it times out.

So we worked around it:

  • Structural complexity analysis (Topology)
  • Lean unsolved goal extraction

Result:

We can't directly say "why it failed,"
but we can show "where the problem is."


12) Lessons Learned

The incident clarified two things.

Nim threadpool limitations

  • FlowVar cancellation impossible
  • Polling-based design required

Z3's black-box nature

  • timeout = unknown
  • Root cause tracking impossible

→ Contextual diagnosis required


13) Conclusion

The "42% incident" wasn't just a simple bug.

It was the surfacing of structural limitations that every AI code verification system must face.

We made one choice here.

Abandon perfect proof
Choose controllable failure

One-sentence definition:

In a verification engine, what matters isn't the correct answer,
but how failure manifests and is controlled.


Closing

Axiom no longer freezes at 42%.

And more importantly:

Even when it stops,
it tells you why it stopped and what to do next.

One-line summary:

Axiom isn't an engine for proving code,
it's a system for generating trust.