Symex.Fuel_gaugemodule Fuel_value : sig ... endtype t = {steps : Fuel_value.t;The number of steps that can be taken per branch.
*)branching : Fuel_value.t;Number of times branching happens. Careful, the total number of branches is potentially exponential in the number of branchings
*)}val pp :
Ppx_deriving_runtime.Format.formatter ->
t ->
Ppx_deriving_runtime.unitval show : t -> Ppx_deriving_runtime.stringval infinite : tval is_infinite : t -> boolval take_branches :
'a Soteria.Soteria_std.List.t ->
t ->
'a Soteria.Soteria_std.List.t * tReceives a list and a fuel gauge and returns a list that contains at most as many elements as the fuel gauge allows. It also returns the updated fuel gauge.
module Cli : sig ... end