| changeset 306 | 70c9688a1486 |
| parent 305 | 436a31d11f1d |
| 305:436a31d11f1d | 306:70c9688a1486 |
|---|---|
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 } |