pub enum Progress<F> {
Measure(F),
Report {
measure: F,
diagnostics: ProgressDiagnostics<F>,
},
Complete,
}Expand description
Numerical signals emitted by a solver during execution.
Progress represents algorithm-level observations, not engine control flow.
These signals are produced by a crate::Procedure and consumed by:
- convergence tracking
- policy evaluation
- monitoring / logging systems
Variants§
Measure(F)
Primary metric (loss, objective function, error estimate etc)
Report
Complete
Signals that the algorithm is complete
This is a semantic signal from the algorithm, distinct from policy decisions implemented directly by the engine
Trait Implementations§
Auto Trait Implementations§
impl<F> Freeze for Progress<F>where
F: Freeze,
impl<F> RefUnwindSafe for Progress<F>where
F: RefUnwindSafe,
impl<F> Send for Progress<F>where
F: Send,
impl<F> Sync for Progress<F>where
F: Sync,
impl<F> Unpin for Progress<F>where
F: Unpin,
impl<F> UnsafeUnpin for Progress<F>where
F: UnsafeUnpin,
impl<F> UnwindSafe for Progress<F>where
F: UnwindSafe,
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