pub enum PlanKind {
OracleExactBounded {
oracle_slice_id: OracleSliceId,
},
OracleConservative,
OracleDeltaParity {
changed_node_ids: Vec<String>,
max_iterations: u32,
},
OracleTemporalReplay {
cutoff_recorded_at: String,
},
OracleCausalRefuter {
target_node_id: String,
max_removed_nodes: usize,
},
OracleMinimalPerturbation {
target_node_id: String,
max_removed_nodes: usize,
},
PairedPatch {
fixture_path: String,
patch: StructuredPatch,
experiment_config: ExperimentConfig,
description: String,
},
AdvisoryOnlyVerificationPlan(AdvisoryPlan),
}Expand description
The concrete execution plan selected for a verification target.
Each variant determines which kernel oracle or paired-patch path will be used during the act phase.
Variants§
OracleExactBounded
Fields
§
oracle_slice_id: OracleSliceIdOracleConservative
OracleDeltaParity
OracleTemporalReplay
OracleCausalRefuter
OracleMinimalPerturbation
PairedPatch
AdvisoryOnlyVerificationPlan(AdvisoryPlan)
Implementations§
Source§impl PlanKind
impl PlanKind
Sourcepub fn supersedes_claim_version_id(&self) -> Option<ClaimVersionId>
pub fn supersedes_claim_version_id(&self) -> Option<ClaimVersionId>
Returns the superseded claim version targeted by this plan, if any.
Sourcepub fn check_names(&self) -> Vec<String>
pub fn check_names(&self) -> Vec<String>
Returns the verification check names implied by this plan.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for PlanKind
impl RefUnwindSafe for PlanKind
impl Send for PlanKind
impl Sync for PlanKind
impl Unpin for PlanKind
impl UnsafeUnpin for PlanKind
impl UnwindSafe for PlanKind
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more