Base implementation of signed numbers and EGCD, with tests.
This commit is contained in:
14
src/signed/modinv.rs
Normal file
14
src/signed/modinv.rs
Normal 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) => {
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user