Base implementation of signed numbers and EGCD, with tests.

This commit is contained in:
2018-10-15 19:16:25 -07:00
parent d43f0bcd42
commit 89e2dfc6ef
164 changed files with 560116 additions and 67 deletions

14
src/signed/modinv.rs Normal file
View File

@@ -0,0 +1,14 @@
macro_rules! modinv_impls {
($sname: ident) => {
};
}
#[cfg(test)]
macro_rules! generate_modinv_tests {
($sname: ident, $tname: ident, $mname: ident) => {
};
(ignore $sname: ident, $tname: ident, $mname: ident) => {
};
(body $sname: ident, $tname: ident, $mname: ident) => {
};
}