pub fn analyze_plans(
ctx: &CodegenContext,
) -> (HashMap<String, RecursionPlan>, Vec<ProofModeIssue>)Expand description
Classify every recursive pure fn in ctx. The returned map assigns
each supported function a RecursionPlan; anything that falls
outside the recognised shapes becomes a ProofModeIssue.