Description
i1 : x = RObject 5
--error or time limit reached in conversion of output to net: type 'debugError()' to run it again; will try conversion to string
o1 = 5
o1 : RObject of type integer
|
i2 : y = RObject 2
--error or time limit reached in conversion of output to net: type 'debugError()' to run it again; will try conversion to string
o2 = 2
o2 : RObject of type integer
|
i3 : x - y
--error or time limit reached in conversion of output to net: type 'debugError()' to run it again; will try conversion to string
o3 = 3
o3 : RObject of type integer
|
It may also be used as a unary operator.
i4 : -x
--error or time limit reached in conversion of output to net: type 'debugError()' to run it again; will try conversion to string
o4 = -5
o4 : RObject of type integer
|
One of the operands may be a Macaulay2 object. It will be converted to an RObject before the operation is performed.
i5 : x - 2
--error or time limit reached in conversion of output to net: type 'debugError()' to run it again; will try conversion to string
o5 = 3
o5 : RObject of type integer
|
i6 : 5 - y
--error or time limit reached in conversion of output to net: type 'debugError()' to run it again; will try conversion to string
o6 = 3
o6 : RObject of type integer
|