chore: drop unused single_planner legacy wrapper
This commit is contained in:
@ -11,12 +11,6 @@ use super::DomainPlan;
|
||||
mod rules;
|
||||
mod rule_order;
|
||||
|
||||
pub(in crate::mir::builder) fn try_build_domain_plan(
|
||||
ctx: &LoopPatternContext,
|
||||
) -> Result<Option<DomainPlan>, String> {
|
||||
rules::try_build_domain_plan(ctx)
|
||||
}
|
||||
|
||||
pub(in crate::mir::builder) fn try_build_domain_plan_with_outcome(
|
||||
ctx: &LoopPatternContext,
|
||||
) -> Result<(Option<DomainPlan>, PlanBuildOutcome), String> {
|
||||
|
||||
@ -12,13 +12,6 @@ use crate::mir::builder::control_flow::plan::DomainPlan;
|
||||
|
||||
use super::rule_order::{rule_name, PlanRuleId, PLAN_RULE_ORDER};
|
||||
|
||||
pub(super) fn try_build_domain_plan(
|
||||
ctx: &LoopPatternContext,
|
||||
) -> Result<Option<DomainPlan>, String> {
|
||||
let (plan, _outcome) = try_build_domain_plan_with_outcome(ctx)?;
|
||||
Ok(plan)
|
||||
}
|
||||
|
||||
pub(super) fn try_build_domain_plan_with_outcome(
|
||||
ctx: &LoopPatternContext,
|
||||
) -> Result<(Option<DomainPlan>, PlanBuildOutcome), String> {
|
||||
|
||||
Reference in New Issue
Block a user