pub struct AlgebraSpec {
pub k: f64,
pub operator_weights: OperatorWeights,
pub delta_amp_default: f64,
pub delta_amp_stabilize1: f64,
pub delta_amp_stabilize2: f64,
pub delta_amp_clamp: f64,
pub evidence_budget: usize,
pub orthogonality_target: f64,
pub token_budget: usize,
}Expand description
AlgebraSpec — a candidate’s parameter specification for MindState compilation.
Fields§
§k: f64The primary evidence retrieval parameter.
operator_weights: OperatorWeightsOperator weights for combining signals.
delta_amp_default: f64Delta amplitudes for stabilization phases.
delta_amp_stabilize1: f64§delta_amp_stabilize2: f64§delta_amp_clamp: f64§evidence_budget: usizeEvidence budget.
orthogonality_target: f64Orthogonality target for novelty.
token_budget: usizeToken budget for MindState.
Trait Implementations§
Source§impl Clone for AlgebraSpec
impl Clone for AlgebraSpec
Source§fn clone(&self) -> AlgebraSpec
fn clone(&self) -> AlgebraSpec
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 AlgebraSpec
impl Debug for AlgebraSpec
Source§impl Default for AlgebraSpec
impl Default for AlgebraSpec
Source§impl<'de> Deserialize<'de> for AlgebraSpec
impl<'de> Deserialize<'de> for AlgebraSpec
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
Auto Trait Implementations§
impl Freeze for AlgebraSpec
impl RefUnwindSafe for AlgebraSpec
impl Send for AlgebraSpec
impl Sync for AlgebraSpec
impl Unpin for AlgebraSpec
impl UnsafeUnpin for AlgebraSpec
impl UnwindSafe for AlgebraSpec
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