sortProp (_,f) (_,f') | stronger [(-10)..10] f f' = LT
| weaker [(-10)..10] f f' = GT
| otherwise = EQ
sortProp (_,f) (_,f') | (stronger [(-10)..10] f f') && not(weaker [(-10)..10] f f')= LT
| (weaker [(-10)..10] f f') && not (stronger [(-10)..10] f f') = GT
| otherwise = EQ
must become