I know I can assert inequality with simple (not (= a b)), but I wonder if there is a operator that does this directly. I have tried everything that came to my mind including !=, <>, \= (this doesn't parse), /=, =/=, neq and none of them works.
Is there a dedicated function for it or do I need to compose equality with negation?
Yes. It is called
distinct, See section 3.7.1 of https://smtlib.cs.uiowa.edu/papers/smt-lib-reference-v2.6-r2017-07-18.pdfNote that
distinctcan take an arbitrary number of arguments. For instance:means: