mirror of
https://github.com/zama-ai/concrete.git
synced 2026-02-15 23:25:01 -05:00
14 lines
250 B
Python
14 lines
250 B
Python
# -*- coding: utf-8 -*-
|
|
"""
|
|
Default values.
|
|
"""
|
|
|
|
from .reduction import Kyber, ABLR21
|
|
from .simulator import GSA
|
|
|
|
red_cost_model = Kyber
|
|
red_cost_model_classical_poly_space = ABLR21
|
|
red_shape_model = "gsa"
|
|
red_simulator = GSA
|
|
mitm_opt = "analytical"
|