mirror of
https://github.com/tuneinsight/lattigo.git
synced 2025-09-13 03:27:14 +00:00
11 lines
218 B
Go
11 lines
218 B
Go
// Package float implements advanced homomorphic circuits for encrypted arithmetic over floating point numbers.
|
|
package float
|
|
|
|
import (
|
|
"github.com/tuneinsight/lattigo/v4/ckks"
|
|
)
|
|
|
|
type Float interface {
|
|
ckks.Float
|
|
}
|