mirror of
https://github.com/kalmarek/GroupRings.jl.git
synced 2024-12-28 18:50:29 +01:00
sanity test mul!(a,a,b) == a*b
This commit is contained in:
parent
51c638fd65
commit
eba594b7a4
@ -112,6 +112,9 @@ using Nemo
|
|||||||
@test eltype(2.0*a) == typeof(2.0)
|
@test eltype(2.0*a) == typeof(2.0)
|
||||||
@test (2.0*a).coeffs == 2.0.*(a.coeffs)
|
@test (2.0*a).coeffs == 2.0.*(a.coeffs)
|
||||||
|
|
||||||
|
b = RG(1) + GroupRing.star(a)
|
||||||
|
@test a*b == mul!(a,a,b)
|
||||||
|
|
||||||
@test isa(a/2, GroupRingElem)
|
@test isa(a/2, GroupRingElem)
|
||||||
@test eltype(a/2) == typeof(1/2)
|
@test eltype(a/2) == typeof(1/2)
|
||||||
@test (a/2).coeffs == 0.5*(a.coeffs)
|
@test (a/2).coeffs == 0.5*(a.coeffs)
|
||||||
|
Loading…
Reference in New Issue
Block a user