mirror of
https://github.com/kalmarek/GroupRings.jl.git
synced 2024-12-28 18:50:29 +01:00
fix indentation to 3 spaces (Nemo-like)
This commit is contained in:
parent
bb28b1bc54
commit
ab1e827fb0
@ -151,8 +151,7 @@ end
|
||||
|
||||
(-)(X::GroupRingElem) = GroupRingElem(-X.coeffs, parent(X))
|
||||
|
||||
(*){T<:Number}(a::T, X::GroupRingElem{T}) = GroupRingElem(
|
||||
a*X.coeffs, parent(X))
|
||||
(*){T<:Number}(a::T, X::GroupRingElem{T}) = GroupRingElem(a*X.coeffs, parent(X))
|
||||
|
||||
function scalar_multiplication{T<:Number, S<:Number}(a::T,
|
||||
X::GroupRingElem{S})
|
||||
@ -194,7 +193,8 @@ end
|
||||
(+)(X::GroupRingElem, Y::GroupRingElem) = add(X,Y)
|
||||
(-)(X::GroupRingElem, Y::GroupRingElem) = add(X,-Y)
|
||||
|
||||
function algebra_multiplication{T<:Number}(X::AbstractVector{T}, Y::AbstractVector{T}, pm::Array{Int,2})
|
||||
function algebra_multiplication{T<:Number}(X::AbstractVector{T},
|
||||
Y::AbstractVector{T}, pm::Array{Int,2})
|
||||
result = zeros(X)
|
||||
for (j,y) in enumerate(Y)
|
||||
if y != zero(T)
|
||||
|
Loading…
Reference in New Issue
Block a user