vstd::relations

Function total_ordering

Source
pub open spec fn total_ordering<T>(r: FnSpec<(T, T), bool>) -> bool
Expand description
{
    &&& reflexive(r)
    &&& antisymmetric(r)
    &&& transitive(r)
    &&& strongly_connected(r)

}