mirror of
https://github.com/kalmarek/GroupRings.jl.git
synced 2025-01-01 11:45:28 +01:00
stylistic changes to mul!
This commit is contained in:
parent
a1bc8e8c2a
commit
f6b270696e
@ -376,10 +376,8 @@ function fmac!(result::AbstractVector{T},
|
|||||||
end
|
end
|
||||||
|
|
||||||
@doc doc"""
|
@doc doc"""
|
||||||
GRmul!(result::AbstractVector{T},
|
GRmul!(result::AbstractVector{T}, X::AbstractVector, Y::AbstractVector,
|
||||||
X::AbstractVector,
|
pm::Matrix{<:Integer}) where {T<:Number}
|
||||||
Y::AbstractVector,
|
|
||||||
pm::Array{Int,2}) where {T<:Number}
|
|
||||||
> The most specialised multiplication for `X` and `Y` (intended for `coeffs` of
|
> The most specialised multiplication for `X` and `Y` (intended for `coeffs` of
|
||||||
> `GroupRingElems`), using multiplication table `pm`.
|
> `GroupRingElems`), using multiplication table `pm`.
|
||||||
> Notes:
|
> Notes:
|
||||||
@ -392,7 +390,7 @@ end
|
|||||||
function GRmul!(result::AbstractVector{T},
|
function GRmul!(result::AbstractVector{T},
|
||||||
X::AbstractVector,
|
X::AbstractVector,
|
||||||
Y::AbstractVector,
|
Y::AbstractVector,
|
||||||
pm::Array{Int,2}) where {T<:Number}
|
pm::AbstractMatrix{<:Integer}) where {T<:Number}
|
||||||
z = zero(T)
|
z = zero(T)
|
||||||
result .= z
|
result .= z
|
||||||
|
|
||||||
@ -400,9 +398,7 @@ function GRmul!(result::AbstractVector{T},
|
|||||||
end
|
end
|
||||||
|
|
||||||
@doc doc"""
|
@doc doc"""
|
||||||
mul!{T}(result::GroupRingElem{T},
|
mul!(result::GroupRingElem, X::GroupRingElem, Y::GroupRingElem)
|
||||||
X::GroupRingElem,
|
|
||||||
Y::GroupRingElem)
|
|
||||||
> In-place multiplication for `GroupRingElem`s `X` and `Y`.
|
> In-place multiplication for `GroupRingElem`s `X` and `Y`.
|
||||||
> `mul!` will make use the initialised entries of `pm` attribute of
|
> `mul!` will make use the initialised entries of `pm` attribute of
|
||||||
> `parent(X)::GroupRing` (if available), and will compute and store in `pm` the
|
> `parent(X)::GroupRing` (if available), and will compute and store in `pm` the
|
||||||
|
Loading…
Reference in New Issue
Block a user