From 65642c1dad1138f4c72536b86123ffeefd33ba60 Mon Sep 17 00:00:00 2001 From: 魏曹先生 <1992414357@qq.com> Date: Thu, 20 Aug 2026 03:49:21 +0800 Subject: feat(dispatch): add auto dispatch strategy selection Introduce automatic dispatch strategy selection with three mutually-exclusive features: `dispatch_linear`, `dispatch_tree`, and `dispatch_phf`. When none are enabled, the generator picks the optimal strategy at compile time based on command table shape. Add CHD minimal perfect hash generator, refactor trie fallback into a shared method to keep generated code linear, and add a benchmark harness to validate strategy selection. --- docs/dev/pages/issues/_remove-parser-feature.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'docs/dev/pages/issues/_remove-parser-feature.md') diff --git a/docs/dev/pages/issues/_remove-parser-feature.md b/docs/dev/pages/issues/_remove-parser-feature.md index c2a11c0..7653c47 100644 --- a/docs/dev/pages/issues/_remove-parser-feature.md +++ b/docs/dev/pages/issues/_remove-parser-feature.md @@ -1,4 +1,4 @@ -

[T0] Remove the parser Feature

+

[Solved] [T0] Remove the parser Feature

Breaking: retire the legacy argument parsing in favor of picker

-- cgit