Bug #3434
closedSpecs for coercion?
Description
=begin
What are the official specs of coercion for mathematical classes?
I will take Matrix as an example, but my questions are meant to be for the general case.
My understanding is that for a obj.coerce(obj_2)
should return [compatible_2, compatible]
such that compatible2.send(some_operation, compatible)
returns (if possible) a meaningful result.
Can we assume anything more about coercion? I'm asking because I find in test_matrix (@m1 being a Matrix):
def test_scalar_mul
s1 = @m1.coerce(1).first
assert_equal(Matrix[[1]], (s1 * 1) * Matrix[[1]])
assert_equal(Vector[2], s1 * Vector[2])
assert_equal(Matrix[[2]], s1 * Matrix[[2]])
o = Object.new
def o.coerce(x)
[1, 1]
end
assert_equal(1, s1 * o)
end
- Should the first and last assert work? Are implementers of other mathematical classes mandated/encouraged to provide that level of compatibility? Are users of
coerce
encouraged (or guaranteed success) when doing any other operation thancompatible2 * compatible
or similar?
My feeling is that the only thing one should do with the results of coerce is to call an operation on the first element and pass the second element. Doing operations using only one of the two returned elements with another new object should yield undetermined results.
If this is the case, I feel the Matrix library would be best to assume that Scalar#* is called with a Matrix or Vector (remember that the Scalar is not meant to be used directly by anybody else than the Matrix lib), and these two assert would not work.
-
The second assert is clearly implementation dependant. In the current implementation, both Vector and Matrix use Matrix::Scalar as a temporary class, but that could change.
-
I am assuming that compatible doesn't have to be equal?, eql? or == to obj nor of the same class, and the same is true for compatible_2 vs obj_2, right? Thus the third assert isn't a spec guaranteed for all implementations.
-
Finally, a somewhat trivial question: should
obj.coerce(obj_2)
succeed ifobj
andobj_2
are of the same class (and presumably return[obj_2, obj]
)? Clearly this is not very useful, but the specs should be made precise.
This is the case for Numeric and is explicit in the documentation but fails for Matrix:
Matrix.I(2).coerce(Matrix.I(2)) # => TypeError: Matrix can't be coerced into Matrix
Coercion should always work for the trivial case of two objects of the same class, right?
Thanks.¶
Marc-André
=end