remove old commented stuff

This commit is contained in:
kalmar 2017-02-10 15:05:47 +01:00
parent 2109f63738
commit 4bf178ea94
1 changed files with 1 additions and 4 deletions

View File

@ -13,11 +13,8 @@ end
function (f::AutSymbol){T}(v::Vector{GWord{T}})
if f.pow == 0
return v
else
return f.func(v)
# else
# throw(ArgumentError("Check that Symbol $f is properly defined!\n $(dump(f))"))
end
return f.func(v)
end
(==)(s::AutSymbol, t::AutSymbol) = s.gen == t.gen && s.pow == t.pow