You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The problem with Addition::new(x, -b) is that b needs to be signed. We therefore needs a Subtraction term. Both can be implemented with a more general structure ArithTerm<Op,InvOp> where Addition = ArithTerm<Add, Sub> and Subtraction = ArithTerm<Sub, Add>.
The text was updated successfully, but these errors were encountered:
The problem with
Addition::new(x, -b)
is thatb
needs to be signed. We therefore needs aSubtraction
term. Both can be implemented with a more general structureArithTerm<Op,InvOp>
whereAddition = ArithTerm<Add, Sub>
andSubtraction = ArithTerm<Sub, Add>
.The text was updated successfully, but these errors were encountered: