Timo Kluck
Timo Kluck
Ha, that's quite funny indeed. The package looks up the file name [by calling `Base.find_source_file` here](https://github.com/tkluck/StatProfilerHTML.jl/blob/master/src/Reports.jl#L21). So my guess is that we can find a stack frame that points at...
I ran into this just now as well. This is probably too late to be useful for you, but for others who find this issue: I solved it by replacing...
> Why does Revise.jl process user callbacks asynchronously ? > Is it possible we process callbacks sequentially ? The reasoning is that if package A and package B each add...
Afterthought: what I wrote is the reasoning for how `add_callback` and `revise` behave wrt exceptions. Arguably, `entr` could make a distinction between how it treats exceptions from "its own" callback...
For now the best solution is to use [LinearAlgebraX.jl](https://github.com/scheinerman/LinearAlgebraX.jl) for this use case. I'll leave this bug open; maybe we can depend on LinearAlgebraX and add implementations like `det(a::AbstractMatrix{ I...
@infogulch Thanks for reporting the bug about broadcasting `==`. This is a bug in GaloisFields.jl and I'm opening #16 for you.
Does `Polynomials.jl` (single variable only) work for you? ```julia using Polynomials, GaloisFields const F = GaloisField(29) f = Poly(F[0, 10], :x) ``` If you want multi-variate polynomials, there's `TypedPolynomials.jl` or...
I haven't implemented polynomial factorization myself, but it would certainly be a worthwhile addition to the Julia ecosystem. It's not entirely trivial to implement; see [e.g. the wikipedia page on...
`G` does represent the full field `𝔽₂₅₆` but the only ring homomorphism `ℤ → G` is the one that maps onto `𝔽₂ ⊂𝔽₂₅₆`, so that's what you get from conversions....
@infogulch happy that it works for you. Having said that, I might advice against defining a conversion in that way: people will usually expect conversions to be canonical, but with...