Skip to main content

PermutationCheckSpec

Struct PermutationCheckSpec 

Source
pub struct PermutationCheckSpec {
    pub kind: BusKind,
    pub sources: Vec<(Source, ChallengeLabel)>,
    pub selector: Option<usize>,
    pub recv_selector: Option<usize>,
    pub clock_waiver: Option<String>,
}
Expand description

One endpoint of a LogUp bus.

Per row i: h(i) = s(i) / (γ + Σ β^j · source_j(i)). The endpoint contributes claimed_sum = Σ_i h(i) (Permutation) or Σ_i Eq(r_bus, i) · h(i) (Lookup) to the cross-bus check.

§Security

Permutation kind cancels in char-2 by multiset parity, so endpoints with even per-key multiplicity collapse silently. Use Source::RowIndexLeBytes in the key to force per-row uniqueness, or switch to BusKind::Lookup for positional binding.

Fields§

§kind: BusKind§sources: Vec<(Source, ChallengeLabel)>

Key sources stitched via the global β schedule using each label.

§selector: Option<usize>

Selector column gating the row’s h. None means the row is unconditionally active.

§recv_selector: Option<usize>

Receive-side selector for paired buses. AIR must enforce s_send · s_recv = 0 (char-2 mutex).

§clock_waiver: Option<String>

Audited carve-out citation for Permutation specs that intentionally omit a row-index source.

Implementations§

Source§

impl PermutationCheckSpec

Source

pub fn new( sources: Vec<(Source, ChallengeLabel)>, selector: Option<usize>, ) -> Self

Source

pub fn new_lookup( sources: Vec<(Source, ChallengeLabel)>, selector: Option<usize>, ) -> Self

Endpoints on a Lookup bus must be pointwise-equal on the padded hypercube; use only when positional binding holds.

Source

pub fn new_paired( sources: Vec<(Source, ChallengeLabel)>, s_send: usize, s_recv: usize, kind: BusKind, ) -> Self

Caller must enforce s_send · s_recv = 0 in the AIR; without it, rows with both selectors high collapse to zero in char-2 and slip past cross-bus cancellation.

Source

pub fn with_clock_waiver(self, reason: impl Into<String>) -> Self

Audited escape hatch. reason must start with "see " and cite the load-bearing AIR constraint (see <path>:<line>: <argument>).

Source

pub fn num_sources(&self) -> usize

Source

pub fn has_selector(&self) -> bool

Source

pub fn has_paired(&self) -> bool

Source

pub fn shift_column_indices(&mut self, offset: usize)

Reindexes column references when the chiplet is embedded into a wider trace.

Source

pub fn has_real_clock_source(&self) -> bool

Only structural guarantor of per-row uniqueness; label-only stitching is forgeable.

Source

pub fn has_request_idx_column(&self) -> bool

Source

pub fn validate_clock_stitching(&self, _bus_id: &str) -> Result<()>

Per-spec only. validate_bus_set runs the cross-endpoint check that closes label spoofing.

Trait Implementations§

Source§

impl Clone for PermutationCheckSpec

Source§

fn clone(&self) -> PermutationCheckSpec

Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Debug for PermutationCheckSpec

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T> Instrument for T

Source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
Source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> IntoEither for T

Source§

fn into_either(self, into_left: bool) -> Either<Self, Self>

Converts self into a Left variant of Either<Self, Self> if into_left is true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
Source§

fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
where F: FnOnce(&Self) -> bool,

Converts self into a Left variant of Either<Self, Self> if into_left(&self) returns true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
Source§

impl<T> Pointable for T

Source§

const ALIGN: usize

The alignment of pointer.
Source§

type Init = T

The type for initializers.
Source§

unsafe fn init(init: <T as Pointable>::Init) -> usize

Initializes a with the given initializer. Read more
Source§

unsafe fn deref<'a>(ptr: usize) -> &'a T

Dereferences the given pointer. Read more
Source§

unsafe fn deref_mut<'a>(ptr: usize) -> &'a mut T

Mutably dereferences the given pointer. Read more
Source§

unsafe fn drop(ptr: usize)

Drops the object pointed to by the given pointer. Read more
Source§

impl<T> Same for T

Source§

type Output = T

Should always be Self
Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
Source§

impl<T> WithSubscriber for T

Source§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
Source§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more