opendp 0.14.1a20251029001__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.
Files changed (724) hide show
  1. {opendp-0.14.1a20251029001/src/opendp.egg-info → opendp-0.14.1a20260130001}/PKG-INFO +3 -4
  2. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/README.md +2 -3
  3. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/setup.cfg +1 -1
  4. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/_internal.py +1 -1
  5. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/accuracy.py +53 -53
  6. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/combinators.py +47 -47
  7. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/core.py +1 -1
  8. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/domains.py +10 -10
  9. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/extras/mbi/_table/__init__.py +1 -1
  10. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/extras/mbi/_utilities/__init__.py +1 -1
  11. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/extras/numpy/canonical.py +1 -1
  12. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/extras/polars/__init__.py +15 -15
  13. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/extras/sklearn/decomposition/__init__.py +2 -2
  14. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/measurements.py +201 -386
  15. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/measures.py +13 -13
  16. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/metrics.py +6 -6
  17. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/mod.py +8 -8
  18. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/Cargo.toml +4 -4
  19. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/opendp_derive/Cargo.toml +1 -1
  20. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/opendp_tooling/src/codegen/python.rs +9 -12
  21. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/combinators/sequential_composition/adaptive/mod.rs +1 -1
  22. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/combinators/sequential_composition/non_adaptive/ffi.rs +1 -1
  23. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/combinators/sequential_composition/non_adaptive/mod.rs +1 -1
  24. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/core/mod.rs +10 -0
  25. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/lib.rs +1 -1
  26. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/measurements/noisy_max/mod.rs +4 -1
  27. opendp-0.14.1a20260130001/src/opendp/rust/src/traits/samplers/cks20/pseudocode/sample_bernoulli_exp.py +8 -0
  28. opendp-0.14.1a20260130001/src/opendp/rust/src/traits/samplers/cks20/pseudocode/sample_discrete_gaussian.py +17 -0
  29. opendp-0.14.1a20260130001/src/opendp/rust/src/traits/samplers/cks20/pseudocode/sample_geometric_exp_slow.py +8 -0
  30. opendp-0.14.1a20260130001/src/opendp/rust/src/traits/samplers/cks20/sample_bernoulli_exp.tex +79 -0
  31. opendp-0.14.1a20260130001/src/opendp/rust/src/traits/samplers/cks20/sample_discrete_gaussian.tex +114 -0
  32. opendp-0.14.1a20260130001/src/opendp/rust/src/traits/samplers/cks20/sample_geometric_exp_slow.tex +91 -0
  33. opendp-0.14.1a20260130001/src/opendp/rust/src/transformations/count/make_count.tex +108 -0
  34. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/transformations/count/mod.rs +4 -11
  35. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/transformations/count/pseudocode/make_count.py +4 -4
  36. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/transformations/dataframe/apply/mod.rs +3 -3
  37. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/transformations/dataframe/create/mod.rs +2 -2
  38. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/transformations/dataframe/select/mod.rs +1 -1
  39. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/transformations/dataframe/subset/mod.rs +1 -1
  40. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/transformations.py +126 -126
  41. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001/src/opendp.egg-info}/PKG-INFO +3 -4
  42. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/test/test_docs.py +20 -1
  43. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/test/test_trans.py +1 -1
  44. opendp-0.14.1a20251029001/src/opendp/rust/src/traits/samplers/cks20/pseudocode/sample_bernoulli_exp.py +0 -8
  45. opendp-0.14.1a20251029001/src/opendp/rust/src/traits/samplers/cks20/pseudocode/sample_discrete_gaussian.py +0 -14
  46. opendp-0.14.1a20251029001/src/opendp/rust/src/traits/samplers/cks20/pseudocode/sample_geometric_exp_slow.py +0 -8
  47. opendp-0.14.1a20251029001/src/opendp/rust/src/traits/samplers/cks20/sample_bernoulli_exp.tex +0 -80
  48. opendp-0.14.1a20251029001/src/opendp/rust/src/traits/samplers/cks20/sample_discrete_gaussian.tex +0 -112
  49. opendp-0.14.1a20251029001/src/opendp/rust/src/traits/samplers/cks20/sample_geometric_exp_slow.tex +0 -68
  50. opendp-0.14.1a20251029001/src/opendp/rust/src/transformations/count/make_count.tex +0 -125
  51. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/LICENSE +0 -0
  52. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/MANIFEST.in +0 -0
  53. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/pyproject.toml +0 -0
  54. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/setup.py +0 -0
  55. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/__init__.py +0 -0
  56. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/_convert.py +0 -0
  57. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/_data.py +0 -0
  58. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/_lib.py +0 -0
  59. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/context.py +0 -0
  60. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/extras/__init__.py +0 -0
  61. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/extras/_utilities.py +0 -0
  62. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/extras/examples/__init__.py +0 -0
  63. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/extras/mbi/__init__.py +0 -0
  64. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/extras/mbi/_aim/__init__.py +0 -0
  65. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/extras/mbi/_fixed/__init__.py +0 -0
  66. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/extras/mbi/_mst/__init__.py +0 -0
  67. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/extras/mbi/_sequential/__init__.py +0 -0
  68. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/extras/numpy/__init__.py +0 -0
  69. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/extras/numpy/_make_np_clamp/__init__.py +0 -0
  70. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/extras/numpy/_make_np_count/__init__.py +0 -0
  71. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/extras/numpy/_make_np_mean/__init__.py +0 -0
  72. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/extras/numpy/_make_np_sscp/__init__.py +0 -0
  73. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/extras/numpy/_make_np_sum/__init__.py +0 -0
  74. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/extras/polars/contingency_table.py +0 -0
  75. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/extras/sklearn/__init__.py +0 -0
  76. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/extras/sklearn/_make_eigendecomposition/__init__.py +0 -0
  77. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/extras/sklearn/_make_eigenvalues/__init__.py +0 -0
  78. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/extras/sklearn/_make_eigenvector/__init__.py +0 -0
  79. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/extras/sklearn/linear_model/__init__.py +0 -0
  80. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/extras/sklearn/linear_model/_make_private_theil_sen/__init__.py +0 -0
  81. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/prelude.py +0 -0
  82. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/py.typed +0 -0
  83. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/build/derive.rs +0 -0
  84. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/build/main.rs +0 -0
  85. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/katex.html +0 -0
  86. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/opendp_derive/src/full.rs +0 -0
  87. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/opendp_derive/src/lib.rs +0 -0
  88. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/opendp_tooling/Cargo.toml +0 -0
  89. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/opendp_tooling/src/bootstrap/arguments.rs +0 -0
  90. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/opendp_tooling/src/bootstrap/docstring.rs +0 -0
  91. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/opendp_tooling/src/bootstrap/mod.rs +0 -0
  92. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/opendp_tooling/src/bootstrap/partial.rs +0 -0
  93. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/opendp_tooling/src/bootstrap/signature.rs +0 -0
  94. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/opendp_tooling/src/bootstrap/test.rs +0 -0
  95. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/opendp_tooling/src/codegen/mod.rs +0 -0
  96. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/opendp_tooling/src/codegen/python_typemap.json +0 -0
  97. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/opendp_tooling/src/codegen/r/c.rs +0 -0
  98. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/opendp_tooling/src/codegen/r/mod.rs +0 -0
  99. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/opendp_tooling/src/codegen/r/r.rs +0 -0
  100. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/opendp_tooling/src/codegen/test.rs +0 -0
  101. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/opendp_tooling/src/codegen/type_hierarchy.json +0 -0
  102. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/opendp_tooling/src/lib.rs +0 -0
  103. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/opendp_tooling/src/proven/filesystem.rs +0 -0
  104. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/opendp_tooling/src/proven/mod.rs +0 -0
  105. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/accuracy/accuracy_to_discrete_gaussian_scale.tex +0 -0
  106. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/accuracy/accuracy_to_discrete_laplacian_scale.tex +0 -0
  107. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/accuracy/code/summarize_polars_measurement.rst +0 -0
  108. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/accuracy/discrete_gaussian_scale_to_accuracy.tex +0 -0
  109. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/accuracy/discrete_laplacian_scale_to_accuracy.tex +0 -0
  110. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/accuracy/ffi.rs +0 -0
  111. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/accuracy/mod.rs +0 -0
  112. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/accuracy/polars/ffi.rs +0 -0
  113. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/accuracy/polars/mod.rs +0 -0
  114. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/accuracy/polars/test.rs +0 -0
  115. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/accuracy/tail_bounds/conservative_continuous_gaussian_tail_to_alpha.tex +0 -0
  116. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/accuracy/tail_bounds/conservative_discrete_laplacian_tail_to_alpha.tex +0 -0
  117. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/accuracy/tail_bounds/erfc_err_analysis.py +0 -0
  118. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/accuracy/tail_bounds/mod.rs +0 -0
  119. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/accuracy/tail_bounds/test.rs +0 -0
  120. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/accuracy/test.rs +0 -0
  121. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/combinators/amplify/ffi.rs +0 -0
  122. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/combinators/amplify/mod.rs +0 -0
  123. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/combinators/amplify/test.rs +0 -0
  124. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/combinators/chain/ffi.rs +0 -0
  125. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/combinators/chain/mod.rs +0 -0
  126. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/combinators/chain/shr/mod.rs +0 -0
  127. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/combinators/chain/shr/partials.rs +0 -0
  128. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/combinators/chain/test.rs +0 -0
  129. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/combinators/code/make_select_private_candidate.rst +0 -0
  130. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/combinators/fix_delta/ffi.rs +0 -0
  131. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/combinators/fix_delta/mod.rs +0 -0
  132. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/combinators/fix_delta/test.rs +0 -0
  133. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/combinators/measure_cast/approximate/ffi.rs +0 -0
  134. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/combinators/measure_cast/approximate/mod.rs +0 -0
  135. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/combinators/measure_cast/fixed_approxDP_to_approxDP/ffi.rs +0 -0
  136. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/combinators/measure_cast/fixed_approxDP_to_approxDP/mod.rs +0 -0
  137. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/combinators/measure_cast/fixed_approxDP_to_approxDP/test.rs +0 -0
  138. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/combinators/measure_cast/mod.rs +0 -0
  139. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/combinators/measure_cast/pureDP_to_zCDP/ffi.rs +0 -0
  140. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/combinators/measure_cast/pureDP_to_zCDP/mod.rs +0 -0
  141. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/combinators/measure_cast/zCDP_to_approxDP/cdp_delta/cdp_delta.tex +0 -0
  142. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/combinators/measure_cast/zCDP_to_approxDP/cdp_delta/mod.bib +0 -0
  143. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/combinators/measure_cast/zCDP_to_approxDP/cdp_delta/mod.rs +0 -0
  144. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/combinators/measure_cast/zCDP_to_approxDP/cdp_delta/pseudocode/cdp_delta.py +0 -0
  145. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/combinators/measure_cast/zCDP_to_approxDP/cdp_delta/test.rs +0 -0
  146. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/combinators/measure_cast/zCDP_to_approxDP/ffi.rs +0 -0
  147. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/combinators/measure_cast/zCDP_to_approxDP/mod.bib +0 -0
  148. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/combinators/measure_cast/zCDP_to_approxDP/mod.rs +0 -0
  149. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/combinators/measure_cast/zCDP_to_approxDP/test.rs +0 -0
  150. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/combinators/mod.rs +0 -0
  151. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/combinators/privacy_filter/ffi.rs +0 -0
  152. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/combinators/privacy_filter/make_privacy_filter.tex +0 -0
  153. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/combinators/privacy_filter/mod.rs +0 -0
  154. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/combinators/privacy_filter/new_continuation_rule.tex +0 -0
  155. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/combinators/privacy_filter/pseudocode/make_privacy_filter.py +0 -0
  156. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/combinators/privacy_filter/pseudocode/new_continuation_rule.py +0 -0
  157. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/combinators/privacy_filter/test.rs +0 -0
  158. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/combinators/select_private_candidate/ffi.rs +0 -0
  159. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/combinators/select_private_candidate/make_select_private_candidate.tex +0 -0
  160. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/combinators/select_private_candidate/mod.rs +0 -0
  161. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/combinators/select_private_candidate/pseudocode/make_select_private_candidate.py +0 -0
  162. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/combinators/select_private_candidate/references.bib +0 -0
  163. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/combinators/select_private_candidate/test.rs +0 -0
  164. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/combinators/sequential_composition/CompositionMeasure_for_ApproximateMaxDivergence.tex +0 -0
  165. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/combinators/sequential_composition/CompositionMeasure_for_ApproximateZeroConcentratedDivergence.tex +0 -0
  166. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/combinators/sequential_composition/CompositionMeasure_for_MaxDivergence.tex +0 -0
  167. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/combinators/sequential_composition/CompositionMeasure_for_RenyiDivergence.tex +0 -0
  168. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/combinators/sequential_composition/CompositionMeasure_for_ZeroConcentratedDivergence.tex +0 -0
  169. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/combinators/sequential_composition/adaptive/ffi.rs +0 -0
  170. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/combinators/sequential_composition/adaptive/test.rs +0 -0
  171. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/combinators/sequential_composition/ffi.rs +0 -0
  172. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/combinators/sequential_composition/fully_adaptive/ffi.rs +0 -0
  173. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/combinators/sequential_composition/fully_adaptive/make_fully_adaptive_composition.tex +0 -0
  174. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/combinators/sequential_composition/fully_adaptive/mod.rs +0 -0
  175. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/combinators/sequential_composition/fully_adaptive/new_fully_adaptive_composition_queryable.tex +0 -0
  176. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/combinators/sequential_composition/fully_adaptive/pseudocode/make_fully_adaptive_composition.py +0 -0
  177. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/combinators/sequential_composition/fully_adaptive/pseudocode/new_fully_adaptive_composition_queryable.py +0 -0
  178. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/combinators/sequential_composition/fully_adaptive/ref.bib +0 -0
  179. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/combinators/sequential_composition/fully_adaptive/test.rs +0 -0
  180. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/combinators/sequential_composition/mod.rs +0 -0
  181. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/combinators/sequential_composition/non_adaptive/test.rs +0 -0
  182. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/combinators/sequential_composition/pseudocode/CompositionMeasure_for_ApproximateMaxDivergence.py +0 -0
  183. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/combinators/sequential_composition/pseudocode/CompositionMeasure_for_ApproximateZeroConcentratedDivergence.py +0 -0
  184. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/combinators/sequential_composition/pseudocode/CompositionMeasure_for_MaxDivergence.py +0 -0
  185. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/combinators/sequential_composition/pseudocode/CompositionMeasure_for_RenyiDivergence.py +0 -0
  186. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/combinators/sequential_composition/pseudocode/CompositionMeasure_for_ZeroConcentratedDivergence.py +0 -0
  187. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/combinators/sequential_composition/ref.bib +0 -0
  188. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/combinators/test.rs +0 -0
  189. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/core/ffi/measurement.rs +0 -0
  190. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/core/ffi/mod.rs +0 -0
  191. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/core/ffi/odometer.rs +0 -0
  192. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/core/ffi/queryable.rs +0 -0
  193. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/core/ffi/transformation.rs +0 -0
  194. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/core/test.rs +0 -0
  195. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/data/ffi/mod.rs +0 -0
  196. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/data/ffi/polars.rs +0 -0
  197. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/data/mod.rs +0 -0
  198. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/data/test.rs +0 -0
  199. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/domains/code/atom_domain.R +0 -0
  200. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/domains/code/atom_domain.rst +0 -0
  201. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/domains/ffi.rs +0 -0
  202. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/domains/mod.rs +0 -0
  203. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/domains/polars/array/ffi.rs +0 -0
  204. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/domains/polars/array/mod.rs +0 -0
  205. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/domains/polars/categorical/ffi.rs +0 -0
  206. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/domains/polars/categorical/mod.rs +0 -0
  207. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/domains/polars/datetime/ffi.rs +0 -0
  208. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/domains/polars/datetime/mod.rs +0 -0
  209. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/domains/polars/enum/ffi.rs +0 -0
  210. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/domains/polars/enum/mod.rs +0 -0
  211. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/domains/polars/enum/test.rs +0 -0
  212. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/domains/polars/expr/ffi.rs +0 -0
  213. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/domains/polars/expr/mod.rs +0 -0
  214. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/domains/polars/frame/ffi.rs +0 -0
  215. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/domains/polars/frame/find_min_covering.tex +0 -0
  216. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/domains/polars/frame/get_margin.tex +0 -0
  217. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/domains/polars/frame/mod.rs +0 -0
  218. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/domains/polars/frame/pseudocode/find_min_covering.py +0 -0
  219. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/domains/polars/frame/pseudocode/get_margin.py +0 -0
  220. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/domains/polars/frame/test.rs +0 -0
  221. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/domains/polars/mod.rs +0 -0
  222. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/domains/polars/series/ffi.rs +0 -0
  223. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/domains/polars/series/mod.rs +0 -0
  224. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/domains/polars/series/test.rs +0 -0
  225. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/domains/poly.rs +0 -0
  226. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/error/mod.rs +0 -0
  227. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/error/test.rs +0 -0
  228. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/ffi/any.rs +0 -0
  229. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/ffi/dispatch.rs +0 -0
  230. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/ffi/mod.rs +0 -0
  231. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/ffi/util.rs +0 -0
  232. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/interactive/mod.rs +0 -0
  233. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/internal/mod.rs +0 -0
  234. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/lib.sty +0 -0
  235. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/measurements/alp/ffi.rs +0 -0
  236. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/measurements/alp/mod.rs +0 -0
  237. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/measurements/alp/test.rs +0 -0
  238. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/measurements/canonical_noise/approximate_to_tradeoff.tex +0 -0
  239. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/measurements/canonical_noise/ffi.rs +0 -0
  240. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/measurements/canonical_noise/make_canonical_noise.tex +0 -0
  241. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/measurements/canonical_noise/mod.rs +0 -0
  242. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/measurements/canonical_noise/pseudocode/approximate_to_tradeoff.py +0 -0
  243. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/measurements/canonical_noise/pseudocode/make_canonical_noise.py +0 -0
  244. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/measurements/canonical_noise/ref.bib +0 -0
  245. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/measurements/canonical_noise/test.rs +0 -0
  246. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/measurements/code/README.md +0 -0
  247. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/measurements/code/make_gaussian.R +0 -0
  248. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/measurements/code/make_gaussian.rst +0 -0
  249. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/measurements/code/make_geometric.rst +0 -0
  250. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/measurements/code/make_laplace.rst +0 -0
  251. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/measurements/code/make_noisy_max.rst +0 -0
  252. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/measurements/code/make_private_lazyframe.rst +0 -0
  253. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/measurements/code/make_randomized_response.rst +0 -0
  254. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/measurements/code/make_randomized_response_bitvec.rst +0 -0
  255. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/measurements/code/make_randomized_response_bool.rst +0 -0
  256. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/measurements/code/make_user_measurement.rst +0 -0
  257. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/measurements/code/then_report_noisy_max_gumbel.rst +0 -0
  258. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/measurements/make_private_expr/expr_dp_counting_query/mod.rs +0 -0
  259. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/measurements/make_private_expr/expr_dp_frame_len/mod.rs +0 -0
  260. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/measurements/make_private_expr/expr_dp_mean/mod.rs +0 -0
  261. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/measurements/make_private_expr/expr_dp_median/mod.rs +0 -0
  262. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/measurements/make_private_expr/expr_dp_quantile/mod.rs +0 -0
  263. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/measurements/make_private_expr/expr_dp_sum/mod.rs +0 -0
  264. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/measurements/make_private_expr/expr_index_candidates/mod.rs +0 -0
  265. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/measurements/make_private_expr/expr_index_candidates/test.rs +0 -0
  266. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/measurements/make_private_expr/expr_len/mod.rs +0 -0
  267. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/measurements/make_private_expr/expr_len/test.rs +0 -0
  268. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/measurements/make_private_expr/expr_literal/mod.rs +0 -0
  269. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/measurements/make_private_expr/expr_literal/test.rs +0 -0
  270. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/measurements/make_private_expr/expr_noise/mod.rs +0 -0
  271. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/measurements/make_private_expr/expr_noise/test.rs +0 -0
  272. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/measurements/make_private_expr/expr_noisy_max/mod.rs +0 -0
  273. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/measurements/make_private_expr/expr_noisy_max/test.rs +0 -0
  274. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/measurements/make_private_expr/expr_postprocess/mod.rs +0 -0
  275. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/measurements/make_private_expr/expr_postprocess/test.rs +0 -0
  276. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/measurements/make_private_expr/ffi.rs +0 -0
  277. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/measurements/make_private_expr/mod.rs +0 -0
  278. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/measurements/make_private_expr/test.rs +0 -0
  279. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/measurements/make_private_lazyframe/ffi.rs +0 -0
  280. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/measurements/make_private_lazyframe/group_by/make_private_group_by.tex +0 -0
  281. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/measurements/make_private_lazyframe/group_by/matching.rs +0 -0
  282. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/measurements/make_private_lazyframe/group_by/mod.rs +0 -0
  283. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/measurements/make_private_lazyframe/group_by/pseudocode/make_private_group_by.py +0 -0
  284. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/measurements/make_private_lazyframe/group_by/ref.bib +0 -0
  285. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/measurements/make_private_lazyframe/group_by/test.rs +0 -0
  286. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/measurements/make_private_lazyframe/mod.rs +0 -0
  287. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/measurements/make_private_lazyframe/postprocess/mod.rs +0 -0
  288. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/measurements/make_private_lazyframe/postprocess/test.rs +0 -0
  289. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/measurements/make_private_lazyframe/select/mod.rs +0 -0
  290. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/measurements/make_private_lazyframe/select/test.rs +0 -0
  291. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/measurements/make_user_measurement/mod.rs +0 -0
  292. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/measurements/mod.rs +0 -0
  293. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/measurements/noise/MakeNoise_IBig_for_RV.tex +0 -0
  294. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/measurements/noise/Sample_for_ZExpFamily1.tex +0 -0
  295. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/measurements/noise/Sample_for_ZExpFamily2.tex +0 -0
  296. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/measurements/noise/distribution/ffi.rs +0 -0
  297. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/measurements/noise/distribution/gaussian/MakeNoise_for_DiscreteGaussian.tex +0 -0
  298. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/measurements/noise/distribution/gaussian/NoisePrivacyMap_for_ZExpFamily2.tex +0 -0
  299. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/measurements/noise/distribution/gaussian/ffi.rs +0 -0
  300. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/measurements/noise/distribution/gaussian/make_gaussian.tex +0 -0
  301. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/measurements/noise/distribution/gaussian/mod.bib +0 -0
  302. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/measurements/noise/distribution/gaussian/mod.rs +0 -0
  303. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/measurements/noise/distribution/gaussian/pseudocode/MakeNoise_for_DiscreteGaussian.py +0 -0
  304. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/measurements/noise/distribution/gaussian/pseudocode/NoisePrivacyMap_for_ZExpFamily2.py +0 -0
  305. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/measurements/noise/distribution/gaussian/pseudocode/make_gaussian.py +0 -0
  306. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/measurements/noise/distribution/gaussian/test.rs +0 -0
  307. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/measurements/noise/distribution/geometric/MakeNoise_AtomDomain_for_ConstantTimeGeometric.tex +0 -0
  308. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/measurements/noise/distribution/geometric/MakeNoise_VectorDomain_for_ConstantTimeGeometric.tex +0 -0
  309. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/measurements/noise/distribution/geometric/ffi.rs +0 -0
  310. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/measurements/noise/distribution/geometric/make_geometric.tex +0 -0
  311. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/measurements/noise/distribution/geometric/mod.rs +0 -0
  312. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/measurements/noise/distribution/geometric/pseudocode/MakeNoise_AtomDomain_for_ConstantTimeGeometric.py +0 -0
  313. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/measurements/noise/distribution/geometric/pseudocode/MakeNoise_VectorDomain_for_ConstantTimeGeometric.py +0 -0
  314. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/measurements/noise/distribution/geometric/pseudocode/make_geometric.py +0 -0
  315. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/measurements/noise/distribution/geometric/test.rs +0 -0
  316. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/measurements/noise/distribution/laplace/MakeNoise_for_DiscreteLaplace.tex +0 -0
  317. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/measurements/noise/distribution/laplace/NoisePrivacyMap_for_ZExpFamily1.tex +0 -0
  318. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/measurements/noise/distribution/laplace/ffi.rs +0 -0
  319. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/measurements/noise/distribution/laplace/make_laplace.tex +0 -0
  320. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/measurements/noise/distribution/laplace/mod.rs +0 -0
  321. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/measurements/noise/distribution/laplace/pseudocode/MakeNoise_for_DiscreteLaplace.py +0 -0
  322. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/measurements/noise/distribution/laplace/pseudocode/NoisePrivacyMap_for_ZExpFamily1.py +0 -0
  323. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/measurements/noise/distribution/laplace/pseudocode/make_laplace.py +0 -0
  324. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/measurements/noise/distribution/laplace/test.rs +0 -0
  325. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/measurements/noise/distribution/mod.rs +0 -0
  326. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/measurements/noise/mod.rs +0 -0
  327. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/measurements/noise/nature/bigint/MakeNoise_AtomDomain_for_ZExpFamily.tex +0 -0
  328. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/measurements/noise/nature/bigint/mod.rs +0 -0
  329. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/measurements/noise/nature/bigint/pseudocode/MakeNoise_AtomDomain_for_ZExpFamily.py +0 -0
  330. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/measurements/noise/nature/bigint/test.rs +0 -0
  331. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/measurements/noise/nature/float/MakeNoise_AtomDomain_for_FloatExpFamily.tex +0 -0
  332. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/measurements/noise/nature/float/MakeNoise_VectorDomain_for_FloatExpFamily.tex +0 -0
  333. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/measurements/noise/nature/float/make_float_to_bigint.tex +0 -0
  334. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/measurements/noise/nature/float/mod.rs +0 -0
  335. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/measurements/noise/nature/float/pseudocode/MakeNoise_AtomDomain_for_FloatExpFamily.py +0 -0
  336. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/measurements/noise/nature/float/pseudocode/MakeNoise_VectorDomain_for_FloatExpFamily.py +0 -0
  337. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/measurements/noise/nature/float/pseudocode/make_float_to_bigint.py +0 -0
  338. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/measurements/noise/nature/float/pseudocode/then_deintegerize_vec.py +0 -0
  339. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/measurements/noise/nature/float/test.rs +0 -0
  340. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/measurements/noise/nature/float/then_deintegerize_vec.tex +0 -0
  341. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/measurements/noise/nature/float/utilities/find_nearest_multiple_of_2k.tex +0 -0
  342. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/measurements/noise/nature/float/utilities/floor_div.tex +0 -0
  343. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/measurements/noise/nature/float/utilities/get_min_k.tex +0 -0
  344. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/measurements/noise/nature/float/utilities/get_rounding_distance.tex +0 -0
  345. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/measurements/noise/nature/float/utilities/mod.rs +0 -0
  346. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/measurements/noise/nature/float/utilities/pseudocode/find_nearest_multiple_of_2k.py +0 -0
  347. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/measurements/noise/nature/float/utilities/pseudocode/floor_div.py +0 -0
  348. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/measurements/noise/nature/float/utilities/pseudocode/get_min_k.py +0 -0
  349. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/measurements/noise/nature/float/utilities/pseudocode/get_rounding_distance.py +0 -0
  350. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/measurements/noise/nature/float/utilities/pseudocode/x_mul_2k.py +0 -0
  351. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/measurements/noise/nature/float/utilities/test.rs +0 -0
  352. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/measurements/noise/nature/float/utilities/x_mul_2k.tex +0 -0
  353. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/measurements/noise/nature/integer/MakeNoise_AtomDomain_for_IntExpFamily.tex +0 -0
  354. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/measurements/noise/nature/integer/MakeNoise_VectorDomain_for_IntExpFamily.tex +0 -0
  355. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/measurements/noise/nature/integer/make_int_to_bigint.tex +0 -0
  356. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/measurements/noise/nature/integer/mod.rs +0 -0
  357. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/measurements/noise/nature/integer/pseudocode/MakeNoise_AtomDomain_for_IntExpFamily.py +0 -0
  358. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/measurements/noise/nature/integer/pseudocode/MakeNoise_VectorDomain_for_IntExpFamily.py +0 -0
  359. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/measurements/noise/nature/integer/pseudocode/make_int_to_bigint.py +0 -0
  360. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/measurements/noise/nature/integer/pseudocode/then_saturating_cast.py +0 -0
  361. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/measurements/noise/nature/integer/test.rs +0 -0
  362. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/measurements/noise/nature/integer/then_saturating_cast.tex +0 -0
  363. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/measurements/noise/nature/mod.rs +0 -0
  364. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/measurements/noise/pseudocode/MakeNoise_IBig_for_RV.py +0 -0
  365. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/measurements/noise/pseudocode/Sample_for_ZExpFamily1.py +0 -0
  366. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/measurements/noise/pseudocode/Sample_for_ZExpFamily2.py +0 -0
  367. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/measurements/noise/test.rs +0 -0
  368. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/measurements/noise_threshold/MakeNoiseThreshold_IBig_for_RV.tex +0 -0
  369. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/measurements/noise_threshold/distribution/ffi.rs +0 -0
  370. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/measurements/noise_threshold/distribution/gaussian/MakeNoiseThreshold_for_DiscreteGaussian.tex +0 -0
  371. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/measurements/noise_threshold/distribution/gaussian/NoiseThresholdPrivacyMap_for_ZExpFamily2.tex +0 -0
  372. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/measurements/noise_threshold/distribution/gaussian/ffi.rs +0 -0
  373. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/measurements/noise_threshold/distribution/gaussian/make_gaussian_threshold.tex +0 -0
  374. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/measurements/noise_threshold/distribution/gaussian/mod.rs +0 -0
  375. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/measurements/noise_threshold/distribution/gaussian/pseudocode/MakeNoiseThreshold_for_DiscreteGaussian.py +0 -0
  376. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/measurements/noise_threshold/distribution/gaussian/pseudocode/NoiseThresholdPrivacyMap_for_ZExpFamily2.py +0 -0
  377. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/measurements/noise_threshold/distribution/gaussian/pseudocode/make_gaussian_threshold.py +0 -0
  378. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/measurements/noise_threshold/distribution/gaussian/ref.bib +0 -0
  379. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/measurements/noise_threshold/distribution/gaussian/test.rs +0 -0
  380. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/measurements/noise_threshold/distribution/laplace/MakeNoiseThreshold_for_DiscreteLaplace.tex +0 -0
  381. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/measurements/noise_threshold/distribution/laplace/NoiseThresholdPrivacyMap_for_ZExpFamily1.tex +0 -0
  382. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/measurements/noise_threshold/distribution/laplace/ffi.rs +0 -0
  383. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/measurements/noise_threshold/distribution/laplace/make_laplace_threshold.tex +0 -0
  384. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/measurements/noise_threshold/distribution/laplace/mod.rs +0 -0
  385. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/measurements/noise_threshold/distribution/laplace/pseudocode/MakeNoiseThreshold_for_DiscreteLaplace.py +0 -0
  386. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/measurements/noise_threshold/distribution/laplace/pseudocode/NoiseThresholdPrivacyMap_for_ZExpFamily1.py +0 -0
  387. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/measurements/noise_threshold/distribution/laplace/pseudocode/make_laplace_threshold.py +0 -0
  388. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/measurements/noise_threshold/distribution/laplace/ref.bib +0 -0
  389. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/measurements/noise_threshold/distribution/laplace/test.rs +0 -0
  390. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/measurements/noise_threshold/distribution/mod.rs +0 -0
  391. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/measurements/noise_threshold/distribution/test.rs +0 -0
  392. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/measurements/noise_threshold/mod.rs +0 -0
  393. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/measurements/noise_threshold/nature/float/MakeNoiseThreshold_MapDomain_for_FloatExpFamily.tex +0 -0
  394. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/measurements/noise_threshold/nature/float/make_float_to_bigint_threshold.tex +0 -0
  395. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/measurements/noise_threshold/nature/float/mod.rs +0 -0
  396. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/measurements/noise_threshold/nature/float/pseudocode/MakeNoiseThreshold_MapDomain_for_FloatExpFamily.py +0 -0
  397. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/measurements/noise_threshold/nature/float/pseudocode/make_float_to_bigint_threshold.py +0 -0
  398. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/measurements/noise_threshold/nature/float/pseudocode/then_deintegerize_hashmap.py +0 -0
  399. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/measurements/noise_threshold/nature/float/test.rs +0 -0
  400. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/measurements/noise_threshold/nature/float/then_deintegerize_hashmap.tex +0 -0
  401. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/measurements/noise_threshold/nature/integer/MakeNoiseThreshold_MapDomain_for_IntExpFamily.tex +0 -0
  402. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/measurements/noise_threshold/nature/integer/make_int_to_bigint_threshold.tex +0 -0
  403. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/measurements/noise_threshold/nature/integer/mod.rs +0 -0
  404. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/measurements/noise_threshold/nature/integer/pseudocode/MakeNoiseThreshold_MapDomain_for_IntExpFamily.py +0 -0
  405. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/measurements/noise_threshold/nature/integer/pseudocode/make_int_to_bigint_threshold.py +0 -0
  406. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/measurements/noise_threshold/nature/integer/pseudocode/then_saturating_cast_hashmap.py +0 -0
  407. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/measurements/noise_threshold/nature/integer/test.rs +0 -0
  408. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/measurements/noise_threshold/nature/integer/then_saturating_cast_hashmap.tex +0 -0
  409. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/measurements/noise_threshold/nature/mod.rs +0 -0
  410. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/measurements/noise_threshold/pseudocode/MakeNoiseThreshold_IBig_for_RV.py +0 -0
  411. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/measurements/noise_threshold/test.rs +0 -0
  412. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/measurements/noisy_max/ffi.rs +0 -0
  413. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/measurements/noisy_max/test.rs +0 -0
  414. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/measurements/noisy_top_k/TopKMeasure_MaxDivergence.tex +0 -0
  415. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/measurements/noisy_top_k/TopKMeasure_ZeroConcentratedDivergence.tex +0 -0
  416. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/measurements/noisy_top_k/ffi.rs +0 -0
  417. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/measurements/noisy_top_k/make_noisy_top_k.tex +0 -0
  418. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/measurements/noisy_top_k/mod.rs +0 -0
  419. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/measurements/noisy_top_k/noisy_top_k.tex +0 -0
  420. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/measurements/noisy_top_k/peel_permute_and_flip.tex +0 -0
  421. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/measurements/noisy_top_k/permute_and_flip.tex +0 -0
  422. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/measurements/noisy_top_k/pseudocode/TopKMeasure_MaxDivergence.py +0 -0
  423. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/measurements/noisy_top_k/pseudocode/TopKMeasure_ZeroConcentratedDivergence.py +0 -0
  424. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/measurements/noisy_top_k/pseudocode/make_noisy_top_k.py +0 -0
  425. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/measurements/noisy_top_k/pseudocode/noisy_top_k.py +0 -0
  426. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/measurements/noisy_top_k/pseudocode/peel_permute_and_flip.py +0 -0
  427. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/measurements/noisy_top_k/pseudocode/permute_and_flip.py +0 -0
  428. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/measurements/noisy_top_k/references.bib +0 -0
  429. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/measurements/noisy_top_k/test.rs +0 -0
  430. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/measurements/private_quantile/ffi.rs +0 -0
  431. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/measurements/private_quantile/mod.rs +0 -0
  432. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/measurements/private_quantile/test.rs +0 -0
  433. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/measurements/randomized_response/ffi.rs +0 -0
  434. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/measurements/randomized_response/make_randomized_response.tex +0 -0
  435. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/measurements/randomized_response/make_randomized_response_bool.tex +0 -0
  436. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/measurements/randomized_response/mod.rs +0 -0
  437. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/measurements/randomized_response/pseudocode/make_randomized_response.py +0 -0
  438. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/measurements/randomized_response/pseudocode/make_randomized_response_bool.py +0 -0
  439. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/measurements/randomized_response/randomized_response.bib +0 -0
  440. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/measurements/randomized_response/test.rs +0 -0
  441. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/measurements/randomized_response_bitvec/ffi.rs +0 -0
  442. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/measurements/randomized_response_bitvec/make_randomized_response_bitvec.tex +0 -0
  443. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/measurements/randomized_response_bitvec/mod.rs +0 -0
  444. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/measurements/randomized_response_bitvec/pseudocode/make_randomized_response_bitvec.py +0 -0
  445. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/measurements/randomized_response_bitvec/references.bib +0 -0
  446. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/measures/code/new_privacy_profile.rst +0 -0
  447. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/measures/ffi.rs +0 -0
  448. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/measures/mod.rs +0 -0
  449. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/metrics/ffi.rs +0 -0
  450. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/metrics/mod.rs +0 -0
  451. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/metrics/polars/ffi.rs +0 -0
  452. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/metrics/polars/mod.rs +0 -0
  453. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/polars/mod.rs +0 -0
  454. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/polars/test.rs +0 -0
  455. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/traits/arithmetic/mod.rs +0 -0
  456. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/traits/bounded/mod.rs +0 -0
  457. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/traits/cast/mod.rs +0 -0
  458. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/traits/cast/test.rs +0 -0
  459. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/traits/domains/ffi.rs +0 -0
  460. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/traits/domains/mod.rs +0 -0
  461. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/traits/mod.rs +0 -0
  462. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/traits/operations/mod.rs +0 -0
  463. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/traits/samplers/bernoulli/mod.rs +0 -0
  464. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/traits/samplers/bernoulli/pseudocode/sample_bernoulli_float.py +0 -0
  465. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/traits/samplers/bernoulli/pseudocode/sample_bernoulli_rational.py +0 -0
  466. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/traits/samplers/bernoulli/sample_bernoulli_float.tex +0 -0
  467. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/traits/samplers/bernoulli/sample_bernoulli_rational.tex +0 -0
  468. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/traits/samplers/bernoulli/test.rs +0 -0
  469. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/traits/samplers/cks20/mod.bib +0 -0
  470. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/traits/samplers/cks20/mod.rs +0 -0
  471. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/traits/samplers/cks20/pseudocode/sample_bernoulli_exp1.py +0 -0
  472. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/traits/samplers/cks20/pseudocode/sample_discrete_laplace.py +0 -0
  473. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/traits/samplers/cks20/pseudocode/sample_geometric_exp_fast.py +0 -0
  474. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/traits/samplers/cks20/sample_bernoulli_exp1.tex +0 -0
  475. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/traits/samplers/cks20/sample_discrete_laplace.tex +0 -0
  476. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/traits/samplers/cks20/sample_geometric_exp_fast.tex +0 -0
  477. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/traits/samplers/geometric/mod.rs +0 -0
  478. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/traits/samplers/geometric/pseudocode/sample_geometric_buffer.py +0 -0
  479. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/traits/samplers/geometric/sample_geometric_buffer.tex +0 -0
  480. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/traits/samplers/mod.rs +0 -0
  481. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/traits/samplers/psrn/canonical/InverseCDF_for_CanonicalRV.tex +0 -0
  482. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/traits/samplers/psrn/canonical/mod.rs +0 -0
  483. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/traits/samplers/psrn/canonical/pseudocode/InverseCDF_for_CanonicalRV.py +0 -0
  484. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/traits/samplers/psrn/canonical/pseudocode/quantile_cnd.py +0 -0
  485. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/traits/samplers/psrn/canonical/quantile_cnd.tex +0 -0
  486. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/traits/samplers/psrn/canonical/ref.bib +0 -0
  487. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/traits/samplers/psrn/canonical/test.rs +0 -0
  488. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/traits/samplers/psrn/mod.rs +0 -0
  489. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/traits/samplers/psrn/test.rs +0 -0
  490. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/traits/samplers/test.rs +0 -0
  491. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/traits/samplers/uniform/mod.rs +0 -0
  492. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/traits/samplers/uniform/pseudocode/sample_uniform_ubig_below.py +0 -0
  493. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/traits/samplers/uniform/pseudocode/sample_uniform_uint_below.py +0 -0
  494. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/traits/samplers/uniform/sample_uniform_ubig_below.tex +0 -0
  495. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/traits/samplers/uniform/sample_uniform_uint_below.tex +0 -0
  496. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/traits/samplers/uniform/test.rs +0 -0
  497. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/transformations/b_ary_tree/consistency_postprocessor/ffi.rs +0 -0
  498. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/transformations/b_ary_tree/consistency_postprocessor/mod.rs +0 -0
  499. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/transformations/b_ary_tree/ffi.rs +0 -0
  500. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/transformations/b_ary_tree/mod.rs +0 -0
  501. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/transformations/b_ary_tree/test.rs +0 -0
  502. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/transformations/cast/ffi.rs +0 -0
  503. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/transformations/cast/mod.rs +0 -0
  504. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/transformations/cast/test.rs +0 -0
  505. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/transformations/cast_metric/ffi.rs +0 -0
  506. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/transformations/cast_metric/mod.rs +0 -0
  507. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/transformations/cast_metric/test.rs +0 -0
  508. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/transformations/cast_metric/traits.rs +0 -0
  509. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/transformations/clamp/ffi.rs +0 -0
  510. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/transformations/clamp/make_clamp.tex +0 -0
  511. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/transformations/clamp/mod.rs +0 -0
  512. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/transformations/clamp/pseudocode/make_clamp.py +0 -0
  513. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/transformations/clamp/test.rs +0 -0
  514. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/transformations/count/ffi.rs +0 -0
  515. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/transformations/count/test.rs +0 -0
  516. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/transformations/count_cdf/ffi.rs +0 -0
  517. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/transformations/count_cdf/mod.rs +0 -0
  518. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/transformations/count_cdf/test.rs +0 -0
  519. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/transformations/covariance/ffi.rs +0 -0
  520. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/transformations/covariance/mod.rs +0 -0
  521. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/transformations/covariance/test.rs +0 -0
  522. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/transformations/dataframe/apply/ffi.rs +0 -0
  523. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/transformations/dataframe/apply/test.rs +0 -0
  524. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/transformations/dataframe/create/ffi.rs +0 -0
  525. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/transformations/dataframe/create/test.rs +0 -0
  526. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/transformations/dataframe/mod.rs +0 -0
  527. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/transformations/dataframe/select/ffi.rs +0 -0
  528. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/transformations/dataframe/select/test.rs +0 -0
  529. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/transformations/dataframe/subset/ffi.rs +0 -0
  530. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/transformations/dataframe/subset/test.rs +0 -0
  531. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/transformations/impute/ffi.rs +0 -0
  532. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/transformations/impute/mod.rs +0 -0
  533. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/transformations/impute/test.rs +0 -0
  534. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/transformations/index/ffi.rs +0 -0
  535. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/transformations/index/mod.rs +0 -0
  536. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/transformations/index/test.rs +0 -0
  537. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/transformations/lipschitz_mul/ffi.rs +0 -0
  538. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/transformations/lipschitz_mul/mod.rs +0 -0
  539. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/transformations/lipschitz_mul/test.rs +0 -0
  540. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/transformations/make_stable_expr/expr_alias/mod.rs +0 -0
  541. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/transformations/make_stable_expr/expr_alias/test.rs +0 -0
  542. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/transformations/make_stable_expr/expr_binary/mod.rs +0 -0
  543. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/transformations/make_stable_expr/expr_binary/test.rs +0 -0
  544. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/transformations/make_stable_expr/expr_boolean_function/mod.rs +0 -0
  545. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/transformations/make_stable_expr/expr_boolean_function/test.rs +0 -0
  546. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/transformations/make_stable_expr/expr_cast/mod.rs +0 -0
  547. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/transformations/make_stable_expr/expr_cast/test.rs +0 -0
  548. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/transformations/make_stable_expr/expr_clip/mod.rs +0 -0
  549. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/transformations/make_stable_expr/expr_clip/test.rs +0 -0
  550. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/transformations/make_stable_expr/expr_col/mod.rs +0 -0
  551. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/transformations/make_stable_expr/expr_col/test.rs +0 -0
  552. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/transformations/make_stable_expr/expr_count/counting_query_stability_map.tex +0 -0
  553. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/transformations/make_stable_expr/expr_count/make_expr_count.tex +0 -0
  554. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/transformations/make_stable_expr/expr_count/mod.rs +0 -0
  555. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/transformations/make_stable_expr/expr_count/pseudocode/counting_query_stability_map.py +0 -0
  556. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/transformations/make_stable_expr/expr_count/pseudocode/make_expr_count.py +0 -0
  557. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/transformations/make_stable_expr/expr_count/test.rs +0 -0
  558. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/transformations/make_stable_expr/expr_cut/mod.rs +0 -0
  559. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/transformations/make_stable_expr/expr_cut/test.rs +0 -0
  560. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/transformations/make_stable_expr/expr_discrete_quantile_score/mod.rs +0 -0
  561. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/transformations/make_stable_expr/expr_discrete_quantile_score/plugin_dq_score.rs +0 -0
  562. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/transformations/make_stable_expr/expr_discrete_quantile_score/test.rs +0 -0
  563. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/transformations/make_stable_expr/expr_drop_nan_or_null/mod.rs +0 -0
  564. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/transformations/make_stable_expr/expr_drop_nan_or_null/test.rs +0 -0
  565. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/transformations/make_stable_expr/expr_fill_nan/mod.rs +0 -0
  566. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/transformations/make_stable_expr/expr_fill_nan/test.rs +0 -0
  567. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/transformations/make_stable_expr/expr_fill_null/mod.rs +0 -0
  568. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/transformations/make_stable_expr/expr_fill_null/test.rs +0 -0
  569. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/transformations/make_stable_expr/expr_filter/mod.rs +0 -0
  570. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/transformations/make_stable_expr/expr_filter/test.rs +0 -0
  571. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/transformations/make_stable_expr/expr_len/mod.rs +0 -0
  572. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/transformations/make_stable_expr/expr_len/test.rs +0 -0
  573. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/transformations/make_stable_expr/expr_lit/mod.rs +0 -0
  574. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/transformations/make_stable_expr/expr_lit/test.rs +0 -0
  575. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/transformations/make_stable_expr/expr_replace/mod.rs +0 -0
  576. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/transformations/make_stable_expr/expr_replace/test.rs +0 -0
  577. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/transformations/make_stable_expr/expr_replace_strict/mod.rs +0 -0
  578. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/transformations/make_stable_expr/expr_replace_strict/test.rs +0 -0
  579. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/transformations/make_stable_expr/expr_sum/mod.rs +0 -0
  580. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/transformations/make_stable_expr/expr_sum/test.rs +0 -0
  581. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/transformations/make_stable_expr/expr_to_physical/mod.rs +0 -0
  582. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/transformations/make_stable_expr/expr_to_physical/test.rs +0 -0
  583. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/transformations/make_stable_expr/ffi.rs +0 -0
  584. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/transformations/make_stable_expr/mod.rs +0 -0
  585. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/transformations/make_stable_expr/namespace_arr/mod.rs +0 -0
  586. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/transformations/make_stable_expr/namespace_arr/test.rs +0 -0
  587. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/transformations/make_stable_expr/namespace_dt/expr_datetime_component/make_expr_datetime_component.tex +0 -0
  588. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/transformations/make_stable_expr/namespace_dt/expr_datetime_component/match_datetime_component.tex +0 -0
  589. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/transformations/make_stable_expr/namespace_dt/expr_datetime_component/mod.rs +0 -0
  590. {opendp-0.14.1a20251029001 → 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
  591. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/transformations/make_stable_expr/namespace_dt/expr_datetime_component/pseudocode/match_datetime_component.py +0 -0
  592. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/transformations/make_stable_expr/namespace_dt/expr_datetime_component/test.rs +0 -0
  593. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/transformations/make_stable_expr/namespace_dt/mod.rs +0 -0
  594. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/transformations/make_stable_expr/namespace_str/expr_strptime/make_expr_strptime.tex +0 -0
  595. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/transformations/make_stable_expr/namespace_str/expr_strptime/mod.rs +0 -0
  596. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/transformations/make_stable_expr/namespace_str/expr_strptime/pseudocode/make_expr_strptime.py +0 -0
  597. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/transformations/make_stable_expr/namespace_str/expr_strptime/test.rs +0 -0
  598. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/transformations/make_stable_expr/namespace_str/mod.rs +0 -0
  599. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/transformations/make_stable_expr/test_helper.rs +0 -0
  600. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/transformations/make_stable_lazyframe/ffi.rs +0 -0
  601. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/transformations/make_stable_lazyframe/filter/mod.rs +0 -0
  602. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/transformations/make_stable_lazyframe/filter/test.rs +0 -0
  603. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/transformations/make_stable_lazyframe/group_by/make_stable_group_by.tex +0 -0
  604. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/transformations/make_stable_lazyframe/group_by/mod.rs +0 -0
  605. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/transformations/make_stable_lazyframe/group_by/pseudocode/make_stable_group_by.py +0 -0
  606. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/transformations/make_stable_lazyframe/group_by/test.rs +0 -0
  607. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/transformations/make_stable_lazyframe/h_stack/mod.rs +0 -0
  608. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/transformations/make_stable_lazyframe/h_stack/test.rs +0 -0
  609. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/transformations/make_stable_lazyframe/mod.rs +0 -0
  610. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/transformations/make_stable_lazyframe/select/mod.rs +0 -0
  611. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/transformations/make_stable_lazyframe/select/test.rs +0 -0
  612. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/transformations/make_stable_lazyframe/source/mod.rs +0 -0
  613. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/transformations/make_stable_lazyframe/truncate/make_stable_truncate.tex +0 -0
  614. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/transformations/make_stable_lazyframe/truncate/matching/match_group_by_truncation.tex +0 -0
  615. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/transformations/make_stable_lazyframe/truncate/matching/match_num_groups_predicate.tex +0 -0
  616. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/transformations/make_stable_lazyframe/truncate/matching/match_per_group_predicate.tex +0 -0
  617. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/transformations/make_stable_lazyframe/truncate/matching/match_truncation_predicate.tex +0 -0
  618. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/transformations/make_stable_lazyframe/truncate/matching/match_truncations.tex +0 -0
  619. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/transformations/make_stable_lazyframe/truncate/matching/mod.rs +0 -0
  620. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/transformations/make_stable_lazyframe/truncate/matching/pseudocode/match_group_by_truncation.py +0 -0
  621. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/transformations/make_stable_lazyframe/truncate/matching/pseudocode/match_num_groups_predicate.py +0 -0
  622. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/transformations/make_stable_lazyframe/truncate/matching/pseudocode/match_per_group_predicate.py +0 -0
  623. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/transformations/make_stable_lazyframe/truncate/matching/pseudocode/match_truncation_predicate.py +0 -0
  624. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/transformations/make_stable_lazyframe/truncate/matching/pseudocode/match_truncations.py +0 -0
  625. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/transformations/make_stable_lazyframe/truncate/matching/test.rs +0 -0
  626. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/transformations/make_stable_lazyframe/truncate/mod.rs +0 -0
  627. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/transformations/make_stable_lazyframe/truncate/pseudocode/make_stable_truncate.py +0 -0
  628. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/transformations/make_stable_lazyframe/truncate/pseudocode/truncate_domain.py +0 -0
  629. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/transformations/make_stable_lazyframe/truncate/pseudocode/truncate_id_bound.py +0 -0
  630. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/transformations/make_stable_lazyframe/truncate/test.rs +0 -0
  631. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/transformations/make_stable_lazyframe/truncate/truncate_domain.tex +0 -0
  632. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/transformations/make_stable_lazyframe/truncate/truncate_id_bound.tex +0 -0
  633. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/transformations/make_user_transformation/mod.rs +0 -0
  634. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/transformations/manipulation/ffi.rs +0 -0
  635. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/transformations/manipulation/make_is_equal.tex +0 -0
  636. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/transformations/manipulation/make_row_by_row.tex +0 -0
  637. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/transformations/manipulation/make_row_by_row_fallible.tex +0 -0
  638. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/transformations/manipulation/mod.rs +0 -0
  639. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/transformations/manipulation/pseudocode/make_is_equal.py +0 -0
  640. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/transformations/manipulation/pseudocode/make_row_by_row.py +0 -0
  641. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/transformations/manipulation/pseudocode/make_row_by_row_fallible.py +0 -0
  642. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/transformations/manipulation/test.rs +0 -0
  643. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/transformations/mean/ffi.rs +0 -0
  644. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/transformations/mean/mod.rs +0 -0
  645. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/transformations/mean/test.rs +0 -0
  646. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/transformations/mod.rs +0 -0
  647. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/transformations/quantile_score_candidates/check_candidates.tex +0 -0
  648. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/transformations/quantile_score_candidates/ffi.rs +0 -0
  649. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/transformations/quantile_score_candidates/make_quantile_score_candidates.tex +0 -0
  650. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/transformations/quantile_score_candidates/mod.rs +0 -0
  651. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/transformations/quantile_score_candidates/pseudocode/check_candidates.py +0 -0
  652. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/transformations/quantile_score_candidates/pseudocode/make_quantile_score_candidates.py +0 -0
  653. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/transformations/quantile_score_candidates/pseudocode/score_candidates.py +0 -0
  654. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/transformations/quantile_score_candidates/pseudocode/score_candidates_constants.py +0 -0
  655. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/transformations/quantile_score_candidates/pseudocode/score_candidates_map.py +0 -0
  656. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/transformations/quantile_score_candidates/references.bib +0 -0
  657. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/transformations/quantile_score_candidates/score_candidates.tex +0 -0
  658. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/transformations/quantile_score_candidates/score_candidates_constants.tex +0 -0
  659. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/transformations/quantile_score_candidates/score_candidates_map.tex +0 -0
  660. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/transformations/quantile_score_candidates/test.rs +0 -0
  661. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/transformations/resize/ffi.rs +0 -0
  662. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/transformations/resize/mod.rs +0 -0
  663. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/transformations/resize/test.rs +0 -0
  664. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/transformations/scalar_to_vector/make_vec.tex +0 -0
  665. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/transformations/scalar_to_vector/mod.rs +0 -0
  666. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/transformations/scalar_to_vector/pseudocode/make_vec.py +0 -0
  667. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/transformations/scalar_to_vector/pseudocode/then_index_or_default.py +0 -0
  668. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/transformations/scalar_to_vector/then_index_or_default.tex +0 -0
  669. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/transformations/sum/ffi.rs +0 -0
  670. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/transformations/sum/float/checked/ffi.rs +0 -0
  671. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/transformations/sum/float/checked/mod.rs +0 -0
  672. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/transformations/sum/float/checked/test.rs +0 -0
  673. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/transformations/sum/float/mod.rs +0 -0
  674. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/transformations/sum/float/ordered/ffi.rs +0 -0
  675. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/transformations/sum/float/ordered/mod.rs +0 -0
  676. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/transformations/sum/float/ordered/test.rs +0 -0
  677. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/transformations/sum/int/checked/ffi.rs +0 -0
  678. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/transformations/sum/int/checked/mod.rs +0 -0
  679. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/transformations/sum/int/checked/test.rs +0 -0
  680. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/transformations/sum/int/mod.rs +0 -0
  681. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/transformations/sum/int/monotonic/ffi.rs +0 -0
  682. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/transformations/sum/int/monotonic/mod.rs +0 -0
  683. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/transformations/sum/int/monotonic/test.rs +0 -0
  684. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/transformations/sum/int/ordered/ffi.rs +0 -0
  685. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/transformations/sum/int/ordered/mod.rs +0 -0
  686. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/transformations/sum/int/ordered/test.rs +0 -0
  687. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/transformations/sum/int/split/ffi.rs +0 -0
  688. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/transformations/sum/int/split/mod.rs +0 -0
  689. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/transformations/sum/int/split/test.rs +0 -0
  690. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/transformations/sum/mod.rs +0 -0
  691. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/transformations/sum/test.rs +0 -0
  692. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/transformations/sum_of_squared_deviations/ffi.rs +0 -0
  693. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/transformations/sum_of_squared_deviations/mod.rs +0 -0
  694. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/transformations/sum_of_squared_deviations/test.rs +0 -0
  695. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/transformations/variance/ffi.rs +0 -0
  696. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/transformations/variance/mod.rs +0 -0
  697. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/rust/src/transformations/variance/test.rs +0 -0
  698. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp/typing.py +0 -0
  699. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp.egg-info/SOURCES.txt +0 -0
  700. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp.egg-info/dependency_links.txt +0 -0
  701. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp.egg-info/not-zip-safe +0 -0
  702. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp.egg-info/requires.txt +0 -0
  703. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/src/opendp.egg-info/top_level.txt +0 -0
  704. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/test/test_accuracy.py +0 -0
  705. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/test/test_ast.py +0 -0
  706. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/test/test_binary_search.py +0 -0
  707. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/test/test_comb.py +0 -0
  708. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/test/test_convert.py +0 -0
  709. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/test/test_core.py +0 -0
  710. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/test/test_decorators.py +0 -0
  711. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/test/test_domains.py +0 -0
  712. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/test/test_interactive.py +0 -0
  713. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/test/test_meas.py +0 -0
  714. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/test/test_measures.py +0 -0
  715. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/test/test_metric_cast.py +0 -0
  716. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/test/test_metrics.py +0 -0
  717. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/test/test_polars.py +0 -0
  718. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/test/test_serialization.py +0 -0
  719. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/test/test_space_of.py +0 -0
  720. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/test/test_subprocesses.py +0 -0
  721. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/test/test_tests.py +0 -0
  722. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/test/test_typing.py +0 -0
  723. {opendp-0.14.1a20251029001 → opendp-0.14.1a20260130001}/test/test_usability.py +0 -0
  724. {opendp-0.14.1a20251029001 → 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.1a20251029001
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://projects.iq.harvard.edu/files/opendp/files/opendp_programming_framework_11may2020_1_01.pdf).
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-zw7o1k2s-dHg8NQE8WTfAGFnN_cwomA), or the [mailing list](https://groups.google.com/a/g.harvard.edu/g/opendp-community).
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://projects.iq.harvard.edu/files/opendp/files/opendp_programming_framework_11may2020_1_01.pdf).
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-zw7o1k2s-dHg8NQE8WTfAGFnN_cwomA), or the [mailing list](https://groups.google.com/a/g.harvard.edu/g/opendp-community).
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
 
@@ -1,6 +1,6 @@
1
1
  [metadata]
2
2
  name = opendp
3
- version = 0.14.1a20251029001
3
+ version = 0.14.1a20260130001
4
4
  url = https://opendp.org
5
5
  project_urls =
6
6
  Source = https://github.com/opendp/opendp
@@ -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.20251029.1/opendp/internal/fn._new_pure_function.html)
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.20251029.1/opendp/accuracy/fn.accuracy_to_discrete_gaussian_scale.html)
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.20251029.1/opendp/accuracy/fn.accuracy_to_discrete_laplacian_scale.html)
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.20251029.1/opendp/accuracy/fn.accuracy_to_gaussian_scale.html)
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.20251029.1/opendp/accuracy/fn.accuracy_to_laplacian_scale.html)
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.20251029.1/opendp/accuracy/fn.discrete_gaussian_scale_to_accuracy.html)
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.20251029.1/opendp/accuracy/fn.discrete_laplacian_scale_to_accuracy.html)
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.20251029.1/opendp/accuracy/fn.gaussian_scale_to_accuracy.html)
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.20251029.1/opendp/accuracy/fn.laplacian_scale_to_accuracy.html)
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
- 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
- └────────┴──────────────┴─────────────────┴───────┴──────────┘
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.20251029.1/opendp/combinators/fn.make_adaptive_composition.html)
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"""partial constructor of make_adaptive_composition
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:`opendp.combinators.make_adaptive_composition`
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.20251029.1/opendp/combinators/fn.make_approximate.html)
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, use `make_composition` instead.")
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.20251029.1/opendp/combinators/fn.make_chain_mt.html)
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.20251029.1/opendp/combinators/fn.make_chain_pm.html)
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.20251029.1/opendp/combinators/fn.make_chain_tt.html)
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.20251029.1/opendp/combinators/fn.make_fix_delta.html)
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.20251029.1/opendp/combinators/fn.make_fixed_approxDP_to_approxDP.html)
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.20251029.1/opendp/combinators/fn.make_fully_adaptive_composition.html)
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"""partial constructor of make_fully_adaptive_composition
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:`opendp.combinators.make_fully_adaptive_composition`
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.20251029.1/opendp/combinators/fn.make_population_amplification.html)
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.20251029.1/opendp/combinators/fn.make_privacy_filter.html)
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.20251029.1/opendp/combinators/fn.make_pureDP_to_zCDP.html)
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.20251029.1/opendp/combinators/fn.make_select_private_candidate.html)
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
- >>> 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)
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, use `make_adaptive_composition` instead.")
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.20251029.1/opendp/combinators/fn.make_sequential_composition.html)
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"""partial constructor of make_sequential_composition
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:`opendp.combinators.make_sequential_composition`
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.20251029.1/opendp/combinators/fn.make_zCDP_to_approxDP.html)
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.20251029.1/opendp/core/struct.Function.html)
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.20251029.1/opendp/domains/fn._atom_domain_get_bounds_closed.html)
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.20251029.1/opendp/domains/fn._atom_domain_nan.html)
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.20251029.1/opendp/domains/fn._lazyframe_from_domain.html)
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.20251029.1/opendp/domains/fn._series_domain_get_element_domain.html)
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.20251029.1/opendp/domains/struct.AtomDomain.html)
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
- >>> dp.atom_domain(T=float, nan=False)
724
- AtomDomain(T=f64)
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.20251029.1/opendp/domains/struct.DatetimeDomain.html)
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.20251029.1/opendp/domains/struct.OptionDomain.html)
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.20251029.1/opendp/domains/struct.SeriesDomain.html)
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
 
@@ -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:`opendp.accuracy.gaussian_scale_to_accuracy`
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
@@ -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:`opendp.extras.mbi.mirror_descent`.
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.
@@ -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:`opendp.measurements.make_canonical_noise` to instantiate the canonical noise mechanism.
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).