Package org.apfloat.internal
Class IntCarryCRTBuilder
java.lang.Object
org.apfloat.internal.IntCarryCRTBuilder
- All Implemented Interfaces:
CarryCRTBuilder<int[]>
Creates carry-CRT related objects, for the
int
type.- Since:
- 1.7.0
- Version:
- 1.7.0
- Author:
- Mikko Tommila
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptioncreateCarryCRT
(int radix) Creates an object for implementing the carry-CRT of a three-NTT based convolution using the specified radix.CarryCRTStepStrategy
<int[]> createCarryCRTSteps
(int radix) Creates an object for implementing the steps of the carry-CRT of a three-NTT based convolution using the specified radix.
-
Constructor Details
-
Method Details
-
createCarryCRT
Description copied from interface:CarryCRTBuilder
Creates an object for implementing the carry-CRT of a three-NTT based convolution using the specified radix.- Specified by:
createCarryCRT
in interfaceCarryCRTBuilder<int[]>
- Parameters:
radix
- The radix that will be used.- Returns:
- A suitable object for performing the carry-CRT.
-
createCarryCRTSteps
Description copied from interface:CarryCRTBuilder
Creates an object for implementing the steps of the carry-CRT of a three-NTT based convolution using the specified radix.- Specified by:
createCarryCRTSteps
in interfaceCarryCRTBuilder<int[]>
- Parameters:
radix
- The radix that will be used.- Returns:
- A suitable object for performing the carry-CRT steps.
-