opendp 0.14.1a20251030001__tar.gz → 0.14.1a20260130001__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {opendp-0.14.1a20251030001/src/opendp.egg-info → opendp-0.14.1a20260130001}/PKG-INFO +3 -4
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/README.md +2 -3
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/setup.cfg +1 -1
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/_internal.py +1 -1
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/accuracy.py +53 -53
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/combinators.py +47 -47
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/core.py +1 -1
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/domains.py +10 -10
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/extras/mbi/_table/__init__.py +1 -1
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/extras/mbi/_utilities/__init__.py +1 -1
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/extras/numpy/canonical.py +1 -1
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/extras/polars/__init__.py +15 -15
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/extras/sklearn/decomposition/__init__.py +2 -2
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/measurements.py +201 -386
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/measures.py +13 -13
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/metrics.py +6 -6
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/mod.py +8 -8
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/Cargo.toml +4 -4
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/opendp_derive/Cargo.toml +1 -1
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/opendp_tooling/src/codegen/python.rs +9 -12
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/combinators/sequential_composition/adaptive/mod.rs +1 -1
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/combinators/sequential_composition/non_adaptive/ffi.rs +1 -1
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/combinators/sequential_composition/non_adaptive/mod.rs +1 -1
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/core/mod.rs +10 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/lib.rs +1 -1
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/measurements/noisy_max/mod.rs +4 -1
- opendp-0.14.1a20260130001/src/opendp/rust/src/traits/samplers/cks20/pseudocode/sample_bernoulli_exp.py +8 -0
- opendp-0.14.1a20260130001/src/opendp/rust/src/traits/samplers/cks20/pseudocode/sample_discrete_gaussian.py +17 -0
- opendp-0.14.1a20260130001/src/opendp/rust/src/traits/samplers/cks20/pseudocode/sample_geometric_exp_slow.py +8 -0
- opendp-0.14.1a20260130001/src/opendp/rust/src/traits/samplers/cks20/sample_bernoulli_exp.tex +79 -0
- opendp-0.14.1a20260130001/src/opendp/rust/src/traits/samplers/cks20/sample_discrete_gaussian.tex +114 -0
- opendp-0.14.1a20260130001/src/opendp/rust/src/traits/samplers/cks20/sample_geometric_exp_slow.tex +91 -0
- opendp-0.14.1a20260130001/src/opendp/rust/src/transformations/count/make_count.tex +108 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/transformations/count/mod.rs +4 -11
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/transformations/count/pseudocode/make_count.py +4 -4
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/transformations/dataframe/apply/mod.rs +3 -3
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/transformations/dataframe/create/mod.rs +2 -2
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/transformations/dataframe/select/mod.rs +1 -1
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/transformations/dataframe/subset/mod.rs +1 -1
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/transformations.py +126 -126
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001/src/opendp.egg-info}/PKG-INFO +3 -4
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/test/test_docs.py +20 -1
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/test/test_trans.py +1 -1
- opendp-0.14.1a20251030001/src/opendp/rust/src/traits/samplers/cks20/pseudocode/sample_bernoulli_exp.py +0 -8
- opendp-0.14.1a20251030001/src/opendp/rust/src/traits/samplers/cks20/pseudocode/sample_discrete_gaussian.py +0 -14
- opendp-0.14.1a20251030001/src/opendp/rust/src/traits/samplers/cks20/pseudocode/sample_geometric_exp_slow.py +0 -8
- opendp-0.14.1a20251030001/src/opendp/rust/src/traits/samplers/cks20/sample_bernoulli_exp.tex +0 -80
- opendp-0.14.1a20251030001/src/opendp/rust/src/traits/samplers/cks20/sample_discrete_gaussian.tex +0 -112
- opendp-0.14.1a20251030001/src/opendp/rust/src/traits/samplers/cks20/sample_geometric_exp_slow.tex +0 -68
- opendp-0.14.1a20251030001/src/opendp/rust/src/transformations/count/make_count.tex +0 -125
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/LICENSE +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/MANIFEST.in +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/pyproject.toml +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/setup.py +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/__init__.py +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/_convert.py +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/_data.py +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/_lib.py +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/context.py +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/extras/__init__.py +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/extras/_utilities.py +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/extras/examples/__init__.py +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/extras/mbi/__init__.py +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/extras/mbi/_aim/__init__.py +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/extras/mbi/_fixed/__init__.py +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/extras/mbi/_mst/__init__.py +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/extras/mbi/_sequential/__init__.py +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/extras/numpy/__init__.py +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/extras/numpy/_make_np_clamp/__init__.py +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/extras/numpy/_make_np_count/__init__.py +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/extras/numpy/_make_np_mean/__init__.py +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/extras/numpy/_make_np_sscp/__init__.py +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/extras/numpy/_make_np_sum/__init__.py +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/extras/polars/contingency_table.py +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/extras/sklearn/__init__.py +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/extras/sklearn/_make_eigendecomposition/__init__.py +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/extras/sklearn/_make_eigenvalues/__init__.py +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/extras/sklearn/_make_eigenvector/__init__.py +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/extras/sklearn/linear_model/__init__.py +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/extras/sklearn/linear_model/_make_private_theil_sen/__init__.py +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/prelude.py +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/py.typed +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/build/derive.rs +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/build/main.rs +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/katex.html +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/opendp_derive/src/full.rs +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/opendp_derive/src/lib.rs +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/opendp_tooling/Cargo.toml +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/opendp_tooling/src/bootstrap/arguments.rs +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/opendp_tooling/src/bootstrap/docstring.rs +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/opendp_tooling/src/bootstrap/mod.rs +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/opendp_tooling/src/bootstrap/partial.rs +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/opendp_tooling/src/bootstrap/signature.rs +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/opendp_tooling/src/bootstrap/test.rs +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/opendp_tooling/src/codegen/mod.rs +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/opendp_tooling/src/codegen/python_typemap.json +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/opendp_tooling/src/codegen/r/c.rs +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/opendp_tooling/src/codegen/r/mod.rs +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/opendp_tooling/src/codegen/r/r.rs +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/opendp_tooling/src/codegen/test.rs +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/opendp_tooling/src/codegen/type_hierarchy.json +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/opendp_tooling/src/lib.rs +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/opendp_tooling/src/proven/filesystem.rs +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/opendp_tooling/src/proven/mod.rs +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/accuracy/accuracy_to_discrete_gaussian_scale.tex +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/accuracy/accuracy_to_discrete_laplacian_scale.tex +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/accuracy/code/summarize_polars_measurement.rst +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/accuracy/discrete_gaussian_scale_to_accuracy.tex +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/accuracy/discrete_laplacian_scale_to_accuracy.tex +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/accuracy/ffi.rs +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/accuracy/mod.rs +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/accuracy/polars/ffi.rs +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/accuracy/polars/mod.rs +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/accuracy/polars/test.rs +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/accuracy/tail_bounds/conservative_continuous_gaussian_tail_to_alpha.tex +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/accuracy/tail_bounds/conservative_discrete_laplacian_tail_to_alpha.tex +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/accuracy/tail_bounds/erfc_err_analysis.py +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/accuracy/tail_bounds/mod.rs +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/accuracy/tail_bounds/test.rs +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/accuracy/test.rs +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/combinators/amplify/ffi.rs +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/combinators/amplify/mod.rs +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/combinators/amplify/test.rs +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/combinators/chain/ffi.rs +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/combinators/chain/mod.rs +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/combinators/chain/shr/mod.rs +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/combinators/chain/shr/partials.rs +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/combinators/chain/test.rs +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/combinators/code/make_select_private_candidate.rst +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/combinators/fix_delta/ffi.rs +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/combinators/fix_delta/mod.rs +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/combinators/fix_delta/test.rs +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/combinators/measure_cast/approximate/ffi.rs +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/combinators/measure_cast/approximate/mod.rs +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/combinators/measure_cast/fixed_approxDP_to_approxDP/ffi.rs +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/combinators/measure_cast/fixed_approxDP_to_approxDP/mod.rs +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/combinators/measure_cast/fixed_approxDP_to_approxDP/test.rs +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/combinators/measure_cast/mod.rs +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/combinators/measure_cast/pureDP_to_zCDP/ffi.rs +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/combinators/measure_cast/pureDP_to_zCDP/mod.rs +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/combinators/measure_cast/zCDP_to_approxDP/cdp_delta/cdp_delta.tex +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/combinators/measure_cast/zCDP_to_approxDP/cdp_delta/mod.bib +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/combinators/measure_cast/zCDP_to_approxDP/cdp_delta/mod.rs +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/combinators/measure_cast/zCDP_to_approxDP/cdp_delta/pseudocode/cdp_delta.py +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/combinators/measure_cast/zCDP_to_approxDP/cdp_delta/test.rs +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/combinators/measure_cast/zCDP_to_approxDP/ffi.rs +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/combinators/measure_cast/zCDP_to_approxDP/mod.bib +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/combinators/measure_cast/zCDP_to_approxDP/mod.rs +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/combinators/measure_cast/zCDP_to_approxDP/test.rs +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/combinators/mod.rs +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/combinators/privacy_filter/ffi.rs +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/combinators/privacy_filter/make_privacy_filter.tex +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/combinators/privacy_filter/mod.rs +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/combinators/privacy_filter/new_continuation_rule.tex +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/combinators/privacy_filter/pseudocode/make_privacy_filter.py +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/combinators/privacy_filter/pseudocode/new_continuation_rule.py +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/combinators/privacy_filter/test.rs +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/combinators/select_private_candidate/ffi.rs +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/combinators/select_private_candidate/make_select_private_candidate.tex +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/combinators/select_private_candidate/mod.rs +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/combinators/select_private_candidate/pseudocode/make_select_private_candidate.py +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/combinators/select_private_candidate/references.bib +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/combinators/select_private_candidate/test.rs +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/combinators/sequential_composition/CompositionMeasure_for_ApproximateMaxDivergence.tex +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/combinators/sequential_composition/CompositionMeasure_for_ApproximateZeroConcentratedDivergence.tex +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/combinators/sequential_composition/CompositionMeasure_for_MaxDivergence.tex +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/combinators/sequential_composition/CompositionMeasure_for_RenyiDivergence.tex +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/combinators/sequential_composition/CompositionMeasure_for_ZeroConcentratedDivergence.tex +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/combinators/sequential_composition/adaptive/ffi.rs +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/combinators/sequential_composition/adaptive/test.rs +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/combinators/sequential_composition/ffi.rs +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/combinators/sequential_composition/fully_adaptive/ffi.rs +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/combinators/sequential_composition/fully_adaptive/make_fully_adaptive_composition.tex +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/combinators/sequential_composition/fully_adaptive/mod.rs +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/combinators/sequential_composition/fully_adaptive/new_fully_adaptive_composition_queryable.tex +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/combinators/sequential_composition/fully_adaptive/pseudocode/make_fully_adaptive_composition.py +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/combinators/sequential_composition/fully_adaptive/pseudocode/new_fully_adaptive_composition_queryable.py +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/combinators/sequential_composition/fully_adaptive/ref.bib +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/combinators/sequential_composition/fully_adaptive/test.rs +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/combinators/sequential_composition/mod.rs +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/combinators/sequential_composition/non_adaptive/test.rs +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/combinators/sequential_composition/pseudocode/CompositionMeasure_for_ApproximateMaxDivergence.py +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/combinators/sequential_composition/pseudocode/CompositionMeasure_for_ApproximateZeroConcentratedDivergence.py +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/combinators/sequential_composition/pseudocode/CompositionMeasure_for_MaxDivergence.py +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/combinators/sequential_composition/pseudocode/CompositionMeasure_for_RenyiDivergence.py +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/combinators/sequential_composition/pseudocode/CompositionMeasure_for_ZeroConcentratedDivergence.py +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/combinators/sequential_composition/ref.bib +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/combinators/test.rs +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/core/ffi/measurement.rs +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/core/ffi/mod.rs +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/core/ffi/odometer.rs +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/core/ffi/queryable.rs +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/core/ffi/transformation.rs +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/core/test.rs +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/data/ffi/mod.rs +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/data/ffi/polars.rs +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/data/mod.rs +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/data/test.rs +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/domains/code/atom_domain.R +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/domains/code/atom_domain.rst +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/domains/ffi.rs +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/domains/mod.rs +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/domains/polars/array/ffi.rs +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/domains/polars/array/mod.rs +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/domains/polars/categorical/ffi.rs +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/domains/polars/categorical/mod.rs +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/domains/polars/datetime/ffi.rs +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/domains/polars/datetime/mod.rs +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/domains/polars/enum/ffi.rs +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/domains/polars/enum/mod.rs +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/domains/polars/enum/test.rs +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/domains/polars/expr/ffi.rs +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/domains/polars/expr/mod.rs +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/domains/polars/frame/ffi.rs +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/domains/polars/frame/find_min_covering.tex +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/domains/polars/frame/get_margin.tex +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/domains/polars/frame/mod.rs +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/domains/polars/frame/pseudocode/find_min_covering.py +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/domains/polars/frame/pseudocode/get_margin.py +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/domains/polars/frame/test.rs +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/domains/polars/mod.rs +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/domains/polars/series/ffi.rs +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/domains/polars/series/mod.rs +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/domains/polars/series/test.rs +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/domains/poly.rs +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/error/mod.rs +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/error/test.rs +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/ffi/any.rs +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/ffi/dispatch.rs +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/ffi/mod.rs +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/ffi/util.rs +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/interactive/mod.rs +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/internal/mod.rs +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/lib.sty +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/measurements/alp/ffi.rs +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/measurements/alp/mod.rs +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/measurements/alp/test.rs +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/measurements/canonical_noise/approximate_to_tradeoff.tex +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/measurements/canonical_noise/ffi.rs +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/measurements/canonical_noise/make_canonical_noise.tex +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/measurements/canonical_noise/mod.rs +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/measurements/canonical_noise/pseudocode/approximate_to_tradeoff.py +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/measurements/canonical_noise/pseudocode/make_canonical_noise.py +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/measurements/canonical_noise/ref.bib +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/measurements/canonical_noise/test.rs +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/measurements/code/README.md +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/measurements/code/make_gaussian.R +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/measurements/code/make_gaussian.rst +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/measurements/code/make_geometric.rst +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/measurements/code/make_laplace.rst +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/measurements/code/make_noisy_max.rst +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/measurements/code/make_private_lazyframe.rst +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/measurements/code/make_randomized_response.rst +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/measurements/code/make_randomized_response_bitvec.rst +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/measurements/code/make_randomized_response_bool.rst +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/measurements/code/make_user_measurement.rst +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/measurements/code/then_report_noisy_max_gumbel.rst +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/measurements/make_private_expr/expr_dp_counting_query/mod.rs +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/measurements/make_private_expr/expr_dp_frame_len/mod.rs +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/measurements/make_private_expr/expr_dp_mean/mod.rs +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/measurements/make_private_expr/expr_dp_median/mod.rs +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/measurements/make_private_expr/expr_dp_quantile/mod.rs +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/measurements/make_private_expr/expr_dp_sum/mod.rs +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/measurements/make_private_expr/expr_index_candidates/mod.rs +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/measurements/make_private_expr/expr_index_candidates/test.rs +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/measurements/make_private_expr/expr_len/mod.rs +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/measurements/make_private_expr/expr_len/test.rs +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/measurements/make_private_expr/expr_literal/mod.rs +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/measurements/make_private_expr/expr_literal/test.rs +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/measurements/make_private_expr/expr_noise/mod.rs +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/measurements/make_private_expr/expr_noise/test.rs +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/measurements/make_private_expr/expr_noisy_max/mod.rs +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/measurements/make_private_expr/expr_noisy_max/test.rs +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/measurements/make_private_expr/expr_postprocess/mod.rs +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/measurements/make_private_expr/expr_postprocess/test.rs +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/measurements/make_private_expr/ffi.rs +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/measurements/make_private_expr/mod.rs +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/measurements/make_private_expr/test.rs +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/measurements/make_private_lazyframe/ffi.rs +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/measurements/make_private_lazyframe/group_by/make_private_group_by.tex +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/measurements/make_private_lazyframe/group_by/matching.rs +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/measurements/make_private_lazyframe/group_by/mod.rs +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/measurements/make_private_lazyframe/group_by/pseudocode/make_private_group_by.py +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/measurements/make_private_lazyframe/group_by/ref.bib +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/measurements/make_private_lazyframe/group_by/test.rs +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/measurements/make_private_lazyframe/mod.rs +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/measurements/make_private_lazyframe/postprocess/mod.rs +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/measurements/make_private_lazyframe/postprocess/test.rs +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/measurements/make_private_lazyframe/select/mod.rs +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/measurements/make_private_lazyframe/select/test.rs +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/measurements/make_user_measurement/mod.rs +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/measurements/mod.rs +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/measurements/noise/MakeNoise_IBig_for_RV.tex +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/measurements/noise/Sample_for_ZExpFamily1.tex +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/measurements/noise/Sample_for_ZExpFamily2.tex +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/measurements/noise/distribution/ffi.rs +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/measurements/noise/distribution/gaussian/MakeNoise_for_DiscreteGaussian.tex +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/measurements/noise/distribution/gaussian/NoisePrivacyMap_for_ZExpFamily2.tex +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/measurements/noise/distribution/gaussian/ffi.rs +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/measurements/noise/distribution/gaussian/make_gaussian.tex +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/measurements/noise/distribution/gaussian/mod.bib +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/measurements/noise/distribution/gaussian/mod.rs +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/measurements/noise/distribution/gaussian/pseudocode/MakeNoise_for_DiscreteGaussian.py +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/measurements/noise/distribution/gaussian/pseudocode/NoisePrivacyMap_for_ZExpFamily2.py +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/measurements/noise/distribution/gaussian/pseudocode/make_gaussian.py +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/measurements/noise/distribution/gaussian/test.rs +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/measurements/noise/distribution/geometric/MakeNoise_AtomDomain_for_ConstantTimeGeometric.tex +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/measurements/noise/distribution/geometric/MakeNoise_VectorDomain_for_ConstantTimeGeometric.tex +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/measurements/noise/distribution/geometric/ffi.rs +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/measurements/noise/distribution/geometric/make_geometric.tex +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/measurements/noise/distribution/geometric/mod.rs +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/measurements/noise/distribution/geometric/pseudocode/MakeNoise_AtomDomain_for_ConstantTimeGeometric.py +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/measurements/noise/distribution/geometric/pseudocode/MakeNoise_VectorDomain_for_ConstantTimeGeometric.py +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/measurements/noise/distribution/geometric/pseudocode/make_geometric.py +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/measurements/noise/distribution/geometric/test.rs +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/measurements/noise/distribution/laplace/MakeNoise_for_DiscreteLaplace.tex +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/measurements/noise/distribution/laplace/NoisePrivacyMap_for_ZExpFamily1.tex +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/measurements/noise/distribution/laplace/ffi.rs +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/measurements/noise/distribution/laplace/make_laplace.tex +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/measurements/noise/distribution/laplace/mod.rs +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/measurements/noise/distribution/laplace/pseudocode/MakeNoise_for_DiscreteLaplace.py +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/measurements/noise/distribution/laplace/pseudocode/NoisePrivacyMap_for_ZExpFamily1.py +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/measurements/noise/distribution/laplace/pseudocode/make_laplace.py +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/measurements/noise/distribution/laplace/test.rs +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/measurements/noise/distribution/mod.rs +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/measurements/noise/mod.rs +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/measurements/noise/nature/bigint/MakeNoise_AtomDomain_for_ZExpFamily.tex +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/measurements/noise/nature/bigint/mod.rs +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/measurements/noise/nature/bigint/pseudocode/MakeNoise_AtomDomain_for_ZExpFamily.py +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/measurements/noise/nature/bigint/test.rs +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/measurements/noise/nature/float/MakeNoise_AtomDomain_for_FloatExpFamily.tex +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/measurements/noise/nature/float/MakeNoise_VectorDomain_for_FloatExpFamily.tex +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/measurements/noise/nature/float/make_float_to_bigint.tex +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/measurements/noise/nature/float/mod.rs +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/measurements/noise/nature/float/pseudocode/MakeNoise_AtomDomain_for_FloatExpFamily.py +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/measurements/noise/nature/float/pseudocode/MakeNoise_VectorDomain_for_FloatExpFamily.py +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/measurements/noise/nature/float/pseudocode/make_float_to_bigint.py +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/measurements/noise/nature/float/pseudocode/then_deintegerize_vec.py +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/measurements/noise/nature/float/test.rs +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/measurements/noise/nature/float/then_deintegerize_vec.tex +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/measurements/noise/nature/float/utilities/find_nearest_multiple_of_2k.tex +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/measurements/noise/nature/float/utilities/floor_div.tex +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/measurements/noise/nature/float/utilities/get_min_k.tex +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/measurements/noise/nature/float/utilities/get_rounding_distance.tex +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/measurements/noise/nature/float/utilities/mod.rs +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/measurements/noise/nature/float/utilities/pseudocode/find_nearest_multiple_of_2k.py +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/measurements/noise/nature/float/utilities/pseudocode/floor_div.py +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/measurements/noise/nature/float/utilities/pseudocode/get_min_k.py +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/measurements/noise/nature/float/utilities/pseudocode/get_rounding_distance.py +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/measurements/noise/nature/float/utilities/pseudocode/x_mul_2k.py +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/measurements/noise/nature/float/utilities/test.rs +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/measurements/noise/nature/float/utilities/x_mul_2k.tex +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/measurements/noise/nature/integer/MakeNoise_AtomDomain_for_IntExpFamily.tex +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/measurements/noise/nature/integer/MakeNoise_VectorDomain_for_IntExpFamily.tex +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/measurements/noise/nature/integer/make_int_to_bigint.tex +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/measurements/noise/nature/integer/mod.rs +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/measurements/noise/nature/integer/pseudocode/MakeNoise_AtomDomain_for_IntExpFamily.py +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/measurements/noise/nature/integer/pseudocode/MakeNoise_VectorDomain_for_IntExpFamily.py +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/measurements/noise/nature/integer/pseudocode/make_int_to_bigint.py +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/measurements/noise/nature/integer/pseudocode/then_saturating_cast.py +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/measurements/noise/nature/integer/test.rs +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/measurements/noise/nature/integer/then_saturating_cast.tex +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/measurements/noise/nature/mod.rs +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/measurements/noise/pseudocode/MakeNoise_IBig_for_RV.py +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/measurements/noise/pseudocode/Sample_for_ZExpFamily1.py +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/measurements/noise/pseudocode/Sample_for_ZExpFamily2.py +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/measurements/noise/test.rs +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/measurements/noise_threshold/MakeNoiseThreshold_IBig_for_RV.tex +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/measurements/noise_threshold/distribution/ffi.rs +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/measurements/noise_threshold/distribution/gaussian/MakeNoiseThreshold_for_DiscreteGaussian.tex +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/measurements/noise_threshold/distribution/gaussian/NoiseThresholdPrivacyMap_for_ZExpFamily2.tex +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/measurements/noise_threshold/distribution/gaussian/ffi.rs +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/measurements/noise_threshold/distribution/gaussian/make_gaussian_threshold.tex +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/measurements/noise_threshold/distribution/gaussian/mod.rs +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/measurements/noise_threshold/distribution/gaussian/pseudocode/MakeNoiseThreshold_for_DiscreteGaussian.py +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/measurements/noise_threshold/distribution/gaussian/pseudocode/NoiseThresholdPrivacyMap_for_ZExpFamily2.py +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/measurements/noise_threshold/distribution/gaussian/pseudocode/make_gaussian_threshold.py +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/measurements/noise_threshold/distribution/gaussian/ref.bib +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/measurements/noise_threshold/distribution/gaussian/test.rs +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/measurements/noise_threshold/distribution/laplace/MakeNoiseThreshold_for_DiscreteLaplace.tex +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/measurements/noise_threshold/distribution/laplace/NoiseThresholdPrivacyMap_for_ZExpFamily1.tex +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/measurements/noise_threshold/distribution/laplace/ffi.rs +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/measurements/noise_threshold/distribution/laplace/make_laplace_threshold.tex +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/measurements/noise_threshold/distribution/laplace/mod.rs +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/measurements/noise_threshold/distribution/laplace/pseudocode/MakeNoiseThreshold_for_DiscreteLaplace.py +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/measurements/noise_threshold/distribution/laplace/pseudocode/NoiseThresholdPrivacyMap_for_ZExpFamily1.py +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/measurements/noise_threshold/distribution/laplace/pseudocode/make_laplace_threshold.py +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/measurements/noise_threshold/distribution/laplace/ref.bib +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/measurements/noise_threshold/distribution/laplace/test.rs +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/measurements/noise_threshold/distribution/mod.rs +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/measurements/noise_threshold/distribution/test.rs +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/measurements/noise_threshold/mod.rs +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/measurements/noise_threshold/nature/float/MakeNoiseThreshold_MapDomain_for_FloatExpFamily.tex +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/measurements/noise_threshold/nature/float/make_float_to_bigint_threshold.tex +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/measurements/noise_threshold/nature/float/mod.rs +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/measurements/noise_threshold/nature/float/pseudocode/MakeNoiseThreshold_MapDomain_for_FloatExpFamily.py +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/measurements/noise_threshold/nature/float/pseudocode/make_float_to_bigint_threshold.py +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/measurements/noise_threshold/nature/float/pseudocode/then_deintegerize_hashmap.py +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/measurements/noise_threshold/nature/float/test.rs +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/measurements/noise_threshold/nature/float/then_deintegerize_hashmap.tex +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/measurements/noise_threshold/nature/integer/MakeNoiseThreshold_MapDomain_for_IntExpFamily.tex +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/measurements/noise_threshold/nature/integer/make_int_to_bigint_threshold.tex +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/measurements/noise_threshold/nature/integer/mod.rs +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/measurements/noise_threshold/nature/integer/pseudocode/MakeNoiseThreshold_MapDomain_for_IntExpFamily.py +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/measurements/noise_threshold/nature/integer/pseudocode/make_int_to_bigint_threshold.py +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/measurements/noise_threshold/nature/integer/pseudocode/then_saturating_cast_hashmap.py +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/measurements/noise_threshold/nature/integer/test.rs +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/measurements/noise_threshold/nature/integer/then_saturating_cast_hashmap.tex +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/measurements/noise_threshold/nature/mod.rs +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/measurements/noise_threshold/pseudocode/MakeNoiseThreshold_IBig_for_RV.py +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/measurements/noise_threshold/test.rs +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/measurements/noisy_max/ffi.rs +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/measurements/noisy_max/test.rs +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/measurements/noisy_top_k/TopKMeasure_MaxDivergence.tex +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/measurements/noisy_top_k/TopKMeasure_ZeroConcentratedDivergence.tex +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/measurements/noisy_top_k/ffi.rs +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/measurements/noisy_top_k/make_noisy_top_k.tex +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/measurements/noisy_top_k/mod.rs +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/measurements/noisy_top_k/noisy_top_k.tex +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/measurements/noisy_top_k/peel_permute_and_flip.tex +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/measurements/noisy_top_k/permute_and_flip.tex +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/measurements/noisy_top_k/pseudocode/TopKMeasure_MaxDivergence.py +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/measurements/noisy_top_k/pseudocode/TopKMeasure_ZeroConcentratedDivergence.py +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/measurements/noisy_top_k/pseudocode/make_noisy_top_k.py +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/measurements/noisy_top_k/pseudocode/noisy_top_k.py +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/measurements/noisy_top_k/pseudocode/peel_permute_and_flip.py +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/measurements/noisy_top_k/pseudocode/permute_and_flip.py +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/measurements/noisy_top_k/references.bib +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/measurements/noisy_top_k/test.rs +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/measurements/private_quantile/ffi.rs +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/measurements/private_quantile/mod.rs +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/measurements/private_quantile/test.rs +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/measurements/randomized_response/ffi.rs +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/measurements/randomized_response/make_randomized_response.tex +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/measurements/randomized_response/make_randomized_response_bool.tex +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/measurements/randomized_response/mod.rs +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/measurements/randomized_response/pseudocode/make_randomized_response.py +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/measurements/randomized_response/pseudocode/make_randomized_response_bool.py +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/measurements/randomized_response/randomized_response.bib +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/measurements/randomized_response/test.rs +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/measurements/randomized_response_bitvec/ffi.rs +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/measurements/randomized_response_bitvec/make_randomized_response_bitvec.tex +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/measurements/randomized_response_bitvec/mod.rs +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/measurements/randomized_response_bitvec/pseudocode/make_randomized_response_bitvec.py +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/measurements/randomized_response_bitvec/references.bib +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/measures/code/new_privacy_profile.rst +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/measures/ffi.rs +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/measures/mod.rs +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/metrics/ffi.rs +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/metrics/mod.rs +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/metrics/polars/ffi.rs +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/metrics/polars/mod.rs +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/polars/mod.rs +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/polars/test.rs +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/traits/arithmetic/mod.rs +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/traits/bounded/mod.rs +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/traits/cast/mod.rs +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/traits/cast/test.rs +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/traits/domains/ffi.rs +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/traits/domains/mod.rs +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/traits/mod.rs +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/traits/operations/mod.rs +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/traits/samplers/bernoulli/mod.rs +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/traits/samplers/bernoulli/pseudocode/sample_bernoulli_float.py +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/traits/samplers/bernoulli/pseudocode/sample_bernoulli_rational.py +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/traits/samplers/bernoulli/sample_bernoulli_float.tex +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/traits/samplers/bernoulli/sample_bernoulli_rational.tex +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/traits/samplers/bernoulli/test.rs +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/traits/samplers/cks20/mod.bib +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/traits/samplers/cks20/mod.rs +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/traits/samplers/cks20/pseudocode/sample_bernoulli_exp1.py +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/traits/samplers/cks20/pseudocode/sample_discrete_laplace.py +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/traits/samplers/cks20/pseudocode/sample_geometric_exp_fast.py +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/traits/samplers/cks20/sample_bernoulli_exp1.tex +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/traits/samplers/cks20/sample_discrete_laplace.tex +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/traits/samplers/cks20/sample_geometric_exp_fast.tex +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/traits/samplers/geometric/mod.rs +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/traits/samplers/geometric/pseudocode/sample_geometric_buffer.py +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/traits/samplers/geometric/sample_geometric_buffer.tex +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/traits/samplers/mod.rs +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/traits/samplers/psrn/canonical/InverseCDF_for_CanonicalRV.tex +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/traits/samplers/psrn/canonical/mod.rs +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/traits/samplers/psrn/canonical/pseudocode/InverseCDF_for_CanonicalRV.py +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/traits/samplers/psrn/canonical/pseudocode/quantile_cnd.py +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/traits/samplers/psrn/canonical/quantile_cnd.tex +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/traits/samplers/psrn/canonical/ref.bib +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/traits/samplers/psrn/canonical/test.rs +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/traits/samplers/psrn/mod.rs +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/traits/samplers/psrn/test.rs +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/traits/samplers/test.rs +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/traits/samplers/uniform/mod.rs +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/traits/samplers/uniform/pseudocode/sample_uniform_ubig_below.py +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/traits/samplers/uniform/pseudocode/sample_uniform_uint_below.py +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/traits/samplers/uniform/sample_uniform_ubig_below.tex +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/traits/samplers/uniform/sample_uniform_uint_below.tex +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/traits/samplers/uniform/test.rs +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/transformations/b_ary_tree/consistency_postprocessor/ffi.rs +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/transformations/b_ary_tree/consistency_postprocessor/mod.rs +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/transformations/b_ary_tree/ffi.rs +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/transformations/b_ary_tree/mod.rs +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/transformations/b_ary_tree/test.rs +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/transformations/cast/ffi.rs +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/transformations/cast/mod.rs +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/transformations/cast/test.rs +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/transformations/cast_metric/ffi.rs +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/transformations/cast_metric/mod.rs +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/transformations/cast_metric/test.rs +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/transformations/cast_metric/traits.rs +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/transformations/clamp/ffi.rs +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/transformations/clamp/make_clamp.tex +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/transformations/clamp/mod.rs +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/transformations/clamp/pseudocode/make_clamp.py +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/transformations/clamp/test.rs +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/transformations/count/ffi.rs +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/transformations/count/test.rs +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/transformations/count_cdf/ffi.rs +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/transformations/count_cdf/mod.rs +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/transformations/count_cdf/test.rs +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/transformations/covariance/ffi.rs +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/transformations/covariance/mod.rs +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/transformations/covariance/test.rs +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/transformations/dataframe/apply/ffi.rs +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/transformations/dataframe/apply/test.rs +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/transformations/dataframe/create/ffi.rs +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/transformations/dataframe/create/test.rs +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/transformations/dataframe/mod.rs +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/transformations/dataframe/select/ffi.rs +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/transformations/dataframe/select/test.rs +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/transformations/dataframe/subset/ffi.rs +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/transformations/dataframe/subset/test.rs +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/transformations/impute/ffi.rs +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/transformations/impute/mod.rs +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/transformations/impute/test.rs +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/transformations/index/ffi.rs +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/transformations/index/mod.rs +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/transformations/index/test.rs +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/transformations/lipschitz_mul/ffi.rs +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/transformations/lipschitz_mul/mod.rs +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/transformations/lipschitz_mul/test.rs +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/transformations/make_stable_expr/expr_alias/mod.rs +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/transformations/make_stable_expr/expr_alias/test.rs +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/transformations/make_stable_expr/expr_binary/mod.rs +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/transformations/make_stable_expr/expr_binary/test.rs +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/transformations/make_stable_expr/expr_boolean_function/mod.rs +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/transformations/make_stable_expr/expr_boolean_function/test.rs +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/transformations/make_stable_expr/expr_cast/mod.rs +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/transformations/make_stable_expr/expr_cast/test.rs +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/transformations/make_stable_expr/expr_clip/mod.rs +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/transformations/make_stable_expr/expr_clip/test.rs +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/transformations/make_stable_expr/expr_col/mod.rs +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/transformations/make_stable_expr/expr_col/test.rs +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/transformations/make_stable_expr/expr_count/counting_query_stability_map.tex +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/transformations/make_stable_expr/expr_count/make_expr_count.tex +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/transformations/make_stable_expr/expr_count/mod.rs +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/transformations/make_stable_expr/expr_count/pseudocode/counting_query_stability_map.py +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/transformations/make_stable_expr/expr_count/pseudocode/make_expr_count.py +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/transformations/make_stable_expr/expr_count/test.rs +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/transformations/make_stable_expr/expr_cut/mod.rs +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/transformations/make_stable_expr/expr_cut/test.rs +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/transformations/make_stable_expr/expr_discrete_quantile_score/mod.rs +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/transformations/make_stable_expr/expr_discrete_quantile_score/plugin_dq_score.rs +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/transformations/make_stable_expr/expr_discrete_quantile_score/test.rs +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/transformations/make_stable_expr/expr_drop_nan_or_null/mod.rs +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/transformations/make_stable_expr/expr_drop_nan_or_null/test.rs +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/transformations/make_stable_expr/expr_fill_nan/mod.rs +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/transformations/make_stable_expr/expr_fill_nan/test.rs +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/transformations/make_stable_expr/expr_fill_null/mod.rs +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/transformations/make_stable_expr/expr_fill_null/test.rs +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/transformations/make_stable_expr/expr_filter/mod.rs +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/transformations/make_stable_expr/expr_filter/test.rs +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/transformations/make_stable_expr/expr_len/mod.rs +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/transformations/make_stable_expr/expr_len/test.rs +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/transformations/make_stable_expr/expr_lit/mod.rs +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/transformations/make_stable_expr/expr_lit/test.rs +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/transformations/make_stable_expr/expr_replace/mod.rs +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/transformations/make_stable_expr/expr_replace/test.rs +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/transformations/make_stable_expr/expr_replace_strict/mod.rs +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/transformations/make_stable_expr/expr_replace_strict/test.rs +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/transformations/make_stable_expr/expr_sum/mod.rs +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/transformations/make_stable_expr/expr_sum/test.rs +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/transformations/make_stable_expr/expr_to_physical/mod.rs +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/transformations/make_stable_expr/expr_to_physical/test.rs +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/transformations/make_stable_expr/ffi.rs +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/transformations/make_stable_expr/mod.rs +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/transformations/make_stable_expr/namespace_arr/mod.rs +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/transformations/make_stable_expr/namespace_arr/test.rs +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/transformations/make_stable_expr/namespace_dt/expr_datetime_component/make_expr_datetime_component.tex +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/transformations/make_stable_expr/namespace_dt/expr_datetime_component/match_datetime_component.tex +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/transformations/make_stable_expr/namespace_dt/expr_datetime_component/mod.rs +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/transformations/make_stable_expr/namespace_dt/expr_datetime_component/pseudocode/make_expr_datetime_component.py +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/transformations/make_stable_expr/namespace_dt/expr_datetime_component/pseudocode/match_datetime_component.py +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/transformations/make_stable_expr/namespace_dt/expr_datetime_component/test.rs +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/transformations/make_stable_expr/namespace_dt/mod.rs +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/transformations/make_stable_expr/namespace_str/expr_strptime/make_expr_strptime.tex +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/transformations/make_stable_expr/namespace_str/expr_strptime/mod.rs +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/transformations/make_stable_expr/namespace_str/expr_strptime/pseudocode/make_expr_strptime.py +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/transformations/make_stable_expr/namespace_str/expr_strptime/test.rs +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/transformations/make_stable_expr/namespace_str/mod.rs +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/transformations/make_stable_expr/test_helper.rs +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/transformations/make_stable_lazyframe/ffi.rs +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/transformations/make_stable_lazyframe/filter/mod.rs +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/transformations/make_stable_lazyframe/filter/test.rs +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/transformations/make_stable_lazyframe/group_by/make_stable_group_by.tex +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/transformations/make_stable_lazyframe/group_by/mod.rs +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/transformations/make_stable_lazyframe/group_by/pseudocode/make_stable_group_by.py +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/transformations/make_stable_lazyframe/group_by/test.rs +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/transformations/make_stable_lazyframe/h_stack/mod.rs +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/transformations/make_stable_lazyframe/h_stack/test.rs +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/transformations/make_stable_lazyframe/mod.rs +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/transformations/make_stable_lazyframe/select/mod.rs +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/transformations/make_stable_lazyframe/select/test.rs +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/transformations/make_stable_lazyframe/source/mod.rs +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/transformations/make_stable_lazyframe/truncate/make_stable_truncate.tex +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/transformations/make_stable_lazyframe/truncate/matching/match_group_by_truncation.tex +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/transformations/make_stable_lazyframe/truncate/matching/match_num_groups_predicate.tex +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/transformations/make_stable_lazyframe/truncate/matching/match_per_group_predicate.tex +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/transformations/make_stable_lazyframe/truncate/matching/match_truncation_predicate.tex +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/transformations/make_stable_lazyframe/truncate/matching/match_truncations.tex +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/transformations/make_stable_lazyframe/truncate/matching/mod.rs +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/transformations/make_stable_lazyframe/truncate/matching/pseudocode/match_group_by_truncation.py +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/transformations/make_stable_lazyframe/truncate/matching/pseudocode/match_num_groups_predicate.py +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/transformations/make_stable_lazyframe/truncate/matching/pseudocode/match_per_group_predicate.py +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/transformations/make_stable_lazyframe/truncate/matching/pseudocode/match_truncation_predicate.py +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/transformations/make_stable_lazyframe/truncate/matching/pseudocode/match_truncations.py +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/transformations/make_stable_lazyframe/truncate/matching/test.rs +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/transformations/make_stable_lazyframe/truncate/mod.rs +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/transformations/make_stable_lazyframe/truncate/pseudocode/make_stable_truncate.py +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/transformations/make_stable_lazyframe/truncate/pseudocode/truncate_domain.py +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/transformations/make_stable_lazyframe/truncate/pseudocode/truncate_id_bound.py +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/transformations/make_stable_lazyframe/truncate/test.rs +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/transformations/make_stable_lazyframe/truncate/truncate_domain.tex +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/transformations/make_stable_lazyframe/truncate/truncate_id_bound.tex +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/transformations/make_user_transformation/mod.rs +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/transformations/manipulation/ffi.rs +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/transformations/manipulation/make_is_equal.tex +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/transformations/manipulation/make_row_by_row.tex +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/transformations/manipulation/make_row_by_row_fallible.tex +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/transformations/manipulation/mod.rs +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/transformations/manipulation/pseudocode/make_is_equal.py +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/transformations/manipulation/pseudocode/make_row_by_row.py +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/transformations/manipulation/pseudocode/make_row_by_row_fallible.py +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/transformations/manipulation/test.rs +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/transformations/mean/ffi.rs +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/transformations/mean/mod.rs +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/transformations/mean/test.rs +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/transformations/mod.rs +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/transformations/quantile_score_candidates/check_candidates.tex +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/transformations/quantile_score_candidates/ffi.rs +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/transformations/quantile_score_candidates/make_quantile_score_candidates.tex +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/transformations/quantile_score_candidates/mod.rs +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/transformations/quantile_score_candidates/pseudocode/check_candidates.py +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/transformations/quantile_score_candidates/pseudocode/make_quantile_score_candidates.py +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/transformations/quantile_score_candidates/pseudocode/score_candidates.py +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/transformations/quantile_score_candidates/pseudocode/score_candidates_constants.py +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/transformations/quantile_score_candidates/pseudocode/score_candidates_map.py +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/transformations/quantile_score_candidates/references.bib +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/transformations/quantile_score_candidates/score_candidates.tex +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/transformations/quantile_score_candidates/score_candidates_constants.tex +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/transformations/quantile_score_candidates/score_candidates_map.tex +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/transformations/quantile_score_candidates/test.rs +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/transformations/resize/ffi.rs +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/transformations/resize/mod.rs +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/transformations/resize/test.rs +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/transformations/scalar_to_vector/make_vec.tex +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/transformations/scalar_to_vector/mod.rs +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/transformations/scalar_to_vector/pseudocode/make_vec.py +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/transformations/scalar_to_vector/pseudocode/then_index_or_default.py +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/transformations/scalar_to_vector/then_index_or_default.tex +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/transformations/sum/ffi.rs +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/transformations/sum/float/checked/ffi.rs +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/transformations/sum/float/checked/mod.rs +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/transformations/sum/float/checked/test.rs +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/transformations/sum/float/mod.rs +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/transformations/sum/float/ordered/ffi.rs +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/transformations/sum/float/ordered/mod.rs +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/transformations/sum/float/ordered/test.rs +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/transformations/sum/int/checked/ffi.rs +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/transformations/sum/int/checked/mod.rs +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/transformations/sum/int/checked/test.rs +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/transformations/sum/int/mod.rs +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/transformations/sum/int/monotonic/ffi.rs +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/transformations/sum/int/monotonic/mod.rs +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/transformations/sum/int/monotonic/test.rs +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/transformations/sum/int/ordered/ffi.rs +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/transformations/sum/int/ordered/mod.rs +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/transformations/sum/int/ordered/test.rs +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/transformations/sum/int/split/ffi.rs +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/transformations/sum/int/split/mod.rs +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/transformations/sum/int/split/test.rs +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/transformations/sum/mod.rs +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/transformations/sum/test.rs +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/transformations/sum_of_squared_deviations/ffi.rs +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/transformations/sum_of_squared_deviations/mod.rs +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/transformations/sum_of_squared_deviations/test.rs +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/transformations/variance/ffi.rs +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/transformations/variance/mod.rs +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/transformations/variance/test.rs +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/typing.py +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp.egg-info/SOURCES.txt +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp.egg-info/dependency_links.txt +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp.egg-info/not-zip-safe +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp.egg-info/requires.txt +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp.egg-info/top_level.txt +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/test/test_accuracy.py +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/test/test_ast.py +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/test/test_binary_search.py +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/test/test_comb.py +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/test/test_convert.py +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/test/test_core.py +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/test/test_decorators.py +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/test/test_domains.py +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/test/test_interactive.py +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/test/test_meas.py +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/test/test_measures.py +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/test/test_metric_cast.py +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/test/test_metrics.py +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/test/test_polars.py +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/test/test_serialization.py +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/test/test_space_of.py +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/test/test_subprocesses.py +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/test/test_tests.py +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/test/test_typing.py +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/test/test_usability.py +0 -0
- {opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/test/test_user_transform.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: opendp
|
|
3
|
-
Version: 0.14.
|
|
3
|
+
Version: 0.14.1a20260130001
|
|
4
4
|
Summary: Python bindings for the OpenDP Library
|
|
5
5
|
Home-page: https://opendp.org
|
|
6
6
|
Author: The OpenDP Project
|
|
@@ -57,7 +57,7 @@ It can be used to build applications of privacy-preserving computations, using a
|
|
|
57
57
|
OpenDP is implemented in Rust, with bindings for easy use from Python and R.
|
|
58
58
|
|
|
59
59
|
The architecture of the OpenDP Library is based on a conceptual framework for expressing privacy-aware computations.
|
|
60
|
-
This framework is described in the paper [A Programming Framework for OpenDP](https://
|
|
60
|
+
This framework is described in the paper [A Programming Framework for OpenDP](https://opendp.org/files/2025/11/opendp_programming_framework_11may2020_1_01.pdf).
|
|
61
61
|
|
|
62
62
|
The OpenDP Library is part of the larger [OpenDP Project](https://opendp.org), a community effort to build trustworthy,
|
|
63
63
|
open source software tools for analysis of private data.
|
|
@@ -112,8 +112,7 @@ If you're having problems using OpenDP, or want to submit feedback, please reach
|
|
|
112
112
|
|
|
113
113
|
* Report a bug or request a feature on [Github](https://github.com/opendp/opendp/issues).
|
|
114
114
|
* Send general queries to [info@opendp.org](mailto:info@opendp.org), or email [security@opendp.org](mailto:security@opendp.org) if it is related to security.
|
|
115
|
-
* Join the conversation on [Slack](https://join.slack.com/t/opendp/shared_invite/zt-
|
|
116
|
-
* Office hours are M/T/Th at 11am Eastern on [Zoom](https://harvard.zoom.us/j/98058847683).
|
|
115
|
+
* Join the conversation on [Slack](https://join.slack.com/t/opendp/shared_invite/zt-1t8rrbqhd-z8LiZiP06vVE422HJd6ciQ), or the [mailing list](https://groups.google.com/a/g.harvard.edu/g/opendp-community).
|
|
117
116
|
|
|
118
117
|
## Contributing
|
|
119
118
|
|
|
@@ -17,7 +17,7 @@ It can be used to build applications of privacy-preserving computations, using a
|
|
|
17
17
|
OpenDP is implemented in Rust, with bindings for easy use from Python and R.
|
|
18
18
|
|
|
19
19
|
The architecture of the OpenDP Library is based on a conceptual framework for expressing privacy-aware computations.
|
|
20
|
-
This framework is described in the paper [A Programming Framework for OpenDP](https://
|
|
20
|
+
This framework is described in the paper [A Programming Framework for OpenDP](https://opendp.org/files/2025/11/opendp_programming_framework_11may2020_1_01.pdf).
|
|
21
21
|
|
|
22
22
|
The OpenDP Library is part of the larger [OpenDP Project](https://opendp.org), a community effort to build trustworthy,
|
|
23
23
|
open source software tools for analysis of private data.
|
|
@@ -72,8 +72,7 @@ If you're having problems using OpenDP, or want to submit feedback, please reach
|
|
|
72
72
|
|
|
73
73
|
* Report a bug or request a feature on [Github](https://github.com/opendp/opendp/issues).
|
|
74
74
|
* Send general queries to [info@opendp.org](mailto:info@opendp.org), or email [security@opendp.org](mailto:security@opendp.org) if it is related to security.
|
|
75
|
-
* Join the conversation on [Slack](https://join.slack.com/t/opendp/shared_invite/zt-
|
|
76
|
-
* Office hours are M/T/Th at 11am Eastern on [Zoom](https://harvard.zoom.us/j/98058847683).
|
|
75
|
+
* Join the conversation on [Slack](https://join.slack.com/t/opendp/shared_invite/zt-1t8rrbqhd-z8LiZiP06vVE422HJd6ciQ), or the [mailing list](https://groups.google.com/a/g.harvard.edu/g/opendp-community).
|
|
77
76
|
|
|
78
77
|
## Contributing
|
|
79
78
|
|
|
@@ -290,7 +290,7 @@ def _new_pure_function(
|
|
|
290
290
|
|
|
291
291
|
Required features: `contrib`
|
|
292
292
|
|
|
293
|
-
[_new_pure_function in Rust documentation.](https://docs.rs/opendp/0.14.1-nightly.
|
|
293
|
+
[_new_pure_function in Rust documentation.](https://docs.rs/opendp/0.14.1-nightly.20260130.1/opendp/internal/fn._new_pure_function.html)
|
|
294
294
|
|
|
295
295
|
.. end-markdown
|
|
296
296
|
|
|
@@ -38,7 +38,7 @@ def accuracy_to_discrete_gaussian_scale(
|
|
|
38
38
|
):
|
|
39
39
|
r"""Convert a desired `accuracy` (tolerance) into a discrete gaussian noise scale at a statistical significance level `alpha`.
|
|
40
40
|
|
|
41
|
-
[accuracy_to_discrete_gaussian_scale in Rust documentation.](https://docs.rs/opendp/0.14.1-nightly.
|
|
41
|
+
[accuracy_to_discrete_gaussian_scale in Rust documentation.](https://docs.rs/opendp/0.14.1-nightly.20260130.1/opendp/accuracy/fn.accuracy_to_discrete_gaussian_scale.html)
|
|
42
42
|
|
|
43
43
|
**Proof Definition:**
|
|
44
44
|
|
|
@@ -88,7 +88,7 @@ def accuracy_to_discrete_laplacian_scale(
|
|
|
88
88
|
):
|
|
89
89
|
r"""Convert a desired `accuracy` (tolerance) into a discrete Laplacian noise scale at a statistical significance level `alpha`.
|
|
90
90
|
|
|
91
|
-
[accuracy_to_discrete_laplacian_scale in Rust documentation.](https://docs.rs/opendp/0.14.1-nightly.
|
|
91
|
+
[accuracy_to_discrete_laplacian_scale in Rust documentation.](https://docs.rs/opendp/0.14.1-nightly.20260130.1/opendp/accuracy/fn.accuracy_to_discrete_laplacian_scale.html)
|
|
92
92
|
|
|
93
93
|
**Proof Definition:**
|
|
94
94
|
|
|
@@ -139,7 +139,7 @@ def accuracy_to_gaussian_scale(
|
|
|
139
139
|
):
|
|
140
140
|
r"""Convert a desired `accuracy` (tolerance) into a gaussian noise scale at a statistical significance level `alpha`.
|
|
141
141
|
|
|
142
|
-
[accuracy_to_gaussian_scale in Rust documentation.](https://docs.rs/opendp/0.14.1-nightly.
|
|
142
|
+
[accuracy_to_gaussian_scale in Rust documentation.](https://docs.rs/opendp/0.14.1-nightly.20260130.1/opendp/accuracy/fn.accuracy_to_gaussian_scale.html)
|
|
143
143
|
|
|
144
144
|
.. end-markdown
|
|
145
145
|
|
|
@@ -185,7 +185,7 @@ def accuracy_to_laplacian_scale(
|
|
|
185
185
|
):
|
|
186
186
|
r"""Convert a desired `accuracy` (tolerance) into a Laplacian noise scale at a statistical significance level `alpha`.
|
|
187
187
|
|
|
188
|
-
[accuracy_to_laplacian_scale in Rust documentation.](https://docs.rs/opendp/0.14.1-nightly.
|
|
188
|
+
[accuracy_to_laplacian_scale in Rust documentation.](https://docs.rs/opendp/0.14.1-nightly.20260130.1/opendp/accuracy/fn.accuracy_to_laplacian_scale.html)
|
|
189
189
|
|
|
190
190
|
.. end-markdown
|
|
191
191
|
|
|
@@ -232,7 +232,7 @@ def discrete_gaussian_scale_to_accuracy(
|
|
|
232
232
|
):
|
|
233
233
|
r"""Convert a discrete gaussian scale into an accuracy estimate (tolerance) at a statistical significance level `alpha`.
|
|
234
234
|
|
|
235
|
-
[discrete_gaussian_scale_to_accuracy in Rust documentation.](https://docs.rs/opendp/0.14.1-nightly.
|
|
235
|
+
[discrete_gaussian_scale_to_accuracy in Rust documentation.](https://docs.rs/opendp/0.14.1-nightly.20260130.1/opendp/accuracy/fn.discrete_gaussian_scale_to_accuracy.html)
|
|
236
236
|
|
|
237
237
|
**Proof Definition:**
|
|
238
238
|
|
|
@@ -288,7 +288,7 @@ def discrete_laplacian_scale_to_accuracy(
|
|
|
288
288
|
This function returns a float accuracy.
|
|
289
289
|
You can take the floor without affecting the coverage probability.
|
|
290
290
|
|
|
291
|
-
[discrete_laplacian_scale_to_accuracy in Rust documentation.](https://docs.rs/opendp/0.14.1-nightly.
|
|
291
|
+
[discrete_laplacian_scale_to_accuracy in Rust documentation.](https://docs.rs/opendp/0.14.1-nightly.20260130.1/opendp/accuracy/fn.discrete_laplacian_scale_to_accuracy.html)
|
|
292
292
|
|
|
293
293
|
**Proof Definition:**
|
|
294
294
|
|
|
@@ -338,7 +338,7 @@ def gaussian_scale_to_accuracy(
|
|
|
338
338
|
):
|
|
339
339
|
r"""Convert a gaussian scale into an accuracy estimate (tolerance) at a statistical significance level `alpha`.
|
|
340
340
|
|
|
341
|
-
[gaussian_scale_to_accuracy in Rust documentation.](https://docs.rs/opendp/0.14.1-nightly.
|
|
341
|
+
[gaussian_scale_to_accuracy in Rust documentation.](https://docs.rs/opendp/0.14.1-nightly.20260130.1/opendp/accuracy/fn.gaussian_scale_to_accuracy.html)
|
|
342
342
|
|
|
343
343
|
.. end-markdown
|
|
344
344
|
|
|
@@ -384,7 +384,7 @@ def laplacian_scale_to_accuracy(
|
|
|
384
384
|
):
|
|
385
385
|
r"""Convert a Laplacian scale into an accuracy estimate (tolerance) at a statistical significance level `alpha`.
|
|
386
386
|
|
|
387
|
-
[laplacian_scale_to_accuracy in Rust documentation.](https://docs.rs/opendp/0.14.1-nightly.
|
|
387
|
+
[laplacian_scale_to_accuracy in Rust documentation.](https://docs.rs/opendp/0.14.1-nightly.20260130.1/opendp/accuracy/fn.laplacian_scale_to_accuracy.html)
|
|
388
388
|
|
|
389
389
|
.. end-markdown
|
|
390
390
|
|
|
@@ -447,51 +447,51 @@ def summarize_polars_measurement(
|
|
|
447
447
|
|
|
448
448
|
:example:
|
|
449
449
|
|
|
450
|
-
|
|
451
|
-
|
|
452
|
-
|
|
453
|
-
|
|
454
|
-
|
|
455
|
-
|
|
456
|
-
|
|
457
|
-
|
|
458
|
-
|
|
459
|
-
|
|
460
|
-
|
|
461
|
-
|
|
462
|
-
|
|
463
|
-
|
|
464
|
-
|
|
465
|
-
|
|
466
|
-
|
|
467
|
-
|
|
468
|
-
|
|
469
|
-
|
|
470
|
-
|
|
471
|
-
|
|
472
|
-
|
|
473
|
-
|
|
474
|
-
|
|
475
|
-
|
|
476
|
-
|
|
477
|
-
|
|
478
|
-
|
|
479
|
-
|
|
480
|
-
|
|
481
|
-
|
|
482
|
-
|
|
483
|
-
|
|
484
|
-
|
|
485
|
-
|
|
486
|
-
|
|
487
|
-
|
|
488
|
-
|
|
489
|
-
|
|
490
|
-
|
|
491
|
-
|
|
492
|
-
|
|
493
|
-
|
|
494
|
-
|
|
450
|
+
First, create a measurement with the Polars API:
|
|
451
|
+
|
|
452
|
+
>>> import opendp.prelude as dp
|
|
453
|
+
>>> import polars as pl
|
|
454
|
+
>>> dp.enable_features("contrib")
|
|
455
|
+
...
|
|
456
|
+
>>> lf = pl.LazyFrame(schema={"A": pl.Int32, "B": pl.String})
|
|
457
|
+
>>> lf_domain = dp.lazyframe_domain([
|
|
458
|
+
... dp.series_domain("A", dp.atom_domain(T="i32")),
|
|
459
|
+
... dp.series_domain("B", dp.atom_domain(T=str))
|
|
460
|
+
... ])
|
|
461
|
+
>>> lf_domain = dp.with_margin(lf_domain, dp.polars.Margin(by=[], max_length=1000))
|
|
462
|
+
>>> meas = dp.m.make_private_lazyframe(
|
|
463
|
+
... lf_domain,
|
|
464
|
+
... dp.symmetric_distance(),
|
|
465
|
+
... dp.max_divergence(),
|
|
466
|
+
... lf.select([dp.len(), pl.col("A").dp.sum((0, 1))]),
|
|
467
|
+
... global_scale=1.0
|
|
468
|
+
... )
|
|
469
|
+
|
|
470
|
+
This function extracts utility information about each aggregate in the resulting data frame:
|
|
471
|
+
|
|
472
|
+
>>> dp.summarize_polars_measurement(meas)
|
|
473
|
+
shape: (2, 4)
|
|
474
|
+
┌────────┬──────────────┬─────────────────┬───────┐
|
|
475
|
+
│ column ┆ aggregate ┆ distribution ┆ scale │
|
|
476
|
+
│ --- ┆ --- ┆ --- ┆ --- │
|
|
477
|
+
│ str ┆ str ┆ str ┆ f64 │
|
|
478
|
+
╞════════╪══════════════╪═════════════════╪═══════╡
|
|
479
|
+
│ len ┆ Frame Length ┆ Integer Laplace ┆ 1.0 │
|
|
480
|
+
│ A ┆ Sum ┆ Integer Laplace ┆ 1.0 │
|
|
481
|
+
└────────┴──────────────┴─────────────────┴───────┘
|
|
482
|
+
|
|
483
|
+
If you pass an alpha argument, then you also get accuracy estimates:
|
|
484
|
+
|
|
485
|
+
>>> dp.summarize_polars_measurement(meas, alpha=.05)
|
|
486
|
+
shape: (2, 5)
|
|
487
|
+
┌────────┬──────────────┬─────────────────┬───────┬──────────┐
|
|
488
|
+
│ column ┆ aggregate ┆ distribution ┆ scale ┆ accuracy │
|
|
489
|
+
│ --- ┆ --- ┆ --- ┆ --- ┆ --- │
|
|
490
|
+
│ str ┆ str ┆ str ┆ f64 ┆ f64 │
|
|
491
|
+
╞════════╪══════════════╪═════════════════╪═══════╪══════════╡
|
|
492
|
+
│ len ┆ Frame Length ┆ Integer Laplace ┆ 1.0 ┆ 3.375618 │
|
|
493
|
+
│ A ┆ Sum ┆ Integer Laplace ┆ 1.0 ┆ 3.375618 │
|
|
494
|
+
└────────┴──────────────┴─────────────────┴───────┴──────────┘
|
|
495
495
|
|
|
496
496
|
|
|
497
497
|
"""
|
|
@@ -70,7 +70,7 @@ def make_adaptive_composition(
|
|
|
70
70
|
|
|
71
71
|
Required features: `contrib`
|
|
72
72
|
|
|
73
|
-
[make_adaptive_composition in Rust documentation.](https://docs.rs/opendp/0.14.1-nightly.
|
|
73
|
+
[make_adaptive_composition in Rust documentation.](https://docs.rs/opendp/0.14.1-nightly.20260130.1/opendp/combinators/fn.make_adaptive_composition.html)
|
|
74
74
|
|
|
75
75
|
**Supporting Elements:**
|
|
76
76
|
|
|
@@ -128,12 +128,12 @@ def then_adaptive_composition(
|
|
|
128
128
|
d_in,
|
|
129
129
|
d_mids
|
|
130
130
|
):
|
|
131
|
-
r"""
|
|
131
|
+
r"""Partial constructor of `make_adaptive_composition`.
|
|
132
132
|
|
|
133
133
|
.. end-markdown
|
|
134
134
|
|
|
135
135
|
.. seealso::
|
|
136
|
-
Delays application of ``input_domain`` and ``input_metric`` in :py:func
|
|
136
|
+
Delays application of ``input_domain`` and ``input_metric`` in :py:func:`~opendp.combinators.make_adaptive_composition`
|
|
137
137
|
|
|
138
138
|
:param output_measure: how privacy is measured
|
|
139
139
|
:type output_measure: Measure
|
|
@@ -166,7 +166,7 @@ def make_approximate(
|
|
|
166
166
|
|
|
167
167
|
Required features: `contrib`
|
|
168
168
|
|
|
169
|
-
[make_approximate in Rust documentation.](https://docs.rs/opendp/0.14.1-nightly.
|
|
169
|
+
[make_approximate in Rust documentation.](https://docs.rs/opendp/0.14.1-nightly.20260130.1/opendp/combinators/fn.make_approximate.html)
|
|
170
170
|
|
|
171
171
|
.. end-markdown
|
|
172
172
|
|
|
@@ -201,7 +201,7 @@ def make_approximate(
|
|
|
201
201
|
return output
|
|
202
202
|
|
|
203
203
|
|
|
204
|
-
@deprecated(version="0.14.0", reason="This function has been renamed
|
|
204
|
+
@deprecated(version="0.14.0", reason="This function has been renamed: use :py:func:`~opendp.combinators.make_composition` instead.")
|
|
205
205
|
def make_basic_composition(
|
|
206
206
|
measurements
|
|
207
207
|
) -> Measurement:
|
|
@@ -262,7 +262,7 @@ def make_chain_mt(
|
|
|
262
262
|
|
|
263
263
|
Required features: `contrib`
|
|
264
264
|
|
|
265
|
-
[make_chain_mt in Rust documentation.](https://docs.rs/opendp/0.14.1-nightly.
|
|
265
|
+
[make_chain_mt in Rust documentation.](https://docs.rs/opendp/0.14.1-nightly.20260130.1/opendp/combinators/fn.make_chain_mt.html)
|
|
266
266
|
|
|
267
267
|
.. end-markdown
|
|
268
268
|
|
|
@@ -311,7 +311,7 @@ def make_chain_pm(
|
|
|
311
311
|
|
|
312
312
|
Required features: `contrib`
|
|
313
313
|
|
|
314
|
-
[make_chain_pm in Rust documentation.](https://docs.rs/opendp/0.14.1-nightly.
|
|
314
|
+
[make_chain_pm in Rust documentation.](https://docs.rs/opendp/0.14.1-nightly.20260130.1/opendp/combinators/fn.make_chain_pm.html)
|
|
315
315
|
|
|
316
316
|
.. end-markdown
|
|
317
317
|
|
|
@@ -359,7 +359,7 @@ def make_chain_tt(
|
|
|
359
359
|
|
|
360
360
|
Required features: `contrib`
|
|
361
361
|
|
|
362
|
-
[make_chain_tt in Rust documentation.](https://docs.rs/opendp/0.14.1-nightly.
|
|
362
|
+
[make_chain_tt in Rust documentation.](https://docs.rs/opendp/0.14.1-nightly.20260130.1/opendp/combinators/fn.make_chain_tt.html)
|
|
363
363
|
|
|
364
364
|
.. end-markdown
|
|
365
365
|
|
|
@@ -456,7 +456,7 @@ def make_fix_delta(
|
|
|
456
456
|
|
|
457
457
|
Required features: `contrib`
|
|
458
458
|
|
|
459
|
-
[make_fix_delta in Rust documentation.](https://docs.rs/opendp/0.14.1-nightly.
|
|
459
|
+
[make_fix_delta in Rust documentation.](https://docs.rs/opendp/0.14.1-nightly.20260130.1/opendp/combinators/fn.make_fix_delta.html)
|
|
460
460
|
|
|
461
461
|
.. end-markdown
|
|
462
462
|
|
|
@@ -503,7 +503,7 @@ def make_fixed_approxDP_to_approxDP(
|
|
|
503
503
|
|
|
504
504
|
Required features: `contrib`
|
|
505
505
|
|
|
506
|
-
[make_fixed_approxDP_to_approxDP in Rust documentation.](https://docs.rs/opendp/0.14.1-nightly.
|
|
506
|
+
[make_fixed_approxDP_to_approxDP in Rust documentation.](https://docs.rs/opendp/0.14.1-nightly.20260130.1/opendp/combinators/fn.make_fixed_approxDP_to_approxDP.html)
|
|
507
507
|
|
|
508
508
|
.. end-markdown
|
|
509
509
|
|
|
@@ -548,7 +548,7 @@ def make_fully_adaptive_composition(
|
|
|
548
548
|
|
|
549
549
|
Required features: `contrib`
|
|
550
550
|
|
|
551
|
-
[make_fully_adaptive_composition in Rust documentation.](https://docs.rs/opendp/0.14.1-nightly.
|
|
551
|
+
[make_fully_adaptive_composition in Rust documentation.](https://docs.rs/opendp/0.14.1-nightly.20260130.1/opendp/combinators/fn.make_fully_adaptive_composition.html)
|
|
552
552
|
|
|
553
553
|
**Supporting Elements:**
|
|
554
554
|
|
|
@@ -603,12 +603,12 @@ def make_fully_adaptive_composition(
|
|
|
603
603
|
def then_fully_adaptive_composition(
|
|
604
604
|
output_measure: Measure
|
|
605
605
|
):
|
|
606
|
-
r"""
|
|
606
|
+
r"""Partial constructor of `make_fully_adaptive_composition`.
|
|
607
607
|
|
|
608
608
|
.. end-markdown
|
|
609
609
|
|
|
610
610
|
.. seealso::
|
|
611
|
-
Delays application of ``input_domain`` and ``input_metric`` in :py:func
|
|
611
|
+
Delays application of ``input_domain`` and ``input_metric`` in :py:func:`~opendp.combinators.make_fully_adaptive_composition`
|
|
612
612
|
|
|
613
613
|
:param output_measure: how privacy is measured
|
|
614
614
|
:type output_measure: Measure
|
|
@@ -641,7 +641,7 @@ def make_population_amplification(
|
|
|
641
641
|
|
|
642
642
|
Required features: `contrib`, `honest-but-curious`
|
|
643
643
|
|
|
644
|
-
[make_population_amplification in Rust documentation.](https://docs.rs/opendp/0.14.1-nightly.
|
|
644
|
+
[make_population_amplification in Rust documentation.](https://docs.rs/opendp/0.14.1-nightly.20260130.1/opendp/combinators/fn.make_population_amplification.html)
|
|
645
645
|
|
|
646
646
|
**Why honest-but-curious?:**
|
|
647
647
|
|
|
@@ -697,7 +697,7 @@ def make_privacy_filter(
|
|
|
697
697
|
|
|
698
698
|
Required features: `contrib`
|
|
699
699
|
|
|
700
|
-
[make_privacy_filter in Rust documentation.](https://docs.rs/opendp/0.14.1-nightly.
|
|
700
|
+
[make_privacy_filter in Rust documentation.](https://docs.rs/opendp/0.14.1-nightly.20260130.1/opendp/combinators/fn.make_privacy_filter.html)
|
|
701
701
|
|
|
702
702
|
**Supporting Elements:**
|
|
703
703
|
|
|
@@ -756,7 +756,7 @@ def make_pureDP_to_zCDP(
|
|
|
756
756
|
|
|
757
757
|
Required features: `contrib`
|
|
758
758
|
|
|
759
|
-
[make_pureDP_to_zCDP in Rust documentation.](https://docs.rs/opendp/0.14.1-nightly.
|
|
759
|
+
[make_pureDP_to_zCDP in Rust documentation.](https://docs.rs/opendp/0.14.1-nightly.20260130.1/opendp/combinators/fn.make_pureDP_to_zCDP.html)
|
|
760
760
|
|
|
761
761
|
**Citations:**
|
|
762
762
|
|
|
@@ -819,7 +819,7 @@ def make_select_private_candidate(
|
|
|
819
819
|
|
|
820
820
|
Required features: `contrib`
|
|
821
821
|
|
|
822
|
-
[make_select_private_candidate in Rust documentation.](https://docs.rs/opendp/0.14.1-nightly.
|
|
822
|
+
[make_select_private_candidate in Rust documentation.](https://docs.rs/opendp/0.14.1-nightly.20260130.1/opendp/combinators/fn.make_select_private_candidate.html)
|
|
823
823
|
|
|
824
824
|
**Supporting Elements:**
|
|
825
825
|
|
|
@@ -847,31 +847,31 @@ def make_select_private_candidate(
|
|
|
847
847
|
|
|
848
848
|
:example:
|
|
849
849
|
|
|
850
|
-
|
|
851
|
-
|
|
852
|
-
|
|
853
|
-
|
|
854
|
-
|
|
855
|
-
|
|
856
|
-
|
|
857
|
-
|
|
858
|
-
|
|
859
|
-
|
|
860
|
-
|
|
861
|
-
|
|
862
|
-
|
|
863
|
-
|
|
864
|
-
|
|
865
|
-
|
|
866
|
-
|
|
867
|
-
|
|
868
|
-
|
|
869
|
-
|
|
870
|
-
|
|
871
|
-
|
|
872
|
-
|
|
873
|
-
|
|
874
|
-
|
|
850
|
+
>>> import opendp.prelude as dp
|
|
851
|
+
>>> dp.enable_features("contrib")
|
|
852
|
+
>>> threshold = 23
|
|
853
|
+
>>> space = dp.atom_domain(T=float, nan=False), dp.absolute_distance(T=float)
|
|
854
|
+
...
|
|
855
|
+
>>> # For demonstration purposes-- construct a measurement that releases
|
|
856
|
+
>>> # a tuple with a differentially private score and value.
|
|
857
|
+
>>> # The tuple released must satisfy the privacy guarantee from the map.
|
|
858
|
+
>>> import numpy as np
|
|
859
|
+
>>> m_mock = space >> dp.m.then_user_measurement(
|
|
860
|
+
... dp.max_divergence(),
|
|
861
|
+
... lambda x: (np.random.laplace(loc=x), "arbitrary candidate"),
|
|
862
|
+
... lambda d_in: d_in,
|
|
863
|
+
... TO="(f64, ExtrinsicObject)"
|
|
864
|
+
... )
|
|
865
|
+
...
|
|
866
|
+
>>> m_private_selection = dp.c.make_select_private_candidate(
|
|
867
|
+
... m_mock, threshold=threshold, stop_probability=0
|
|
868
|
+
... )
|
|
869
|
+
...
|
|
870
|
+
>>> score, candidate = m_private_selection(20)
|
|
871
|
+
...
|
|
872
|
+
>>> assert score >= threshold
|
|
873
|
+
>>> assert m_private_selection.map(1) == 2 * m_mock.map(1)
|
|
874
|
+
>>> assert isinstance(candidate, str)
|
|
875
875
|
|
|
876
876
|
|
|
877
877
|
"""
|
|
@@ -902,7 +902,7 @@ def make_select_private_candidate(
|
|
|
902
902
|
return output
|
|
903
903
|
|
|
904
904
|
|
|
905
|
-
@deprecated(version="0.14.0", reason="This function has been renamed
|
|
905
|
+
@deprecated(version="0.14.0", reason="This function has been renamed: use :py:func:`~opendp.combinators.make_adaptive_composition` instead.")
|
|
906
906
|
def make_sequential_composition(
|
|
907
907
|
input_domain: Domain,
|
|
908
908
|
input_metric: Metric,
|
|
@@ -927,7 +927,7 @@ def make_sequential_composition(
|
|
|
927
927
|
|
|
928
928
|
Required features: `contrib`
|
|
929
929
|
|
|
930
|
-
[make_sequential_composition in Rust documentation.](https://docs.rs/opendp/0.14.1-nightly.
|
|
930
|
+
[make_sequential_composition in Rust documentation.](https://docs.rs/opendp/0.14.1-nightly.20260130.1/opendp/combinators/fn.make_sequential_composition.html)
|
|
931
931
|
|
|
932
932
|
**Supporting Elements:**
|
|
933
933
|
|
|
@@ -985,12 +985,12 @@ def then_sequential_composition(
|
|
|
985
985
|
d_in,
|
|
986
986
|
d_mids
|
|
987
987
|
):
|
|
988
|
-
r"""
|
|
988
|
+
r"""Partial constructor of `make_sequential_composition`.
|
|
989
989
|
|
|
990
990
|
.. end-markdown
|
|
991
991
|
|
|
992
992
|
.. seealso::
|
|
993
|
-
Delays application of ``input_domain`` and ``input_metric`` in :py:func
|
|
993
|
+
Delays application of ``input_domain`` and ``input_metric`` in :py:func:`~opendp.combinators.make_sequential_composition`
|
|
994
994
|
|
|
995
995
|
:param output_measure: how privacy is measured
|
|
996
996
|
:type output_measure: Measure
|
|
@@ -1023,7 +1023,7 @@ def make_zCDP_to_approxDP(
|
|
|
1023
1023
|
|
|
1024
1024
|
Required features: `contrib`
|
|
1025
1025
|
|
|
1026
|
-
[make_zCDP_to_approxDP in Rust documentation.](https://docs.rs/opendp/0.14.1-nightly.
|
|
1026
|
+
[make_zCDP_to_approxDP in Rust documentation.](https://docs.rs/opendp/0.14.1-nightly.20260130.1/opendp/combinators/fn.make_zCDP_to_approxDP.html)
|
|
1027
1027
|
|
|
1028
1028
|
.. end-markdown
|
|
1029
1029
|
|
|
@@ -668,7 +668,7 @@ def new_function(
|
|
|
668
668
|
|
|
669
669
|
Required features: `contrib`, `honest-but-curious`
|
|
670
670
|
|
|
671
|
-
[new_function in Rust documentation.](https://docs.rs/opendp/0.14.1-nightly.
|
|
671
|
+
[new_function in Rust documentation.](https://docs.rs/opendp/0.14.1-nightly.20260130.1/opendp/core/struct.Function.html)
|
|
672
672
|
|
|
673
673
|
**Why honest-but-curious?:**
|
|
674
674
|
|
|
@@ -60,7 +60,7 @@ def _atom_domain_get_bounds_closed(
|
|
|
60
60
|
):
|
|
61
61
|
r"""Retrieve bounds from an AtomDomain<T>
|
|
62
62
|
|
|
63
|
-
[_atom_domain_get_bounds_closed in Rust documentation.](https://docs.rs/opendp/0.14.1-nightly.
|
|
63
|
+
[_atom_domain_get_bounds_closed in Rust documentation.](https://docs.rs/opendp/0.14.1-nightly.20260130.1/opendp/domains/fn._atom_domain_get_bounds_closed.html)
|
|
64
64
|
|
|
65
65
|
.. end-markdown
|
|
66
66
|
|
|
@@ -98,7 +98,7 @@ def _atom_domain_nan(
|
|
|
98
98
|
):
|
|
99
99
|
r"""Retrieve whether members of AtomDomain<T> may be NaN.
|
|
100
100
|
|
|
101
|
-
[_atom_domain_nan in Rust documentation.](https://docs.rs/opendp/0.14.1-nightly.
|
|
101
|
+
[_atom_domain_nan in Rust documentation.](https://docs.rs/opendp/0.14.1-nightly.20260130.1/opendp/domains/fn._atom_domain_nan.html)
|
|
102
102
|
|
|
103
103
|
.. end-markdown
|
|
104
104
|
|
|
@@ -365,7 +365,7 @@ def _lazyframe_from_domain(
|
|
|
365
365
|
|
|
366
366
|
This is useful for creating a dummy lazyframe used to write a query plan.
|
|
367
367
|
|
|
368
|
-
[_lazyframe_from_domain in Rust documentation.](https://docs.rs/opendp/0.14.1-nightly.
|
|
368
|
+
[_lazyframe_from_domain in Rust documentation.](https://docs.rs/opendp/0.14.1-nightly.20260130.1/opendp/domains/fn._lazyframe_from_domain.html)
|
|
369
369
|
|
|
370
370
|
.. end-markdown
|
|
371
371
|
|
|
@@ -478,7 +478,7 @@ def _series_domain_get_element_domain(
|
|
|
478
478
|
) -> Domain:
|
|
479
479
|
r"""Retrieve the element domain of the series domain.
|
|
480
480
|
|
|
481
|
-
[_series_domain_get_element_domain in Rust documentation.](https://docs.rs/opendp/0.14.1-nightly.
|
|
481
|
+
[_series_domain_get_element_domain in Rust documentation.](https://docs.rs/opendp/0.14.1-nightly.20260130.1/opendp/domains/fn._series_domain_get_element_domain.html)
|
|
482
482
|
|
|
483
483
|
.. end-markdown
|
|
484
484
|
|
|
@@ -706,7 +706,7 @@ def atom_domain(
|
|
|
706
706
|
The domain defaults to unbounded if `bounds` is `None`,
|
|
707
707
|
If `T` is float, `nan` defaults to `true`.
|
|
708
708
|
|
|
709
|
-
[atom_domain in Rust documentation.](https://docs.rs/opendp/0.14.1-nightly.
|
|
709
|
+
[atom_domain in Rust documentation.](https://docs.rs/opendp/0.14.1-nightly.20260130.1/opendp/domains/struct.AtomDomain.html)
|
|
710
710
|
|
|
711
711
|
.. end-markdown
|
|
712
712
|
|
|
@@ -720,8 +720,8 @@ def atom_domain(
|
|
|
720
720
|
|
|
721
721
|
:example:
|
|
722
722
|
|
|
723
|
-
|
|
724
|
-
|
|
723
|
+
>>> dp.atom_domain(T=float, nan=False)
|
|
724
|
+
AtomDomain(T=f64)
|
|
725
725
|
|
|
726
726
|
"""
|
|
727
727
|
# Standardize type arguments.
|
|
@@ -830,7 +830,7 @@ def datetime_domain(
|
|
|
830
830
|
|
|
831
831
|
Documentation on valid time zones can be found [in the Polars documentation](https://docs.pola.rs/user-guide/transformations/time-series/timezones/).
|
|
832
832
|
|
|
833
|
-
[datetime_domain in Rust documentation.](https://docs.rs/opendp/0.14.1-nightly.
|
|
833
|
+
[datetime_domain in Rust documentation.](https://docs.rs/opendp/0.14.1-nightly.20260130.1/opendp/domains/struct.DatetimeDomain.html)
|
|
834
834
|
|
|
835
835
|
.. end-markdown
|
|
836
836
|
|
|
@@ -1091,7 +1091,7 @@ def option_domain(
|
|
|
1091
1091
|
) -> OptionDomain:
|
|
1092
1092
|
r"""Construct an instance of `OptionDomain`.
|
|
1093
1093
|
|
|
1094
|
-
[option_domain in Rust documentation.](https://docs.rs/opendp/0.14.1-nightly.
|
|
1094
|
+
[option_domain in Rust documentation.](https://docs.rs/opendp/0.14.1-nightly.20260130.1/opendp/domains/struct.OptionDomain.html)
|
|
1095
1095
|
|
|
1096
1096
|
.. end-markdown
|
|
1097
1097
|
|
|
@@ -1135,7 +1135,7 @@ def series_domain(
|
|
|
1135
1135
|
) -> SeriesDomain:
|
|
1136
1136
|
r"""Construct an instance of `SeriesDomain`.
|
|
1137
1137
|
|
|
1138
|
-
[series_domain in Rust documentation.](https://docs.rs/opendp/0.14.1-nightly.
|
|
1138
|
+
[series_domain in Rust documentation.](https://docs.rs/opendp/0.14.1-nightly.20260130.1/opendp/domains/struct.SeriesDomain.html)
|
|
1139
1139
|
|
|
1140
1140
|
.. end-markdown
|
|
1141
1141
|
|
{opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/extras/mbi/_table/__init__.py
RENAMED
|
@@ -153,7 +153,7 @@ class ContingencyTable:
|
|
|
153
153
|
Under the central limit theorem, the distribution will tend towards gaussian.
|
|
154
154
|
|
|
155
155
|
If the estimate is gaussian-distributed,
|
|
156
|
-
use :py:func
|
|
156
|
+
use :py:func:`~opendp.accuracy.gaussian_scale_to_accuracy`
|
|
157
157
|
to construct a confidence interval.
|
|
158
158
|
|
|
159
159
|
:param attrs: attributes to preserve in uncertainty estimate
|
{opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/extras/mbi/_utilities/__init__.py
RENAMED
|
@@ -81,7 +81,7 @@ class Algorithm(ABC):
|
|
|
81
81
|
estimator: Callable = mirror_descent
|
|
82
82
|
"""Optimizer to use to fit a MarkovRandomField.
|
|
83
83
|
|
|
84
|
-
Defaults to :py:func
|
|
84
|
+
Defaults to :py:func:`~opendp.extras.mbi.mirror_descent`.
|
|
85
85
|
Any function matching the signature of ``mirror_descent``
|
|
86
86
|
can be used to customize how the MarkovRandomField is optimized/estimated.
|
|
87
87
|
See `mbi.estimation <https://private-pgm.readthedocs.io/en/latest/_autosummary_output/mbi.estimation.html>`_ for other optimizers.
|
{opendp-0.14.1a20251030001 → opendp-0.14.1a20260130001}/src/opendp/extras/numpy/canonical.py
RENAMED
|
@@ -23,7 +23,7 @@ class BinomialCND:
|
|
|
23
23
|
"""
|
|
24
24
|
Utilities to conduct statistical inference on the output of the canonical noise mechanism on binomially-distributed data.
|
|
25
25
|
|
|
26
|
-
Use :func
|
|
26
|
+
Use :func:`~opendp.measurements.make_canonical_noise` to instantiate the canonical noise mechanism.
|
|
27
27
|
|
|
28
28
|
The mechanism outputs a sample from X + N,
|
|
29
29
|
where X ~ Binomial(n=size, p=theta), N ~ CND(0, d_in, d_out).
|