hashs shouldn't depend on "order" of property dictionaries
hashs/ids of algorithms/tools currently depend on the order of a dictionary or list. That might sometimes make sense for lists i suppose, but definitly not for dicts.
_hash_dict(dict(a=1,b=2)) != _hash_dict(dict(b=2,a=1))
Edited by Niklas Stefan Nolte