pub struct ReconcileReport {
pub fresh_addresses: Vec<Address>,
pub vanished_addresses: Vec<Address>,
}Expand description
Report of the structural differences reconciled by
score_given_trace_reconciled.
Fields§
§fresh_addresses: Vec<Address>Addresses visited by the model that were absent from the base trace (or
present with the wrong value type). Each was proposed fresh from its
prior and its log_prob accumulated into log_prior.
vanished_addresses: Vec<Address>Addresses present in the base trace that the model did NOT visit. Their contribution should be dropped by the caller (e.g. removed from the reverse-move density in an RJMCMC step).
Trait Implementations§
Source§impl Clone for ReconcileReport
impl Clone for ReconcileReport
Source§fn clone(&self) -> ReconcileReport
fn clone(&self) -> ReconcileReport
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for ReconcileReport
impl Debug for ReconcileReport
Source§impl Default for ReconcileReport
impl Default for ReconcileReport
Source§fn default() -> ReconcileReport
fn default() -> ReconcileReport
Returns the “default value” for a type. Read more
Source§impl PartialEq for ReconcileReport
impl PartialEq for ReconcileReport
impl StructuralPartialEq for ReconcileReport
Auto Trait Implementations§
impl Freeze for ReconcileReport
impl RefUnwindSafe for ReconcileReport
impl Send for ReconcileReport
impl Sync for ReconcileReport
impl Unpin for ReconcileReport
impl UnsafeUnpin for ReconcileReport
impl UnwindSafe for ReconcileReport
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