pub struct EnhancedProphecyEngine<'g> { /* private fields */ }Expand description
Enhanced prophecy engine with evidence-backed predictions.
Implementations§
Source§impl<'g> EnhancedProphecyEngine<'g>
impl<'g> EnhancedProphecyEngine<'g>
pub fn new(graph: &'g CodeGraph) -> Self
Sourcepub fn prophecy(
&self,
subject: ProphecySubject,
horizon: ProphecyHorizon,
) -> CodeProphecy
pub fn prophecy( &self, subject: ProphecySubject, horizon: ProphecyHorizon, ) -> CodeProphecy
Generate a prophecy for a given subject and horizon.
Sourcepub fn prophecy_if(
&self,
subject: ProphecySubject,
scenario: &str,
horizon: ProphecyHorizon,
) -> CodeProphecy
pub fn prophecy_if( &self, subject: ProphecySubject, scenario: &str, horizon: ProphecyHorizon, ) -> CodeProphecy
“What if” scenario analysis.
Sourcepub fn prophecy_compare(
&self,
subject_a: ProphecySubject,
subject_b: ProphecySubject,
horizon: ProphecyHorizon,
) -> (CodeProphecy, CodeProphecy)
pub fn prophecy_compare( &self, subject_a: ProphecySubject, subject_b: ProphecySubject, horizon: ProphecyHorizon, ) -> (CodeProphecy, CodeProphecy)
Compare prophecies of different approaches.
Auto Trait Implementations§
impl<'g> Freeze for EnhancedProphecyEngine<'g>
impl<'g> RefUnwindSafe for EnhancedProphecyEngine<'g>
impl<'g> Send for EnhancedProphecyEngine<'g>
impl<'g> Sync for EnhancedProphecyEngine<'g>
impl<'g> Unpin for EnhancedProphecyEngine<'g>
impl<'g> UnsafeUnpin for EnhancedProphecyEngine<'g>
impl<'g> UnwindSafe for EnhancedProphecyEngine<'g>
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