Current_term.S
type 'a or_error = ('a, [ `Msg of string ]) Stdlib.result
type stats = {
ok : int;
waiting_for_confirmation : int;
ready : int;
running : int;
failed : int;
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