Synopsis:
x ? y -- compares two tallies, returning symbol <, symbol >, symbol ==, or incomparable.
See also:
Code:
-- ../../../Macaulay2/m2/set.m2:16-21 Tally ? Tally := (x,y) -> ( w := values (x-y); if #w === 0 then symbol == else if all(w,i -> i>0) then symbol > else if all(w,i -> i<0) then symbol < else incomparable)