Trait libafl::observers::cmp::CmpMap[][src]

pub trait CmpMap {
    fn len(&self) -> usize;
fn executions_for(&self, idx: usize) -> usize;
fn usable_executions_for(&self, idx: usize) -> usize;
fn values_of(&self, idx: usize, execution: usize) -> CmpValues;
fn reset(&mut self) -> Result<(), Error>; fn is_empty(&self) -> bool { ... } }
Expand description

A CmpMap traces comparisons during the current execution

Required methods

Get the number of cmps

Reset the state

Provided methods

Get if it is empty

Implementors