pub struct Learner { /* private fields */ }Expand description
Runs one abstraction/consolidation pass for a domain: current learned rules + unprocessed reflections in, a rewritten learned rule set out.
One combined pass rather than a separate incremental abstraction stage: the consolidation prompt already absorbs unprocessed reflexions, and at one user’s volume an incremental stage buys nothing but a second prompt to maintain. The three-stage design survives conceptually — reflections are still the evidence, this is still abstraction, and the budget it enforces is still consolidation.
Implementations§
Auto Trait Implementations§
impl !RefUnwindSafe for Learner
impl !UnwindSafe for Learner
impl Freeze for Learner
impl Send for Learner
impl Sync for Learner
impl Unpin for Learner
impl UnsafeUnpin for Learner
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