Files
lattigo/utils/bignum/interval.go
2023-10-13 14:52:15 +02:00

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
}