mirror of
https://github.com/zama-ai/concrete.git
synced 2026-04-17 03:00:54 -04:00
refactor: rename ArbitraryFunction to UnivariateFunction
- the naming has always been confusing and recent changes to the code make this rename necessary for things to be clearer
This commit is contained in:
@@ -386,24 +386,24 @@ def test_tracing_astype(
|
||||
[
|
||||
pytest.param(
|
||||
{"x": EncryptedScalar(Integer(7, is_signed=False))},
|
||||
ir.ArbitraryFunction,
|
||||
ir.UnivariateFunction,
|
||||
),
|
||||
pytest.param(
|
||||
{"x": EncryptedScalar(Integer(32, is_signed=True))},
|
||||
ir.ArbitraryFunction,
|
||||
ir.UnivariateFunction,
|
||||
),
|
||||
pytest.param(
|
||||
{"x": EncryptedScalar(Integer(64, is_signed=True))},
|
||||
ir.ArbitraryFunction,
|
||||
ir.UnivariateFunction,
|
||||
),
|
||||
pytest.param(
|
||||
{"x": EncryptedScalar(Integer(128, is_signed=True))},
|
||||
ir.ArbitraryFunction,
|
||||
ir.UnivariateFunction,
|
||||
marks=pytest.mark.xfail(strict=True, raises=NotImplementedError),
|
||||
),
|
||||
pytest.param(
|
||||
{"x": EncryptedScalar(Float(64))},
|
||||
ir.ArbitraryFunction,
|
||||
ir.UnivariateFunction,
|
||||
),
|
||||
],
|
||||
)
|
||||
|
||||
Reference in New Issue
Block a user