mirror of
https://github.com/tuneinsight/lattigo.git
synced 2025-09-13 03:27:14 +00:00
15 lines
290 B
Go
15 lines
290 B
Go
package bignum
|
|
|
|
import (
|
|
"math/big"
|
|
)
|
|
|
|
// Interval is a struct storing information about interval
|
|
// for a polynomial approximation.
|
|
// Nodes: the number of points used for the interpolation.
|
|
// [A, B]: the domain of the interpolation.
|
|
type Interval struct {
|
|
Nodes int
|
|
A, B big.Float
|
|
}
|