1
0
mirror of https://github.com/kalmarek/Groups.jl.git synced 2024-10-15 07:20:35 +02:00

Automorphism: initialize hash to 0x0

This commit is contained in:
kalmarek 2018-07-30 15:19:18 +02:00
parent e9ae22cfe9
commit 7f25d96038

View File

@ -41,7 +41,7 @@ mutable struct Automorphism{N} <: GWord{AutSymbol}
savedhash::UInt
parent::AutGroup{N}
Automorphism{N}(f::Vector{AutSymbol}) where N = new(f, true)
Automorphism{N}(f::Vector{AutSymbol}) where N = new(f, true, zero(UInt))
end