Closed ambiso closed 5 years ago
Thanks for the question, but this is my personal repository for AbstractAlgebra. You would be better opening the ticket on the official repository at https://github.com/Nemocas/AbstractAlgebra.jl
You will get more attention on the issue over there.
Unfortunately GitHub has my repository as the top one, rather than the official one, and we don't know how to change it. Sorry for the confusion.
Regarding the GPL, although our projects are overall distributed under the GPL, the individual Julia files are BSD licensed. That means we can't use Sage code in AbstractAlgebra.
We also don't allow unicode in library code, but these are minor points, especially given that rewriting Open Source code in another language using the same algorithm, but different expression doesn't violate anyone's copyright. One can't have a copyright on a well-known algorithm.
Thank you :)
May I link your comment in the issue I'm creating on the main repository regarding copyright?
Yes of course. I am one of the maintainers, I just want others to be able to comment.
Sage has a
crt
andCRT_list
function which work for essentially any ring.AbstractAlgebra has a crt function, which it documents to be extendable by Singular, Nemo and Hecke.
However, I couldn't find an implementation of crt for Polynomial Rings in Nemo. Yet a completely generic version of it "just works" :sparkles: with them.
What do you think about adding a function similar to this one to AbstractAlgebra?
The implementation above is entirely based upon sage's: crt CRT_list
Please note that sage is distributed under GPLv2.