pub trait MachineProgram<F>: Send + Sync {
// Required methods
fn pc_start(&self) -> F;
fn initial_global_cumulative_sum(&self) -> SepticDigest<F>;
}
Expand description
A program that defines the control flow of a machine through a program counter.
Required Methods§
Sourcefn initial_global_cumulative_sum(&self) -> SepticDigest<F>
fn initial_global_cumulative_sum(&self) -> SepticDigest<F>
Gets the initial global cumulative sum.