| changeset 311 | 13702105c5ee |
| parent 310 | 526d3e411736 |
| child 312 | f8336354d107 |
| child 314 | 0f1e6ce19b6d |
| 310:526d3e411736 | 311:13702105c5ee |
|---|---|
1 package com.hurlant.math |
|
2 { |
|
3 internal interface IReduction |
|
4 { |
|
5 function convert(x:BigInteger):BigInteger; |
|
6 function revert(x:BigInteger):BigInteger; |
|
7 function reduce(x:BigInteger):void; |
|
8 function mulTo(x:BigInteger, y:BigInteger, r:BigInteger):void; |
|
9 function sqrTo(x:BigInteger, r:BigInteger):void; |
|
10 } |
|
11 } |