blob: 4ef8066b484bdf18a383050bcd18ab428452d75d [file] [log] [blame]
Jiri Simsa5293dcb2014-05-10 09:56:38 -07001package concurrency
2
3// choice enumerates the program transitions to choose from and
4// identifies which transition is to be taken next.
5type choice struct {
6 // next records the thread identifier for the thread that was
7 // selected to be scheduled next.
8 next TID
9 // transitions records the transitions for all the threads that
10 // could have been scheduled next.
11 transitions map[TID]*transition
12}
13
14// newChoice is the choice factory.
15func newChoice() *choice {
16 return &choice{
17 transitions: make(map[TID]*transition),
18 }
19}