STM_thread.Make
val arb_cmds_triple :
int ->
int ->
(Spec.cmd list * Spec.cmd list * Spec.cmd list) QCheck.arbitrary
arb_cmds_triple seq_len conc_len
generates a cmd
triple with at most seq_len
sequential commands and at most conc_len
concurrent commands each. All cmds
are generated with Spec.arb_cmd
. arb_cmds_triple
catches and ignores generation-time exceptions arising from Spec.next_state
.
interp_sut_res sut cs
interprets the commands cs
over the system sut
and returns the list of corresponding Spec.cmd
and result pairs.
Concurrent agreement property based on Thread
Concurrent agreement test based on Thread
which combines repeat
and ~retries