Struct sbrain::EvalResult [] [src]

pub struct EvalResult {
    pub output: Vec<MData>,
    pub cycles: u32,
    pub halted: bool,
}

Represents the outcome of an evaluation by the SBrain VM.

Fields

The output of the computation

The number of cycles for which the machine ran

Whether or not the machine halted on its own. False means it was interrupted.