Module Current_term.S

type 'a or_error = ('a, [ `Msg of string ]) Stdlib.result
type stats = {
  1. ok : int;
  2. waiting_for_confirmation : int;
  3. ready : int;
  4. running : int;
  5. failed : int;
  6. blocked : int;
}

Counters showing how many pipeline stages are in each state.

module type T = sig ... end
module type ORDERED = sig ... end
module type ANALYSIS = sig ... end
module type TERM = sig ... end
module type EXECUTOR = sig ... end