Martin Wagner

Results 6 issues of Martin Wagner

The album(-cover) loading performance is improvable. This issue is to provide a place for discussion on that topic. It has been extracted from #39.

performance

### Please confirm your submission meets all the criteria Plattenalbum is a client for the Music Player Daemon (MPD). It was previously developed under the name of "mpdevil" (`org.mpdevil.mpdevil`), which...

ready
migrate-app-id

Hi! As mentioned in https://github.com/Nemocas/Nemo.jl/issues/1509 and https://github.com/Nemocas/AbstractAlgebra.jl/issues/1401 there are some problems with modulo and polynomials. It seems like there is a `div` methods missing in AbstractAlgebra (and Nemo): ``` julia>...

Hi! As mentioned in https://github.com/Nemocas/Nemo.jl/issues/1509, modulo with polynomials in Nemo is a bit inconsistent. But in AbstractAlgebra there is another problem with modulo: ``` julia> using AbstractAlgebra julia> R,x=ZZ[:x] (Univariate...

Hi, I found some inconsistencies of `exponent_vectors`: ``` julia> S=UniversalPolynomialRing(QQ) Universal Polynomial Ring over Rational Field julia> i,j=gens(S, ["i","j"]) (i, j) julia> collect(exponent_vectors(i)) 1-element Vector{Vector{Int64}}: [1] julia> collect(exponent_vectors(j)) 1-element Vector{Vector{Int64}}:...

Hi! While playing around with some modulo computations I stumbled arccos some weird thinks in Nemo and AbstractAlgebra. Apparently Nemo interprets `mod` differently than AbstractAlgebra: ``` julia> using Nemo Welcome...