I need to define a new operator that associates in the following way
(1 newop 2) / (2 newop) / a
The parenthesis were just used to give an understanding of the associativity of the new op
So.
:- op(A, B, newop).
Which would be the values for A and B.
Thanks in advance.