21 #include <spot/misc/common.hh>
This Union-Find data structure is a particular union-find, dedicated for emptiness checks below,...
Definition: unionfind.hh:34
bool unite(int e1, int e2)
Unite the sets containing e1 and e2; return true if they were different.
bool isdead(int e)
Check if element is marked as dead.
bool sameset(int e1, int e2)
Check if elements are in the same set.
void makeset(int e)
Create a new singleton set containing element e.
void markdead(int e)
Mark element e as dead.
int_unionfind()
Default constructor.
Definition: automata.hh:26