pub enum Message {
NewRun {
name: String,
solver: String,
max_iter: u64,
target_cost: f64,
init_param: Option<Vec<f64>>,
settings: KV,
selected: HashSet<String>,
},
Samples {
name: String,
iter: u64,
time: Duration,
termination_status: TerminationStatus,
kv: KV,
},
FuncCounts {
name: String,
iter: u64,
kv: HashMap<String, u64>,
},
Param {
name: String,
iter: u64,
param: Vec<f64>,
},
BestParam {
name: String,
iter: u64,
param: Vec<f64>,
},
Termination {
name: String,
termination_status: TerminationStatus,
},
}
Expand description
Enum used to encode information sent to spectator.
Variants§
NewRun
Register a new run
Fields
§
settings: KV
Solver-specific settings (returned by the init
method of the Solver
trait)
Samples
A set of metrics samples sent after an iteration
Fields
§
time: Duration
Time needed for this iteration
§
termination_status: TerminationStatus
Current termination_status
§
kv: KV
Solver-specific metrics
FuncCounts
Function evaluation counts (Cost function, gradient, Hessian, …)
Fields
Param
Parameter vector
Fields
BestParam
Current best parameter vector
Fields
Termination
Termination
Implementations§
Trait Implementations§
source§impl<'de> Deserialize<'de> for Message
impl<'de> Deserialize<'de> for Message
source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl StructuralPartialEq for Message
Auto Trait Implementations§
impl Freeze for Message
impl RefUnwindSafe for Message
impl Send for Message
impl Sync for Message
impl Unpin for Message
impl UnwindSafe for Message
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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)§impl<SS, SP> SupersetOf<SS> for SPwhere
SS: SubsetOf<SP>,
impl<SS, SP> SupersetOf<SS> for SPwhere
SS: SubsetOf<SP>,
§fn to_subset(&self) -> Option<SS>
fn to_subset(&self) -> Option<SS>
The inverse inclusion map: attempts to construct
self
from the equivalent element of its
superset. Read more§fn is_in_subset(&self) -> bool
fn is_in_subset(&self) -> bool
Checks if
self
is actually part of its subset T
(and can be converted to it).§fn to_subset_unchecked(&self) -> SS
fn to_subset_unchecked(&self) -> SS
Use with care! Same as
self.to_subset
but without any property checks. Always succeeds.§fn from_subset(element: &SS) -> SP
fn from_subset(element: &SS) -> SP
The inclusion map: converts
self
to the equivalent element of its superset.