-
Notifications
You must be signed in to change notification settings - Fork 4
Open
Description
Description
During v3.4.0 dogfooding (PR #611), the engine comparison revealed that the native engine produces ~68 fewer call edges than WASM (~4,000 vs ~4,068). While the native engine has higher call confidence (80.9% vs 71.3%), the gap suggests either:
- Native is missing legitimate call sites that WASM extracts, or
- WASM is over-extracting false call edges at lower confidence
Per CLAUDE.md policy: "If two engines produce different results, that is a bug in the less-accurate engine — not an acceptable parity gap."
Metrics (v3.4.0, codegraph self-analysis)
| Metric | Native | WASM | Delta |
|---|---|---|---|
| Total edges | 20,849 | 20,950 | -101 (0.5%) |
| Call edges | ~4,000 | ~4,068 | -68 (1.7%) |
| Call confidence | 80.9% | 71.3% | +9.6% |
| Nodes | 10,941 | 10,915 | +26 (0.2%) |
Next steps
- Investigate which call sites WASM finds that native misses (or vice versa)
- Determine which engine is correct for the divergent edges
- Fix the less-accurate engine
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels