mirror of
https://github.com/kalmarek/GroupRings.jl.git
synced 2024-12-29 11:00:28 +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))
|
(-)(X::GroupRingElem) = GroupRingElem(-X.coeffs, parent(X))
|
||||||
|
|
||||||
(*){T<:Number}(a::T, X::GroupRingElem{T}) = GroupRingElem(
|
(*){T<:Number}(a::T, X::GroupRingElem{T}) = GroupRingElem(a*X.coeffs, parent(X))
|
||||||
a*X.coeffs, parent(X))
|
|
||||||
|
|
||||||
function scalar_multiplication{T<:Number, S<:Number}(a::T,
|
function scalar_multiplication{T<:Number, S<:Number}(a::T,
|
||||||
X::GroupRingElem{S})
|
X::GroupRingElem{S})
|
||||||
@ -194,7 +193,8 @@ end
|
|||||||
(+)(X::GroupRingElem, Y::GroupRingElem) = add(X,Y)
|
(+)(X::GroupRingElem, Y::GroupRingElem) = add(X,Y)
|
||||||
(-)(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)
|
result = zeros(X)
|
||||||
for (j,y) in enumerate(Y)
|
for (j,y) in enumerate(Y)
|
||||||
if y != zero(T)
|
if y != zero(T)
|
||||||
|
Loading…
Reference in New Issue
Block a user