mqt-core 3.3.2__cp313-cp313t-win_amd64.whl
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.
- mqt/core/__init__.py +89 -0
- mqt/core/__main__.py +55 -0
- mqt/core/_commands.py +52 -0
- mqt/core/_compat/__init__.py +11 -0
- mqt/core/_compat/typing.py +29 -0
- mqt/core/_version.py +34 -0
- mqt/core/_version.pyi +12 -0
- mqt/core/bin/mqt-core-algorithms.dll +0 -0
- mqt/core/bin/mqt-core-circuit-optimizer.dll +0 -0
- mqt/core/bin/mqt-core-dd.dll +0 -0
- mqt/core/bin/mqt-core-ds.dll +0 -0
- mqt/core/bin/mqt-core-fomac.dll +0 -0
- mqt/core/bin/mqt-core-ir.dll +0 -0
- mqt/core/bin/mqt-core-na-fomac.dll +0 -0
- mqt/core/bin/mqt-core-na.dll +0 -0
- mqt/core/bin/mqt-core-qasm.dll +0 -0
- mqt/core/bin/mqt-core-qdmi-driver.dll +0 -0
- mqt/core/bin/mqt-core-qdmi-na-device.dll +0 -0
- mqt/core/bin/mqt-core-zx.dll +0 -0
- mqt/core/dd.cp313t-win_amd64.pyd +0 -0
- mqt/core/dd.pyi +1016 -0
- mqt/core/dd_evaluation.py +368 -0
- mqt/core/fomac.cp313t-win_amd64.pyd +0 -0
- mqt/core/fomac.pyi +125 -0
- mqt/core/include/mqt-core/algorithms/BernsteinVazirani.hpp +39 -0
- mqt/core/include/mqt-core/algorithms/GHZState.hpp +18 -0
- mqt/core/include/mqt-core/algorithms/Grover.hpp +33 -0
- mqt/core/include/mqt-core/algorithms/QFT.hpp +21 -0
- mqt/core/include/mqt-core/algorithms/QPE.hpp +30 -0
- mqt/core/include/mqt-core/algorithms/RandomCliffordCircuit.hpp +22 -0
- mqt/core/include/mqt-core/algorithms/StatePreparation.hpp +43 -0
- mqt/core/include/mqt-core/algorithms/WState.hpp +18 -0
- mqt/core/include/mqt-core/algorithms/mqt_core_algorithms_export.h +43 -0
- mqt/core/include/mqt-core/boost/config/abi/borland_prefix.hpp +27 -0
- mqt/core/include/mqt-core/boost/config/abi/borland_suffix.hpp +12 -0
- mqt/core/include/mqt-core/boost/config/abi/msvc_prefix.hpp +22 -0
- mqt/core/include/mqt-core/boost/config/abi/msvc_suffix.hpp +8 -0
- mqt/core/include/mqt-core/boost/config/abi_prefix.hpp +25 -0
- mqt/core/include/mqt-core/boost/config/abi_suffix.hpp +25 -0
- mqt/core/include/mqt-core/boost/config/assert_cxx03.hpp +211 -0
- mqt/core/include/mqt-core/boost/config/assert_cxx11.hpp +212 -0
- mqt/core/include/mqt-core/boost/config/assert_cxx14.hpp +47 -0
- mqt/core/include/mqt-core/boost/config/assert_cxx17.hpp +65 -0
- mqt/core/include/mqt-core/boost/config/assert_cxx20.hpp +59 -0
- mqt/core/include/mqt-core/boost/config/assert_cxx23.hpp +41 -0
- mqt/core/include/mqt-core/boost/config/assert_cxx98.hpp +23 -0
- mqt/core/include/mqt-core/boost/config/auto_link.hpp +525 -0
- mqt/core/include/mqt-core/boost/config/compiler/borland.hpp +342 -0
- mqt/core/include/mqt-core/boost/config/compiler/clang.hpp +370 -0
- mqt/core/include/mqt-core/boost/config/compiler/clang_version.hpp +89 -0
- mqt/core/include/mqt-core/boost/config/compiler/codegear.hpp +389 -0
- mqt/core/include/mqt-core/boost/config/compiler/comeau.hpp +59 -0
- mqt/core/include/mqt-core/boost/config/compiler/common_edg.hpp +185 -0
- mqt/core/include/mqt-core/boost/config/compiler/compaq_cxx.hpp +19 -0
- mqt/core/include/mqt-core/boost/config/compiler/cray.hpp +446 -0
- mqt/core/include/mqt-core/boost/config/compiler/diab.hpp +26 -0
- mqt/core/include/mqt-core/boost/config/compiler/digitalmars.hpp +146 -0
- mqt/core/include/mqt-core/boost/config/compiler/gcc.hpp +386 -0
- mqt/core/include/mqt-core/boost/config/compiler/gcc_xml.hpp +115 -0
- mqt/core/include/mqt-core/boost/config/compiler/greenhills.hpp +28 -0
- mqt/core/include/mqt-core/boost/config/compiler/hp_acc.hpp +153 -0
- mqt/core/include/mqt-core/boost/config/compiler/intel.hpp +577 -0
- mqt/core/include/mqt-core/boost/config/compiler/kai.hpp +33 -0
- mqt/core/include/mqt-core/boost/config/compiler/metrowerks.hpp +201 -0
- mqt/core/include/mqt-core/boost/config/compiler/mpw.hpp +143 -0
- mqt/core/include/mqt-core/boost/config/compiler/nvcc.hpp +64 -0
- mqt/core/include/mqt-core/boost/config/compiler/pathscale.hpp +141 -0
- mqt/core/include/mqt-core/boost/config/compiler/pgi.hpp +23 -0
- mqt/core/include/mqt-core/boost/config/compiler/sgi_mipspro.hpp +29 -0
- mqt/core/include/mqt-core/boost/config/compiler/sunpro_cc.hpp +225 -0
- mqt/core/include/mqt-core/boost/config/compiler/vacpp.hpp +189 -0
- mqt/core/include/mqt-core/boost/config/compiler/visualc.hpp +398 -0
- mqt/core/include/mqt-core/boost/config/compiler/xlcpp.hpp +303 -0
- mqt/core/include/mqt-core/boost/config/compiler/xlcpp_zos.hpp +174 -0
- mqt/core/include/mqt-core/boost/config/detail/cxx_composite.hpp +218 -0
- mqt/core/include/mqt-core/boost/config/detail/posix_features.hpp +95 -0
- mqt/core/include/mqt-core/boost/config/detail/select_compiler_config.hpp +157 -0
- mqt/core/include/mqt-core/boost/config/detail/select_platform_config.hpp +147 -0
- mqt/core/include/mqt-core/boost/config/detail/select_stdlib_config.hpp +121 -0
- mqt/core/include/mqt-core/boost/config/detail/suffix.hpp +1334 -0
- mqt/core/include/mqt-core/boost/config/header_deprecated.hpp +26 -0
- mqt/core/include/mqt-core/boost/config/helper_macros.hpp +37 -0
- mqt/core/include/mqt-core/boost/config/no_tr1/cmath.hpp +28 -0
- mqt/core/include/mqt-core/boost/config/no_tr1/complex.hpp +28 -0
- mqt/core/include/mqt-core/boost/config/no_tr1/functional.hpp +28 -0
- mqt/core/include/mqt-core/boost/config/no_tr1/memory.hpp +28 -0
- mqt/core/include/mqt-core/boost/config/no_tr1/utility.hpp +28 -0
- mqt/core/include/mqt-core/boost/config/platform/aix.hpp +33 -0
- mqt/core/include/mqt-core/boost/config/platform/amigaos.hpp +15 -0
- mqt/core/include/mqt-core/boost/config/platform/beos.hpp +26 -0
- mqt/core/include/mqt-core/boost/config/platform/bsd.hpp +83 -0
- mqt/core/include/mqt-core/boost/config/platform/cloudabi.hpp +18 -0
- mqt/core/include/mqt-core/boost/config/platform/cray.hpp +18 -0
- mqt/core/include/mqt-core/boost/config/platform/cygwin.hpp +71 -0
- mqt/core/include/mqt-core/boost/config/platform/haiku.hpp +31 -0
- mqt/core/include/mqt-core/boost/config/platform/hpux.hpp +87 -0
- mqt/core/include/mqt-core/boost/config/platform/irix.hpp +31 -0
- mqt/core/include/mqt-core/boost/config/platform/linux.hpp +106 -0
- mqt/core/include/mqt-core/boost/config/platform/macos.hpp +87 -0
- mqt/core/include/mqt-core/boost/config/platform/qnxnto.hpp +31 -0
- mqt/core/include/mqt-core/boost/config/platform/solaris.hpp +31 -0
- mqt/core/include/mqt-core/boost/config/platform/symbian.hpp +97 -0
- mqt/core/include/mqt-core/boost/config/platform/vms.hpp +25 -0
- mqt/core/include/mqt-core/boost/config/platform/vxworks.hpp +422 -0
- mqt/core/include/mqt-core/boost/config/platform/wasm.hpp +23 -0
- mqt/core/include/mqt-core/boost/config/platform/win32.hpp +90 -0
- mqt/core/include/mqt-core/boost/config/platform/zos.hpp +32 -0
- mqt/core/include/mqt-core/boost/config/pragma_message.hpp +31 -0
- mqt/core/include/mqt-core/boost/config/requires_threads.hpp +92 -0
- mqt/core/include/mqt-core/boost/config/stdlib/dinkumware.hpp +324 -0
- mqt/core/include/mqt-core/boost/config/stdlib/libcomo.hpp +93 -0
- mqt/core/include/mqt-core/boost/config/stdlib/libcpp.hpp +180 -0
- mqt/core/include/mqt-core/boost/config/stdlib/libstdcpp3.hpp +482 -0
- mqt/core/include/mqt-core/boost/config/stdlib/modena.hpp +79 -0
- mqt/core/include/mqt-core/boost/config/stdlib/msl.hpp +98 -0
- mqt/core/include/mqt-core/boost/config/stdlib/roguewave.hpp +208 -0
- mqt/core/include/mqt-core/boost/config/stdlib/sgi.hpp +168 -0
- mqt/core/include/mqt-core/boost/config/stdlib/stlport.hpp +258 -0
- mqt/core/include/mqt-core/boost/config/stdlib/vacpp.hpp +74 -0
- mqt/core/include/mqt-core/boost/config/stdlib/xlcpp_zos.hpp +61 -0
- mqt/core/include/mqt-core/boost/config/user.hpp +133 -0
- mqt/core/include/mqt-core/boost/config/warning_disable.hpp +47 -0
- mqt/core/include/mqt-core/boost/config/workaround.hpp +305 -0
- mqt/core/include/mqt-core/boost/config.hpp +67 -0
- mqt/core/include/mqt-core/boost/cstdint.hpp +556 -0
- mqt/core/include/mqt-core/boost/cxx11_char_types.hpp +70 -0
- mqt/core/include/mqt-core/boost/detail/workaround.hpp +10 -0
- mqt/core/include/mqt-core/boost/limits.hpp +146 -0
- mqt/core/include/mqt-core/boost/multiprecision/complex128.hpp +24 -0
- mqt/core/include/mqt-core/boost/multiprecision/complex_adaptor.hpp +1046 -0
- mqt/core/include/mqt-core/boost/multiprecision/concepts/mp_number_archetypes.hpp +257 -0
- mqt/core/include/mqt-core/boost/multiprecision/cpp_bin_float/io.hpp +698 -0
- mqt/core/include/mqt-core/boost/multiprecision/cpp_bin_float/transcendental.hpp +157 -0
- mqt/core/include/mqt-core/boost/multiprecision/cpp_bin_float.hpp +2297 -0
- mqt/core/include/mqt-core/boost/multiprecision/cpp_complex.hpp +12 -0
- mqt/core/include/mqt-core/boost/multiprecision/cpp_dec_float.hpp +3690 -0
- mqt/core/include/mqt-core/boost/multiprecision/cpp_int/add.hpp +368 -0
- mqt/core/include/mqt-core/boost/multiprecision/cpp_int/add_unsigned.hpp +387 -0
- mqt/core/include/mqt-core/boost/multiprecision/cpp_int/bitwise.hpp +889 -0
- mqt/core/include/mqt-core/boost/multiprecision/cpp_int/checked.hpp +178 -0
- mqt/core/include/mqt-core/boost/multiprecision/cpp_int/comparison.hpp +374 -0
- mqt/core/include/mqt-core/boost/multiprecision/cpp_int/cpp_int_config.hpp +161 -0
- mqt/core/include/mqt-core/boost/multiprecision/cpp_int/divide.hpp +703 -0
- mqt/core/include/mqt-core/boost/multiprecision/cpp_int/import_export.hpp +248 -0
- mqt/core/include/mqt-core/boost/multiprecision/cpp_int/intel_intrinsics.hpp +138 -0
- mqt/core/include/mqt-core/boost/multiprecision/cpp_int/limits.hpp +282 -0
- mqt/core/include/mqt-core/boost/multiprecision/cpp_int/literals.hpp +295 -0
- mqt/core/include/mqt-core/boost/multiprecision/cpp_int/misc.hpp +1457 -0
- mqt/core/include/mqt-core/boost/multiprecision/cpp_int/multiply.hpp +848 -0
- mqt/core/include/mqt-core/boost/multiprecision/cpp_int/serialize.hpp +211 -0
- mqt/core/include/mqt-core/boost/multiprecision/cpp_int/value_pack.hpp +42 -0
- mqt/core/include/mqt-core/boost/multiprecision/cpp_int.hpp +2360 -0
- mqt/core/include/mqt-core/boost/multiprecision/debug_adaptor.hpp +760 -0
- mqt/core/include/mqt-core/boost/multiprecision/detail/assert.hpp +29 -0
- mqt/core/include/mqt-core/boost/multiprecision/detail/atomic.hpp +62 -0
- mqt/core/include/mqt-core/boost/multiprecision/detail/bitscan.hpp +317 -0
- mqt/core/include/mqt-core/boost/multiprecision/detail/check_cpp11_config.hpp +64 -0
- mqt/core/include/mqt-core/boost/multiprecision/detail/constexpr.hpp +88 -0
- mqt/core/include/mqt-core/boost/multiprecision/detail/default_ops.hpp +4052 -0
- mqt/core/include/mqt-core/boost/multiprecision/detail/digits.hpp +49 -0
- mqt/core/include/mqt-core/boost/multiprecision/detail/dynamic_array.hpp +44 -0
- mqt/core/include/mqt-core/boost/multiprecision/detail/empty_value.hpp +87 -0
- mqt/core/include/mqt-core/boost/multiprecision/detail/endian.hpp +35 -0
- mqt/core/include/mqt-core/boost/multiprecision/detail/et_ops.hpp +1831 -0
- mqt/core/include/mqt-core/boost/multiprecision/detail/float128_functions.hpp +95 -0
- mqt/core/include/mqt-core/boost/multiprecision/detail/float_string_cvt.hpp +333 -0
- mqt/core/include/mqt-core/boost/multiprecision/detail/fpclassify.hpp +101 -0
- mqt/core/include/mqt-core/boost/multiprecision/detail/functions/constants.hpp +288 -0
- mqt/core/include/mqt-core/boost/multiprecision/detail/functions/pow.hpp +905 -0
- mqt/core/include/mqt-core/boost/multiprecision/detail/functions/trig.hpp +1058 -0
- mqt/core/include/mqt-core/boost/multiprecision/detail/functions/trunc.hpp +82 -0
- mqt/core/include/mqt-core/boost/multiprecision/detail/generic_interconvert.hpp +687 -0
- mqt/core/include/mqt-core/boost/multiprecision/detail/hash.hpp +56 -0
- mqt/core/include/mqt-core/boost/multiprecision/detail/integer_ops.hpp +474 -0
- mqt/core/include/mqt-core/boost/multiprecision/detail/itos.hpp +39 -0
- mqt/core/include/mqt-core/boost/multiprecision/detail/min_max.hpp +106 -0
- mqt/core/include/mqt-core/boost/multiprecision/detail/no_et_ops.hpp +661 -0
- mqt/core/include/mqt-core/boost/multiprecision/detail/no_exceptions_support.hpp +55 -0
- mqt/core/include/mqt-core/boost/multiprecision/detail/number_base.hpp +1656 -0
- mqt/core/include/mqt-core/boost/multiprecision/detail/number_compare.hpp +848 -0
- mqt/core/include/mqt-core/boost/multiprecision/detail/precision.hpp +313 -0
- mqt/core/include/mqt-core/boost/multiprecision/detail/rebind.hpp +19 -0
- mqt/core/include/mqt-core/boost/multiprecision/detail/standalone_config.hpp +148 -0
- mqt/core/include/mqt-core/boost/multiprecision/detail/static_array.hpp +42 -0
- mqt/core/include/mqt-core/boost/multiprecision/detail/string_helpers.hpp +48 -0
- mqt/core/include/mqt-core/boost/multiprecision/detail/tables.hpp +80 -0
- mqt/core/include/mqt-core/boost/multiprecision/detail/ublas_interop.hpp +75 -0
- mqt/core/include/mqt-core/boost/multiprecision/detail/uniform_int_distribution.hpp +212 -0
- mqt/core/include/mqt-core/boost/multiprecision/detail/utype_helper.hpp +374 -0
- mqt/core/include/mqt-core/boost/multiprecision/eigen.hpp +248 -0
- mqt/core/include/mqt-core/boost/multiprecision/float128.hpp +920 -0
- mqt/core/include/mqt-core/boost/multiprecision/fwd.hpp +268 -0
- mqt/core/include/mqt-core/boost/multiprecision/gmp.hpp +4060 -0
- mqt/core/include/mqt-core/boost/multiprecision/integer.hpp +363 -0
- mqt/core/include/mqt-core/boost/multiprecision/logged_adaptor.hpp +834 -0
- mqt/core/include/mqt-core/boost/multiprecision/miller_rabin.hpp +221 -0
- mqt/core/include/mqt-core/boost/multiprecision/mpc.hpp +1721 -0
- mqt/core/include/mqt-core/boost/multiprecision/mpfi.hpp +2559 -0
- mqt/core/include/mqt-core/boost/multiprecision/mpfr.hpp +3644 -0
- mqt/core/include/mqt-core/boost/multiprecision/number.hpp +2500 -0
- mqt/core/include/mqt-core/boost/multiprecision/random.hpp +23 -0
- mqt/core/include/mqt-core/boost/multiprecision/rational_adaptor.hpp +1289 -0
- mqt/core/include/mqt-core/boost/multiprecision/tommath.hpp +1034 -0
- mqt/core/include/mqt-core/boost/multiprecision/traits/explicit_conversion.hpp +67 -0
- mqt/core/include/mqt-core/boost/multiprecision/traits/extract_exponent_type.hpp +28 -0
- mqt/core/include/mqt-core/boost/multiprecision/traits/is_backend.hpp +91 -0
- mqt/core/include/mqt-core/boost/multiprecision/traits/is_byte_container.hpp +51 -0
- mqt/core/include/mqt-core/boost/multiprecision/traits/is_complex.hpp +22 -0
- mqt/core/include/mqt-core/boost/multiprecision/traits/is_convertible_arithmetic.hpp +51 -0
- mqt/core/include/mqt-core/boost/multiprecision/traits/is_restricted_conversion.hpp +47 -0
- mqt/core/include/mqt-core/boost/multiprecision/traits/is_variable_precision.hpp +25 -0
- mqt/core/include/mqt-core/boost/multiprecision/traits/max_digits10.hpp +79 -0
- mqt/core/include/mqt-core/boost/multiprecision/traits/std_integer_traits.hpp +90 -0
- mqt/core/include/mqt-core/boost/multiprecision/traits/transcendental_reduction_type.hpp +21 -0
- mqt/core/include/mqt-core/boost/version.hpp +32 -0
- mqt/core/include/mqt-core/circuit_optimizer/CircuitOptimizer.hpp +119 -0
- mqt/core/include/mqt-core/circuit_optimizer/mqt_core_circuit_optimizer_export.h +43 -0
- mqt/core/include/mqt-core/datastructures/DirectedAcyclicGraph.hpp +117 -0
- mqt/core/include/mqt-core/datastructures/DirectedGraph.hpp +158 -0
- mqt/core/include/mqt-core/datastructures/DisjointSet.hpp +50 -0
- mqt/core/include/mqt-core/datastructures/Layer.hpp +172 -0
- mqt/core/include/mqt-core/datastructures/SymmetricMatrix.hpp +57 -0
- mqt/core/include/mqt-core/datastructures/UndirectedGraph.hpp +227 -0
- mqt/core/include/mqt-core/datastructures/mqt_core_ds_export.h +43 -0
- mqt/core/include/mqt-core/dd/Approximation.hpp +45 -0
- mqt/core/include/mqt-core/dd/CachedEdge.hpp +174 -0
- mqt/core/include/mqt-core/dd/Complex.hpp +165 -0
- mqt/core/include/mqt-core/dd/ComplexNumbers.hpp +150 -0
- mqt/core/include/mqt-core/dd/ComplexValue.hpp +184 -0
- mqt/core/include/mqt-core/dd/ComputeTable.hpp +183 -0
- mqt/core/include/mqt-core/dd/DDDefinitions.hpp +139 -0
- mqt/core/include/mqt-core/dd/DDpackageConfig.hpp +104 -0
- mqt/core/include/mqt-core/dd/DensityNoiseTable.hpp +114 -0
- mqt/core/include/mqt-core/dd/Edge.hpp +416 -0
- mqt/core/include/mqt-core/dd/Export.hpp +438 -0
- mqt/core/include/mqt-core/dd/FunctionalityConstruction.hpp +75 -0
- mqt/core/include/mqt-core/dd/GateMatrixDefinitions.hpp +43 -0
- mqt/core/include/mqt-core/dd/LinkedListBase.hpp +45 -0
- mqt/core/include/mqt-core/dd/MemoryManager.hpp +193 -0
- mqt/core/include/mqt-core/dd/Node.hpp +223 -0
- mqt/core/include/mqt-core/dd/NoiseFunctionality.hpp +144 -0
- mqt/core/include/mqt-core/dd/Operations.hpp +306 -0
- mqt/core/include/mqt-core/dd/Package.hpp +2036 -0
- mqt/core/include/mqt-core/dd/Package_fwd.hpp +22 -0
- mqt/core/include/mqt-core/dd/RealNumber.hpp +255 -0
- mqt/core/include/mqt-core/dd/RealNumberUniqueTable.hpp +217 -0
- mqt/core/include/mqt-core/dd/Simulation.hpp +98 -0
- mqt/core/include/mqt-core/dd/StateGeneration.hpp +143 -0
- mqt/core/include/mqt-core/dd/StochasticNoiseOperationTable.hpp +88 -0
- mqt/core/include/mqt-core/dd/UnaryComputeTable.hpp +121 -0
- mqt/core/include/mqt-core/dd/UniqueTable.hpp +243 -0
- mqt/core/include/mqt-core/dd/mqt_core_dd_export.h +43 -0
- mqt/core/include/mqt-core/dd/statistics/MemoryManagerStatistics.hpp +84 -0
- mqt/core/include/mqt-core/dd/statistics/PackageStatistics.hpp +55 -0
- mqt/core/include/mqt-core/dd/statistics/Statistics.hpp +48 -0
- mqt/core/include/mqt-core/dd/statistics/TableStatistics.hpp +79 -0
- mqt/core/include/mqt-core/dd/statistics/UniqueTableStatistics.hpp +31 -0
- mqt/core/include/mqt-core/fomac/FoMaC.hpp +568 -0
- mqt/core/include/mqt-core/ir/Definitions.hpp +108 -0
- mqt/core/include/mqt-core/ir/Permutation.hpp +213 -0
- mqt/core/include/mqt-core/ir/QuantumComputation.hpp +596 -0
- mqt/core/include/mqt-core/ir/Register.hpp +125 -0
- mqt/core/include/mqt-core/ir/mqt_core_ir_export.h +43 -0
- mqt/core/include/mqt-core/ir/operations/AodOperation.hpp +92 -0
- mqt/core/include/mqt-core/ir/operations/CompoundOperation.hpp +212 -0
- mqt/core/include/mqt-core/ir/operations/Control.hpp +142 -0
- mqt/core/include/mqt-core/ir/operations/Expression.hpp +847 -0
- mqt/core/include/mqt-core/ir/operations/IfElseOperation.hpp +169 -0
- mqt/core/include/mqt-core/ir/operations/NonUnitaryOperation.hpp +118 -0
- mqt/core/include/mqt-core/ir/operations/OpType.hpp +120 -0
- mqt/core/include/mqt-core/ir/operations/OpType.inc +76 -0
- mqt/core/include/mqt-core/ir/operations/Operation.hpp +247 -0
- mqt/core/include/mqt-core/ir/operations/StandardOperation.hpp +140 -0
- mqt/core/include/mqt-core/ir/operations/SymbolicOperation.hpp +144 -0
- mqt/core/include/mqt-core/mqt_na_qdmi/device.h +602 -0
- mqt/core/include/mqt-core/mqt_na_qdmi/types.h +78 -0
- mqt/core/include/mqt-core/na/NAComputation.hpp +185 -0
- mqt/core/include/mqt-core/na/device/Device.hpp +410 -0
- mqt/core/include/mqt-core/na/device/DeviceMemberInitializers.hpp +724 -0
- mqt/core/include/mqt-core/na/device/Generator.hpp +447 -0
- mqt/core/include/mqt-core/na/entities/Atom.hpp +62 -0
- mqt/core/include/mqt-core/na/entities/Location.hpp +154 -0
- mqt/core/include/mqt-core/na/entities/Zone.hpp +95 -0
- mqt/core/include/mqt-core/na/fomac/Device.hpp +169 -0
- mqt/core/include/mqt-core/na/mqt_core_na_export.h +43 -0
- mqt/core/include/mqt-core/na/operations/GlobalCZOp.hpp +38 -0
- mqt/core/include/mqt-core/na/operations/GlobalOp.hpp +58 -0
- mqt/core/include/mqt-core/na/operations/GlobalRYOp.hpp +42 -0
- mqt/core/include/mqt-core/na/operations/LoadOp.hpp +89 -0
- mqt/core/include/mqt-core/na/operations/LocalOp.hpp +56 -0
- mqt/core/include/mqt-core/na/operations/LocalRZOp.hpp +42 -0
- mqt/core/include/mqt-core/na/operations/LocalUOp.hpp +49 -0
- mqt/core/include/mqt-core/na/operations/MoveOp.hpp +66 -0
- mqt/core/include/mqt-core/na/operations/Op.hpp +62 -0
- mqt/core/include/mqt-core/na/operations/ShuttlingOp.hpp +51 -0
- mqt/core/include/mqt-core/na/operations/StoreOp.hpp +87 -0
- mqt/core/include/mqt-core/qasm3/Exception.hpp +85 -0
- mqt/core/include/mqt-core/qasm3/Gate.hpp +65 -0
- mqt/core/include/mqt-core/qasm3/Importer.hpp +192 -0
- mqt/core/include/mqt-core/qasm3/InstVisitor.hpp +145 -0
- mqt/core/include/mqt-core/qasm3/NestedEnvironment.hpp +41 -0
- mqt/core/include/mqt-core/qasm3/Parser.hpp +170 -0
- mqt/core/include/mqt-core/qasm3/Scanner.hpp +73 -0
- mqt/core/include/mqt-core/qasm3/Statement.hpp +486 -0
- mqt/core/include/mqt-core/qasm3/Statement_fwd.hpp +39 -0
- mqt/core/include/mqt-core/qasm3/StdGates.hpp +232 -0
- mqt/core/include/mqt-core/qasm3/Token.hpp +198 -0
- mqt/core/include/mqt-core/qasm3/Types.hpp +238 -0
- mqt/core/include/mqt-core/qasm3/Types_fwd.hpp +22 -0
- mqt/core/include/mqt-core/qasm3/mqt_core_qasm_export.h +43 -0
- mqt/core/include/mqt-core/qasm3/passes/CompilerPass.hpp +22 -0
- mqt/core/include/mqt-core/qasm3/passes/ConstEvalPass.hpp +102 -0
- mqt/core/include/mqt-core/qasm3/passes/TypeCheckPass.hpp +124 -0
- mqt/core/include/mqt-core/qdmi/Driver.hpp +431 -0
- mqt/core/include/mqt-core/zx/FunctionalityConstruction.hpp +125 -0
- mqt/core/include/mqt-core/zx/Rational.hpp +318 -0
- mqt/core/include/mqt-core/zx/Rules.hpp +132 -0
- mqt/core/include/mqt-core/zx/Simplify.hpp +182 -0
- mqt/core/include/mqt-core/zx/Utils.hpp +212 -0
- mqt/core/include/mqt-core/zx/ZXDefinitions.hpp +93 -0
- mqt/core/include/mqt-core/zx/ZXDiagram.hpp +480 -0
- mqt/core/include/mqt-core/zx/mqt_core_zx_export.h +43 -0
- mqt/core/include/nlohmann/adl_serializer.hpp +55 -0
- mqt/core/include/nlohmann/byte_container_with_subtype.hpp +103 -0
- mqt/core/include/nlohmann/detail/abi_macros.hpp +111 -0
- mqt/core/include/nlohmann/detail/conversions/from_json.hpp +577 -0
- mqt/core/include/nlohmann/detail/conversions/to_chars.hpp +1118 -0
- mqt/core/include/nlohmann/detail/conversions/to_json.hpp +479 -0
- mqt/core/include/nlohmann/detail/exceptions.hpp +291 -0
- mqt/core/include/nlohmann/detail/hash.hpp +129 -0
- mqt/core/include/nlohmann/detail/input/binary_reader.hpp +3068 -0
- mqt/core/include/nlohmann/detail/input/input_adapters.hpp +549 -0
- mqt/core/include/nlohmann/detail/input/json_sax.hpp +986 -0
- mqt/core/include/nlohmann/detail/input/lexer.hpp +1643 -0
- mqt/core/include/nlohmann/detail/input/parser.hpp +519 -0
- mqt/core/include/nlohmann/detail/input/position_t.hpp +37 -0
- mqt/core/include/nlohmann/detail/iterators/internal_iterator.hpp +35 -0
- mqt/core/include/nlohmann/detail/iterators/iter_impl.hpp +760 -0
- mqt/core/include/nlohmann/detail/iterators/iteration_proxy.hpp +235 -0
- mqt/core/include/nlohmann/detail/iterators/iterator_traits.hpp +61 -0
- mqt/core/include/nlohmann/detail/iterators/json_reverse_iterator.hpp +130 -0
- mqt/core/include/nlohmann/detail/iterators/primitive_iterator.hpp +132 -0
- mqt/core/include/nlohmann/detail/json_custom_base_class.hpp +39 -0
- mqt/core/include/nlohmann/detail/json_pointer.hpp +988 -0
- mqt/core/include/nlohmann/detail/json_ref.hpp +78 -0
- mqt/core/include/nlohmann/detail/macro_scope.hpp +595 -0
- mqt/core/include/nlohmann/detail/macro_unscope.hpp +46 -0
- mqt/core/include/nlohmann/detail/meta/call_std/begin.hpp +17 -0
- mqt/core/include/nlohmann/detail/meta/call_std/end.hpp +17 -0
- mqt/core/include/nlohmann/detail/meta/cpp_future.hpp +171 -0
- mqt/core/include/nlohmann/detail/meta/detected.hpp +70 -0
- mqt/core/include/nlohmann/detail/meta/identity_tag.hpp +21 -0
- mqt/core/include/nlohmann/detail/meta/is_sax.hpp +159 -0
- mqt/core/include/nlohmann/detail/meta/std_fs.hpp +29 -0
- mqt/core/include/nlohmann/detail/meta/type_traits.hpp +795 -0
- mqt/core/include/nlohmann/detail/meta/void_t.hpp +24 -0
- mqt/core/include/nlohmann/detail/output/binary_writer.hpp +1850 -0
- mqt/core/include/nlohmann/detail/output/output_adapters.hpp +147 -0
- mqt/core/include/nlohmann/detail/output/serializer.hpp +988 -0
- mqt/core/include/nlohmann/detail/string_concat.hpp +146 -0
- mqt/core/include/nlohmann/detail/string_escape.hpp +72 -0
- mqt/core/include/nlohmann/detail/string_utils.hpp +37 -0
- mqt/core/include/nlohmann/detail/value_t.hpp +118 -0
- mqt/core/include/nlohmann/json.hpp +5306 -0
- mqt/core/include/nlohmann/json_fwd.hpp +75 -0
- mqt/core/include/nlohmann/ordered_map.hpp +359 -0
- mqt/core/include/nlohmann/thirdparty/hedley/hedley.hpp +2045 -0
- mqt/core/include/nlohmann/thirdparty/hedley/hedley_undef.hpp +158 -0
- mqt/core/include/qdmi/qdmi/client.h +990 -0
- mqt/core/include/qdmi/qdmi/constants.h +1139 -0
- mqt/core/include/qdmi/qdmi/device.h +602 -0
- mqt/core/include/qdmi/qdmi/types.h +78 -0
- mqt/core/include/spdlog/async.h +99 -0
- mqt/core/include/spdlog/async_logger-inl.h +84 -0
- mqt/core/include/spdlog/async_logger.h +74 -0
- mqt/core/include/spdlog/cfg/argv.h +40 -0
- mqt/core/include/spdlog/cfg/env.h +36 -0
- mqt/core/include/spdlog/cfg/helpers-inl.h +107 -0
- mqt/core/include/spdlog/cfg/helpers.h +29 -0
- mqt/core/include/spdlog/common-inl.h +68 -0
- mqt/core/include/spdlog/common.h +406 -0
- mqt/core/include/spdlog/details/backtracer-inl.h +63 -0
- mqt/core/include/spdlog/details/backtracer.h +45 -0
- mqt/core/include/spdlog/details/circular_q.h +115 -0
- mqt/core/include/spdlog/details/console_globals.h +28 -0
- mqt/core/include/spdlog/details/file_helper-inl.h +153 -0
- mqt/core/include/spdlog/details/file_helper.h +61 -0
- mqt/core/include/spdlog/details/fmt_helper.h +141 -0
- mqt/core/include/spdlog/details/log_msg-inl.h +44 -0
- mqt/core/include/spdlog/details/log_msg.h +40 -0
- mqt/core/include/spdlog/details/log_msg_buffer-inl.h +54 -0
- mqt/core/include/spdlog/details/log_msg_buffer.h +32 -0
- mqt/core/include/spdlog/details/mpmc_blocking_q.h +177 -0
- mqt/core/include/spdlog/details/null_mutex.h +35 -0
- mqt/core/include/spdlog/details/os-inl.h +606 -0
- mqt/core/include/spdlog/details/os.h +127 -0
- mqt/core/include/spdlog/details/periodic_worker-inl.h +26 -0
- mqt/core/include/spdlog/details/periodic_worker.h +58 -0
- mqt/core/include/spdlog/details/registry-inl.h +270 -0
- mqt/core/include/spdlog/details/registry.h +131 -0
- mqt/core/include/spdlog/details/synchronous_factory.h +22 -0
- mqt/core/include/spdlog/details/tcp_client-windows.h +135 -0
- mqt/core/include/spdlog/details/tcp_client.h +127 -0
- mqt/core/include/spdlog/details/thread_pool-inl.h +126 -0
- mqt/core/include/spdlog/details/thread_pool.h +117 -0
- mqt/core/include/spdlog/details/udp_client-windows.h +98 -0
- mqt/core/include/spdlog/details/udp_client.h +81 -0
- mqt/core/include/spdlog/details/windows_include.h +11 -0
- mqt/core/include/spdlog/fmt/bin_to_hex.h +224 -0
- mqt/core/include/spdlog/fmt/bundled/args.h +220 -0
- mqt/core/include/spdlog/fmt/bundled/base.h +2989 -0
- mqt/core/include/spdlog/fmt/bundled/chrono.h +2330 -0
- mqt/core/include/spdlog/fmt/bundled/color.h +637 -0
- mqt/core/include/spdlog/fmt/bundled/compile.h +539 -0
- mqt/core/include/spdlog/fmt/bundled/core.h +5 -0
- mqt/core/include/spdlog/fmt/bundled/fmt.license.rst +27 -0
- mqt/core/include/spdlog/fmt/bundled/format-inl.h +1948 -0
- mqt/core/include/spdlog/fmt/bundled/format.h +4244 -0
- mqt/core/include/spdlog/fmt/bundled/os.h +427 -0
- mqt/core/include/spdlog/fmt/bundled/ostream.h +167 -0
- mqt/core/include/spdlog/fmt/bundled/printf.h +633 -0
- mqt/core/include/spdlog/fmt/bundled/ranges.h +850 -0
- mqt/core/include/spdlog/fmt/bundled/std.h +728 -0
- mqt/core/include/spdlog/fmt/bundled/xchar.h +369 -0
- mqt/core/include/spdlog/fmt/chrono.h +23 -0
- mqt/core/include/spdlog/fmt/compile.h +23 -0
- mqt/core/include/spdlog/fmt/fmt.h +30 -0
- mqt/core/include/spdlog/fmt/ostr.h +23 -0
- mqt/core/include/spdlog/fmt/ranges.h +23 -0
- mqt/core/include/spdlog/fmt/std.h +24 -0
- mqt/core/include/spdlog/fmt/xchar.h +23 -0
- mqt/core/include/spdlog/formatter.h +17 -0
- mqt/core/include/spdlog/fwd.h +18 -0
- mqt/core/include/spdlog/logger-inl.h +198 -0
- mqt/core/include/spdlog/logger.h +379 -0
- mqt/core/include/spdlog/mdc.h +52 -0
- mqt/core/include/spdlog/pattern_formatter-inl.h +1340 -0
- mqt/core/include/spdlog/pattern_formatter.h +118 -0
- mqt/core/include/spdlog/sinks/android_sink.h +137 -0
- mqt/core/include/spdlog/sinks/ansicolor_sink-inl.h +142 -0
- mqt/core/include/spdlog/sinks/ansicolor_sink.h +116 -0
- mqt/core/include/spdlog/sinks/base_sink-inl.h +59 -0
- mqt/core/include/spdlog/sinks/base_sink.h +51 -0
- mqt/core/include/spdlog/sinks/basic_file_sink-inl.h +48 -0
- mqt/core/include/spdlog/sinks/basic_file_sink.h +66 -0
- mqt/core/include/spdlog/sinks/callback_sink.h +56 -0
- mqt/core/include/spdlog/sinks/daily_file_sink.h +254 -0
- mqt/core/include/spdlog/sinks/dist_sink.h +81 -0
- mqt/core/include/spdlog/sinks/dup_filter_sink.h +91 -0
- mqt/core/include/spdlog/sinks/hourly_file_sink.h +193 -0
- mqt/core/include/spdlog/sinks/kafka_sink.h +119 -0
- mqt/core/include/spdlog/sinks/mongo_sink.h +108 -0
- mqt/core/include/spdlog/sinks/msvc_sink.h +68 -0
- mqt/core/include/spdlog/sinks/null_sink.h +41 -0
- mqt/core/include/spdlog/sinks/ostream_sink.h +43 -0
- mqt/core/include/spdlog/sinks/qt_sinks.h +304 -0
- mqt/core/include/spdlog/sinks/ringbuffer_sink.h +67 -0
- mqt/core/include/spdlog/sinks/rotating_file_sink-inl.h +179 -0
- mqt/core/include/spdlog/sinks/rotating_file_sink.h +93 -0
- mqt/core/include/spdlog/sinks/sink-inl.h +22 -0
- mqt/core/include/spdlog/sinks/sink.h +34 -0
- mqt/core/include/spdlog/sinks/stdout_color_sinks-inl.h +38 -0
- mqt/core/include/spdlog/sinks/stdout_color_sinks.h +49 -0
- mqt/core/include/spdlog/sinks/stdout_sinks-inl.h +127 -0
- mqt/core/include/spdlog/sinks/stdout_sinks.h +84 -0
- mqt/core/include/spdlog/sinks/syslog_sink.h +104 -0
- mqt/core/include/spdlog/sinks/systemd_sink.h +121 -0
- mqt/core/include/spdlog/sinks/tcp_sink.h +75 -0
- mqt/core/include/spdlog/sinks/udp_sink.h +69 -0
- mqt/core/include/spdlog/sinks/win_eventlog_sink.h +260 -0
- mqt/core/include/spdlog/sinks/wincolor_sink-inl.h +172 -0
- mqt/core/include/spdlog/sinks/wincolor_sink.h +82 -0
- mqt/core/include/spdlog/spdlog-inl.h +96 -0
- mqt/core/include/spdlog/spdlog.h +357 -0
- mqt/core/include/spdlog/stopwatch.h +66 -0
- mqt/core/include/spdlog/tweakme.h +148 -0
- mqt/core/include/spdlog/version.h +11 -0
- mqt/core/ir/__init__.pyi +2078 -0
- mqt/core/ir/operations.pyi +1011 -0
- mqt/core/ir/registers.pyi +91 -0
- mqt/core/ir/symbolic.pyi +177 -0
- mqt/core/ir.cp313t-win_amd64.pyd +0 -0
- mqt/core/lib/mqt-core-algorithms.lib +0 -0
- mqt/core/lib/mqt-core-circuit-optimizer.lib +0 -0
- mqt/core/lib/mqt-core-dd.lib +0 -0
- mqt/core/lib/mqt-core-ds.lib +0 -0
- mqt/core/lib/mqt-core-fomac.lib +0 -0
- mqt/core/lib/mqt-core-ir.lib +0 -0
- mqt/core/lib/mqt-core-na-fomac.lib +0 -0
- mqt/core/lib/mqt-core-na.lib +0 -0
- mqt/core/lib/mqt-core-qasm.lib +0 -0
- mqt/core/lib/mqt-core-qdmi-driver.lib +0 -0
- mqt/core/lib/mqt-core-qdmi-na-device-gen.lib +0 -0
- mqt/core/lib/mqt-core-qdmi-na-device.lib +0 -0
- mqt/core/lib/mqt-core-zx.lib +0 -0
- mqt/core/lib/pkgconfig/spdlog.pc +13 -0
- mqt/core/lib/spdlog.lib +0 -0
- mqt/core/na/__init__.py +12 -0
- mqt/core/na/fomac.cp313t-win_amd64.pyd +0 -0
- mqt/core/na/fomac.pyi +117 -0
- mqt/core/nlohmann_json.natvis +278 -0
- mqt/core/plugins/__init__.py +9 -0
- mqt/core/plugins/qiskit/__init__.py +19 -0
- mqt/core/plugins/qiskit/mqt_to_qiskit.py +420 -0
- mqt/core/plugins/qiskit/qiskit_to_mqt.py +562 -0
- mqt/core/py.typed +2 -0
- mqt/core/share/cmake/mqt-core/AddMQTPythonBinding.cmake +55 -0
- mqt/core/share/cmake/mqt-core/Cache.cmake +33 -0
- mqt/core/share/cmake/mqt-core/FindGMP.cmake +103 -0
- mqt/core/share/cmake/mqt-core/PackageAddTest.cmake +46 -0
- mqt/core/share/cmake/mqt-core/PreventInSourceBuilds.cmake +25 -0
- mqt/core/share/cmake/mqt-core/StandardProjectSettings.cmake +87 -0
- mqt/core/share/cmake/mqt-core/mqt-core-config-version.cmake +85 -0
- mqt/core/share/cmake/mqt-core/mqt-core-config.cmake +52 -0
- mqt/core/share/cmake/mqt-core/mqt-core-targets-release.cmake +141 -0
- mqt/core/share/cmake/mqt-core/mqt-core-targets.cmake +445 -0
- mqt/core/share/cmake/nlohmann_json/nlohmann_jsonConfig.cmake +15 -0
- mqt/core/share/cmake/nlohmann_json/nlohmann_jsonConfigVersion.cmake +20 -0
- mqt/core/share/cmake/nlohmann_json/nlohmann_jsonTargets.cmake +110 -0
- mqt/core/share/cmake/qdmi/Cache.cmake +44 -0
- mqt/core/share/cmake/qdmi/PrefixHandling.cmake +78 -0
- mqt/core/share/cmake/qdmi/prefix_defs.txt +26 -0
- mqt/core/share/cmake/qdmi/qdmi-config-version.cmake +85 -0
- mqt/core/share/cmake/qdmi/qdmi-config.cmake +42 -0
- mqt/core/share/cmake/qdmi/qdmi-targets.cmake +129 -0
- mqt/core/share/cmake/spdlog/spdlogConfig.cmake +44 -0
- mqt/core/share/cmake/spdlog/spdlogConfigTargets-release.cmake +19 -0
- mqt/core/share/cmake/spdlog/spdlogConfigTargets.cmake +121 -0
- mqt/core/share/cmake/spdlog/spdlogConfigVersion.cmake +65 -0
- mqt/core/share/pkgconfig/nlohmann_json.pc +7 -0
- mqt_core-3.3.2.dist-info/DELVEWHEEL +2 -0
- mqt_core-3.3.2.dist-info/METADATA +210 -0
- mqt_core-3.3.2.dist-info/RECORD +537 -0
- mqt_core-3.3.2.dist-info/WHEEL +5 -0
- mqt_core-3.3.2.dist-info/entry_points.txt +4 -0
- mqt_core-3.3.2.dist-info/licenses/LICENSE.md +22 -0
- mqt_core.libs/msvcp140.dll +0 -0
|
@@ -0,0 +1,1034 @@
|
|
|
1
|
+
///////////////////////////////////////////////////////////////////////////////
|
|
2
|
+
// Copyright 2011 John Maddock.
|
|
3
|
+
// Copyright 2021 Matt Borland. Distributed under the Boost
|
|
4
|
+
// Software License, Version 1.0. (See accompanying file
|
|
5
|
+
// LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
|
|
6
|
+
|
|
7
|
+
#ifndef BOOST_MP_TOMMATH_HPP
|
|
8
|
+
#define BOOST_MP_TOMMATH_HPP
|
|
9
|
+
|
|
10
|
+
#include <cctype>
|
|
11
|
+
#include <climits>
|
|
12
|
+
#include <cmath>
|
|
13
|
+
#include <cstdint>
|
|
14
|
+
#include <cstddef>
|
|
15
|
+
#include <cstdlib>
|
|
16
|
+
#include <limits>
|
|
17
|
+
#include <memory>
|
|
18
|
+
#include <string>
|
|
19
|
+
|
|
20
|
+
#include <tommath.h>
|
|
21
|
+
|
|
22
|
+
#include <boost/multiprecision/detail/standalone_config.hpp>
|
|
23
|
+
#include <boost/multiprecision/detail/fpclassify.hpp>
|
|
24
|
+
#include <boost/multiprecision/number.hpp>
|
|
25
|
+
#include <boost/multiprecision/rational_adaptor.hpp>
|
|
26
|
+
#include <boost/multiprecision/detail/integer_ops.hpp>
|
|
27
|
+
#include <boost/multiprecision/detail/hash.hpp>
|
|
28
|
+
#include <boost/multiprecision/detail/no_exceptions_support.hpp>
|
|
29
|
+
#include <boost/multiprecision/detail/assert.hpp>
|
|
30
|
+
|
|
31
|
+
namespace boost {
|
|
32
|
+
namespace multiprecision {
|
|
33
|
+
namespace backends {
|
|
34
|
+
|
|
35
|
+
namespace detail {
|
|
36
|
+
|
|
37
|
+
template <class ErrType>
|
|
38
|
+
inline void check_tommath_result(ErrType v)
|
|
39
|
+
{
|
|
40
|
+
if (v != MP_OKAY)
|
|
41
|
+
{
|
|
42
|
+
BOOST_MP_THROW_EXCEPTION(std::runtime_error(mp_error_to_string(v)));
|
|
43
|
+
}
|
|
44
|
+
}
|
|
45
|
+
|
|
46
|
+
} // namespace detail
|
|
47
|
+
|
|
48
|
+
void eval_multiply(tommath_int& t, const tommath_int& o);
|
|
49
|
+
void eval_add(tommath_int& t, const tommath_int& o);
|
|
50
|
+
|
|
51
|
+
struct tommath_int
|
|
52
|
+
{
|
|
53
|
+
using signed_types = std::tuple<std::int32_t, long long> ;
|
|
54
|
+
using unsigned_types = std::tuple<std::uint32_t, unsigned long long>;
|
|
55
|
+
using float_types = std::tuple<long double> ;
|
|
56
|
+
|
|
57
|
+
tommath_int()
|
|
58
|
+
{
|
|
59
|
+
detail::check_tommath_result(mp_init(&m_data));
|
|
60
|
+
}
|
|
61
|
+
tommath_int(const tommath_int& o)
|
|
62
|
+
{
|
|
63
|
+
detail::check_tommath_result(mp_init_copy(&m_data, const_cast< ::mp_int*>(&o.m_data)));
|
|
64
|
+
}
|
|
65
|
+
// rvalues:
|
|
66
|
+
tommath_int(tommath_int&& o) noexcept
|
|
67
|
+
{
|
|
68
|
+
m_data = o.m_data;
|
|
69
|
+
o.m_data.dp = 0;
|
|
70
|
+
}
|
|
71
|
+
tommath_int& operator=(tommath_int&& o)
|
|
72
|
+
{
|
|
73
|
+
mp_exch(&m_data, &o.m_data);
|
|
74
|
+
return *this;
|
|
75
|
+
}
|
|
76
|
+
tommath_int& operator=(const tommath_int& o)
|
|
77
|
+
{
|
|
78
|
+
if (m_data.dp == nullptr)
|
|
79
|
+
detail::check_tommath_result(mp_init(&m_data));
|
|
80
|
+
if (o.m_data.dp)
|
|
81
|
+
detail::check_tommath_result(mp_copy(const_cast< ::mp_int*>(&o.m_data), &m_data));
|
|
82
|
+
return *this;
|
|
83
|
+
}
|
|
84
|
+
#ifndef mp_get_u64
|
|
85
|
+
// Pick off 32 bit chunks for mp_set_int:
|
|
86
|
+
tommath_int& operator=(unsigned long long i)
|
|
87
|
+
{
|
|
88
|
+
if (m_data.dp == nullptr)
|
|
89
|
+
detail::check_tommath_result(mp_init(&m_data));
|
|
90
|
+
unsigned long long mask = ((1uLL << 32) - 1);
|
|
91
|
+
unsigned shift = 0;
|
|
92
|
+
::mp_int t;
|
|
93
|
+
detail::check_tommath_result(mp_init(&t));
|
|
94
|
+
mp_zero(&m_data);
|
|
95
|
+
while (i)
|
|
96
|
+
{
|
|
97
|
+
detail::check_tommath_result(mp_set_int(&t, static_cast<unsigned>(i & mask)));
|
|
98
|
+
if (shift)
|
|
99
|
+
detail::check_tommath_result(mp_mul_2d(&t, shift, &t));
|
|
100
|
+
detail::check_tommath_result((mp_add(&m_data, &t, &m_data)));
|
|
101
|
+
shift += 32;
|
|
102
|
+
i >>= 32;
|
|
103
|
+
}
|
|
104
|
+
mp_clear(&t);
|
|
105
|
+
return *this;
|
|
106
|
+
}
|
|
107
|
+
#elif !defined(ULLONG_MAX) || (ULLONG_MAX != 18446744073709551615uLL)
|
|
108
|
+
// Pick off 64 bit chunks for mp_set_u64:
|
|
109
|
+
tommath_int& operator=(unsigned long long i)
|
|
110
|
+
{
|
|
111
|
+
if (m_data.dp == nullptr)
|
|
112
|
+
detail::check_tommath_result(mp_init(&m_data));
|
|
113
|
+
if(sizeof(unsigned long long) * CHAR_BIT == 64)
|
|
114
|
+
{
|
|
115
|
+
mp_set_u64(&m_data, i);
|
|
116
|
+
return *this;
|
|
117
|
+
}
|
|
118
|
+
unsigned long long mask = ((1uLL << 64) - 1);
|
|
119
|
+
unsigned shift = 0;
|
|
120
|
+
::mp_int t;
|
|
121
|
+
detail::check_tommath_result(mp_init(&t));
|
|
122
|
+
mp_zero(&m_data);
|
|
123
|
+
while (i)
|
|
124
|
+
{
|
|
125
|
+
detail::check_tommath_result(mp_set_u64(&t, static_cast<std::uint64_t>(i & mask)));
|
|
126
|
+
if (shift)
|
|
127
|
+
detail::check_tommath_result(mp_mul_2d(&t, shift, &t));
|
|
128
|
+
detail::check_tommath_result((mp_add(&m_data, &t, &m_data)));
|
|
129
|
+
shift += 64;
|
|
130
|
+
i >>= 64;
|
|
131
|
+
}
|
|
132
|
+
mp_clear(&t);
|
|
133
|
+
return *this;
|
|
134
|
+
}
|
|
135
|
+
#else
|
|
136
|
+
tommath_int& operator=(unsigned long long i)
|
|
137
|
+
{
|
|
138
|
+
if (m_data.dp == nullptr)
|
|
139
|
+
detail::check_tommath_result(mp_init(&m_data));
|
|
140
|
+
mp_set_u64(&m_data, i);
|
|
141
|
+
return *this;
|
|
142
|
+
}
|
|
143
|
+
#endif
|
|
144
|
+
tommath_int& operator=(long long i)
|
|
145
|
+
{
|
|
146
|
+
if (m_data.dp == nullptr)
|
|
147
|
+
detail::check_tommath_result(mp_init(&m_data));
|
|
148
|
+
bool neg = i < 0;
|
|
149
|
+
*this = boost::multiprecision::detail::unsigned_abs(i);
|
|
150
|
+
if (neg)
|
|
151
|
+
detail::check_tommath_result(mp_neg(&m_data, &m_data));
|
|
152
|
+
return *this;
|
|
153
|
+
}
|
|
154
|
+
#ifdef BOOST_HAS_INT128
|
|
155
|
+
// Pick off 64 bit chunks for mp_set_u64:
|
|
156
|
+
tommath_int& operator=(uint128_type i)
|
|
157
|
+
{
|
|
158
|
+
if (m_data.dp == nullptr)
|
|
159
|
+
detail::check_tommath_result(mp_init(&m_data));
|
|
160
|
+
|
|
161
|
+
int128_type mask = ((static_cast<uint128_type>(1u) << 64) - 1);
|
|
162
|
+
unsigned shift = 0;
|
|
163
|
+
::mp_int t;
|
|
164
|
+
detail::check_tommath_result(mp_init(&t));
|
|
165
|
+
mp_zero(&m_data);
|
|
166
|
+
while (i)
|
|
167
|
+
{
|
|
168
|
+
#ifndef mp_get_u32
|
|
169
|
+
detail::check_tommath_result(mp_set_long_long(&t, static_cast<std::uint64_t>(i & mask)));
|
|
170
|
+
#else
|
|
171
|
+
mp_set_u64(&t, static_cast<std::uint64_t>(i & mask));
|
|
172
|
+
#endif
|
|
173
|
+
if (shift)
|
|
174
|
+
detail::check_tommath_result(mp_mul_2d(&t, shift, &t));
|
|
175
|
+
detail::check_tommath_result((mp_add(&m_data, &t, &m_data)));
|
|
176
|
+
shift += 64;
|
|
177
|
+
i >>= 64;
|
|
178
|
+
}
|
|
179
|
+
mp_clear(&t);
|
|
180
|
+
return *this;
|
|
181
|
+
}
|
|
182
|
+
tommath_int& operator=(int128_type i)
|
|
183
|
+
{
|
|
184
|
+
if (m_data.dp == nullptr)
|
|
185
|
+
detail::check_tommath_result(mp_init(&m_data));
|
|
186
|
+
bool neg = i < 0;
|
|
187
|
+
*this = boost::multiprecision::detail::unsigned_abs(i);
|
|
188
|
+
if (neg)
|
|
189
|
+
detail::check_tommath_result(mp_neg(&m_data, &m_data));
|
|
190
|
+
return *this;
|
|
191
|
+
}
|
|
192
|
+
#endif
|
|
193
|
+
//
|
|
194
|
+
// Note that although mp_set_int takes an unsigned long as an argument
|
|
195
|
+
// it only sets the first 32-bits to the result, and ignores the rest.
|
|
196
|
+
// So use uint32_t as the largest type to pass to this function.
|
|
197
|
+
//
|
|
198
|
+
tommath_int& operator=(std::uint32_t i)
|
|
199
|
+
{
|
|
200
|
+
if (m_data.dp == nullptr)
|
|
201
|
+
detail::check_tommath_result(mp_init(&m_data));
|
|
202
|
+
#ifndef mp_get_u32
|
|
203
|
+
detail::check_tommath_result((mp_set_int(&m_data, i)));
|
|
204
|
+
#else
|
|
205
|
+
mp_set_u32(&m_data, i);
|
|
206
|
+
#endif
|
|
207
|
+
return *this;
|
|
208
|
+
}
|
|
209
|
+
tommath_int& operator=(std::int32_t i)
|
|
210
|
+
{
|
|
211
|
+
if (m_data.dp == nullptr)
|
|
212
|
+
detail::check_tommath_result(mp_init(&m_data));
|
|
213
|
+
bool neg = i < 0;
|
|
214
|
+
*this = boost::multiprecision::detail::unsigned_abs(i);
|
|
215
|
+
if (neg)
|
|
216
|
+
detail::check_tommath_result(mp_neg(&m_data, &m_data));
|
|
217
|
+
return *this;
|
|
218
|
+
}
|
|
219
|
+
template <class F>
|
|
220
|
+
tommath_int& assign_float(F a)
|
|
221
|
+
{
|
|
222
|
+
BOOST_MP_FLOAT128_USING using std::floor; using std::frexp; using std::ldexp;
|
|
223
|
+
|
|
224
|
+
if (m_data.dp == nullptr)
|
|
225
|
+
detail::check_tommath_result(mp_init(&m_data));
|
|
226
|
+
|
|
227
|
+
if (a == 0)
|
|
228
|
+
{
|
|
229
|
+
#ifndef mp_get_u32
|
|
230
|
+
detail::check_tommath_result(mp_set_int(&m_data, 0));
|
|
231
|
+
#else
|
|
232
|
+
mp_set_i32(&m_data, 0);
|
|
233
|
+
#endif
|
|
234
|
+
return *this;
|
|
235
|
+
}
|
|
236
|
+
|
|
237
|
+
if (a == 1)
|
|
238
|
+
{
|
|
239
|
+
#ifndef mp_get_u32
|
|
240
|
+
detail::check_tommath_result(mp_set_int(&m_data, 1));
|
|
241
|
+
#else
|
|
242
|
+
mp_set_i32(&m_data, 1);
|
|
243
|
+
#endif
|
|
244
|
+
return *this;
|
|
245
|
+
}
|
|
246
|
+
|
|
247
|
+
BOOST_MP_ASSERT(!BOOST_MP_ISINF(a));
|
|
248
|
+
BOOST_MP_ASSERT(!BOOST_MP_ISNAN(a));
|
|
249
|
+
|
|
250
|
+
int e;
|
|
251
|
+
F f, term;
|
|
252
|
+
#ifndef mp_get_u32
|
|
253
|
+
detail::check_tommath_result(mp_set_int(&m_data, 0u));
|
|
254
|
+
#else
|
|
255
|
+
mp_set_i32(&m_data, 0);
|
|
256
|
+
#endif
|
|
257
|
+
::mp_int t;
|
|
258
|
+
detail::check_tommath_result(mp_init(&t));
|
|
259
|
+
|
|
260
|
+
f = frexp(a, &e);
|
|
261
|
+
|
|
262
|
+
#ifdef MP_DIGIT_BIT
|
|
263
|
+
constexpr const int shift = std::numeric_limits<int>::digits - 1;
|
|
264
|
+
using part_type = int ;
|
|
265
|
+
#else
|
|
266
|
+
constexpr const int shift = std::numeric_limits<std::int64_t>::digits - 1;
|
|
267
|
+
using part_type = std::int64_t;
|
|
268
|
+
#endif
|
|
269
|
+
|
|
270
|
+
while (f)
|
|
271
|
+
{
|
|
272
|
+
// extract int sized bits from f:
|
|
273
|
+
f = ldexp(f, shift);
|
|
274
|
+
term = floor(f);
|
|
275
|
+
e -= shift;
|
|
276
|
+
detail::check_tommath_result(mp_mul_2d(&m_data, shift, &m_data));
|
|
277
|
+
if (term > 0)
|
|
278
|
+
{
|
|
279
|
+
#ifndef mp_get_u64
|
|
280
|
+
detail::check_tommath_result(mp_set_int(&t, static_cast<part_type>(term)));
|
|
281
|
+
#else
|
|
282
|
+
mp_set_i64(&t, static_cast<part_type>(term));
|
|
283
|
+
#endif
|
|
284
|
+
detail::check_tommath_result(mp_add(&m_data, &t, &m_data));
|
|
285
|
+
}
|
|
286
|
+
else
|
|
287
|
+
{
|
|
288
|
+
#ifndef mp_get_u64
|
|
289
|
+
detail::check_tommath_result(mp_set_int(&t, static_cast<part_type>(-term)));
|
|
290
|
+
#else
|
|
291
|
+
mp_set_i64(&t, static_cast<part_type>(-term));
|
|
292
|
+
#endif
|
|
293
|
+
detail::check_tommath_result(mp_sub(&m_data, &t, &m_data));
|
|
294
|
+
}
|
|
295
|
+
f -= term;
|
|
296
|
+
}
|
|
297
|
+
if (e > 0)
|
|
298
|
+
detail::check_tommath_result(mp_mul_2d(&m_data, e, &m_data));
|
|
299
|
+
else if (e < 0)
|
|
300
|
+
{
|
|
301
|
+
tommath_int t2;
|
|
302
|
+
detail::check_tommath_result(mp_div_2d(&m_data, -e, &m_data, &t2.data()));
|
|
303
|
+
}
|
|
304
|
+
mp_clear(&t);
|
|
305
|
+
return *this;
|
|
306
|
+
}
|
|
307
|
+
tommath_int& operator=(long double a)
|
|
308
|
+
{
|
|
309
|
+
return assign_float(a);
|
|
310
|
+
}
|
|
311
|
+
#ifdef BOOST_HAS_FLOAT128
|
|
312
|
+
tommath_int& operator= (float128_type a)
|
|
313
|
+
{
|
|
314
|
+
return assign_float(a);
|
|
315
|
+
}
|
|
316
|
+
#endif
|
|
317
|
+
tommath_int& operator=(const char* s)
|
|
318
|
+
{
|
|
319
|
+
//
|
|
320
|
+
// We don't use libtommath's own routine because it doesn't error check the input :-(
|
|
321
|
+
//
|
|
322
|
+
if (m_data.dp == nullptr)
|
|
323
|
+
detail::check_tommath_result(mp_init(&m_data));
|
|
324
|
+
std::size_t n = s ? std::strlen(s) : 0;
|
|
325
|
+
*this = static_cast<std::uint32_t>(0u);
|
|
326
|
+
unsigned radix = 10;
|
|
327
|
+
bool isneg = false;
|
|
328
|
+
if (n && (*s == '-'))
|
|
329
|
+
{
|
|
330
|
+
--n;
|
|
331
|
+
++s;
|
|
332
|
+
isneg = true;
|
|
333
|
+
}
|
|
334
|
+
if (n && (*s == '0'))
|
|
335
|
+
{
|
|
336
|
+
if ((n > 1) && ((s[1] == 'x') || (s[1] == 'X')))
|
|
337
|
+
{
|
|
338
|
+
radix = 16;
|
|
339
|
+
s += 2;
|
|
340
|
+
n -= 2;
|
|
341
|
+
}
|
|
342
|
+
else
|
|
343
|
+
{
|
|
344
|
+
radix = 8;
|
|
345
|
+
n -= 1;
|
|
346
|
+
}
|
|
347
|
+
}
|
|
348
|
+
if (n)
|
|
349
|
+
{
|
|
350
|
+
if (radix == 8 || radix == 16)
|
|
351
|
+
{
|
|
352
|
+
unsigned shift = radix == 8 ? 3 : 4;
|
|
353
|
+
#ifndef MP_DIGIT_BIT
|
|
354
|
+
unsigned block_count = DIGIT_BIT / shift;
|
|
355
|
+
#else
|
|
356
|
+
unsigned block_count = MP_DIGIT_BIT / shift;
|
|
357
|
+
#endif
|
|
358
|
+
unsigned block_shift = shift * block_count;
|
|
359
|
+
unsigned long long val, block;
|
|
360
|
+
while (*s)
|
|
361
|
+
{
|
|
362
|
+
block = 0;
|
|
363
|
+
for (unsigned i = 0; (i < block_count); ++i)
|
|
364
|
+
{
|
|
365
|
+
if (*s >= '0' && *s <= '9')
|
|
366
|
+
val = *s - '0';
|
|
367
|
+
else if (*s >= 'a' && *s <= 'f')
|
|
368
|
+
val = 10 + *s - 'a';
|
|
369
|
+
else if (*s >= 'A' && *s <= 'F')
|
|
370
|
+
val = 10 + *s - 'A';
|
|
371
|
+
else
|
|
372
|
+
val = 400;
|
|
373
|
+
if (val > radix)
|
|
374
|
+
{
|
|
375
|
+
BOOST_MP_THROW_EXCEPTION(std::runtime_error("Unexpected content found while parsing character string."));
|
|
376
|
+
}
|
|
377
|
+
block <<= shift;
|
|
378
|
+
block |= val;
|
|
379
|
+
if (!*++s)
|
|
380
|
+
{
|
|
381
|
+
// final shift is different:
|
|
382
|
+
block_shift = (i + 1) * shift;
|
|
383
|
+
break;
|
|
384
|
+
}
|
|
385
|
+
}
|
|
386
|
+
detail::check_tommath_result(mp_mul_2d(&data(), block_shift, &data()));
|
|
387
|
+
if (data().used)
|
|
388
|
+
data().dp[0] |= block;
|
|
389
|
+
else
|
|
390
|
+
*this = block;
|
|
391
|
+
}
|
|
392
|
+
}
|
|
393
|
+
else
|
|
394
|
+
{
|
|
395
|
+
// Base 10, we extract blocks of size 10^9 at a time, that way
|
|
396
|
+
// the number of multiplications is kept to a minimum:
|
|
397
|
+
std::uint32_t block_mult = 1000000000;
|
|
398
|
+
while (*s)
|
|
399
|
+
{
|
|
400
|
+
std::uint32_t block = 0;
|
|
401
|
+
for (unsigned i = 0; i < 9; ++i)
|
|
402
|
+
{
|
|
403
|
+
std::uint32_t val;
|
|
404
|
+
if (*s >= '0' && *s <= '9')
|
|
405
|
+
val = *s - '0';
|
|
406
|
+
else
|
|
407
|
+
BOOST_MP_THROW_EXCEPTION(std::runtime_error("Unexpected character encountered in input."));
|
|
408
|
+
block *= 10;
|
|
409
|
+
block += val;
|
|
410
|
+
if (!*++s)
|
|
411
|
+
{
|
|
412
|
+
constexpr const std::uint32_t block_multiplier[9] = {10, 100, 1000, 10000, 100000, 1000000, 10000000, 100000000, 1000000000};
|
|
413
|
+
block_mult = block_multiplier[i];
|
|
414
|
+
break;
|
|
415
|
+
}
|
|
416
|
+
}
|
|
417
|
+
tommath_int t;
|
|
418
|
+
t = block_mult;
|
|
419
|
+
eval_multiply(*this, t);
|
|
420
|
+
t = block;
|
|
421
|
+
eval_add(*this, t);
|
|
422
|
+
}
|
|
423
|
+
}
|
|
424
|
+
}
|
|
425
|
+
if (isneg)
|
|
426
|
+
this->negate();
|
|
427
|
+
return *this;
|
|
428
|
+
}
|
|
429
|
+
std::string str(std::streamsize /*digits*/, std::ios_base::fmtflags f) const
|
|
430
|
+
{
|
|
431
|
+
BOOST_MP_ASSERT(m_data.dp);
|
|
432
|
+
int base = 10;
|
|
433
|
+
if ((f & std::ios_base::oct) == std::ios_base::oct)
|
|
434
|
+
base = 8;
|
|
435
|
+
else if ((f & std::ios_base::hex) == std::ios_base::hex)
|
|
436
|
+
base = 16;
|
|
437
|
+
//
|
|
438
|
+
// sanity check, bases 8 and 16 are only available for positive numbers:
|
|
439
|
+
//
|
|
440
|
+
if ((base != 10) && m_data.sign)
|
|
441
|
+
BOOST_MP_THROW_EXCEPTION(std::runtime_error("Formatted output in bases 8 or 16 is only available for positive numbers"));
|
|
442
|
+
|
|
443
|
+
// Check against known removed macro that was removed around the same time as type was changed
|
|
444
|
+
#ifdef mp_tobinary
|
|
445
|
+
int s;
|
|
446
|
+
#else
|
|
447
|
+
size_t s;
|
|
448
|
+
#endif
|
|
449
|
+
detail::check_tommath_result(mp_radix_size(const_cast< ::mp_int*>(&m_data), base, &s));
|
|
450
|
+
|
|
451
|
+
std::unique_ptr<char[]> a(new char[s + 1]);
|
|
452
|
+
#ifndef mp_to_binary
|
|
453
|
+
detail::check_tommath_result(mp_toradix_n(const_cast< ::mp_int*>(&m_data), a.get(), base, s + 1));
|
|
454
|
+
#else
|
|
455
|
+
std::size_t written;
|
|
456
|
+
detail::check_tommath_result(mp_to_radix(&m_data, a.get(), s + 1, &written, base));
|
|
457
|
+
#endif
|
|
458
|
+
std::string result = a.get();
|
|
459
|
+
if (f & std::ios_base::uppercase)
|
|
460
|
+
for (size_t i = 0; i < result.length(); ++i)
|
|
461
|
+
result[i] = std::toupper(result[i]);
|
|
462
|
+
if ((base != 10) && (f & std::ios_base::showbase))
|
|
463
|
+
{
|
|
464
|
+
int pos = result[0] == '-' ? 1 : 0;
|
|
465
|
+
const char* pp = base == 8 ? "0" : (f & std::ios_base::uppercase) ? "0X" : "0x";
|
|
466
|
+
result.insert(static_cast<std::string::size_type>(pos), pp);
|
|
467
|
+
}
|
|
468
|
+
if ((f & std::ios_base::showpos) && (result[0] != '-'))
|
|
469
|
+
result.insert(static_cast<std::string::size_type>(0), 1, '+');
|
|
470
|
+
if (((f & std::ios_base::uppercase) == 0) && (base == 16))
|
|
471
|
+
{
|
|
472
|
+
for (std::size_t i = 0; i < result.size(); ++i)
|
|
473
|
+
result[i] = std::tolower(result[i]);
|
|
474
|
+
}
|
|
475
|
+
return result;
|
|
476
|
+
}
|
|
477
|
+
~tommath_int()
|
|
478
|
+
{
|
|
479
|
+
if (m_data.dp)
|
|
480
|
+
mp_clear(&m_data);
|
|
481
|
+
}
|
|
482
|
+
void negate()
|
|
483
|
+
{
|
|
484
|
+
BOOST_MP_ASSERT(m_data.dp);
|
|
485
|
+
detail::check_tommath_result(mp_neg(&m_data, &m_data));
|
|
486
|
+
}
|
|
487
|
+
int compare(const tommath_int& o) const
|
|
488
|
+
{
|
|
489
|
+
BOOST_MP_ASSERT(m_data.dp && o.m_data.dp);
|
|
490
|
+
return mp_cmp(const_cast< ::mp_int*>(&m_data), const_cast< ::mp_int*>(&o.m_data));
|
|
491
|
+
}
|
|
492
|
+
template <class V>
|
|
493
|
+
int compare(V v) const
|
|
494
|
+
{
|
|
495
|
+
tommath_int d;
|
|
496
|
+
tommath_int t(*this);
|
|
497
|
+
detail::check_tommath_result(mp_shrink(&t.data()));
|
|
498
|
+
d = v;
|
|
499
|
+
return t.compare(d);
|
|
500
|
+
}
|
|
501
|
+
::mp_int& data()
|
|
502
|
+
{
|
|
503
|
+
BOOST_MP_ASSERT(m_data.dp);
|
|
504
|
+
return m_data;
|
|
505
|
+
}
|
|
506
|
+
const ::mp_int& data() const
|
|
507
|
+
{
|
|
508
|
+
BOOST_MP_ASSERT(m_data.dp);
|
|
509
|
+
return m_data;
|
|
510
|
+
}
|
|
511
|
+
void swap(tommath_int& o) noexcept
|
|
512
|
+
{
|
|
513
|
+
mp_exch(&m_data, &o.data());
|
|
514
|
+
}
|
|
515
|
+
|
|
516
|
+
protected:
|
|
517
|
+
::mp_int m_data;
|
|
518
|
+
};
|
|
519
|
+
|
|
520
|
+
#ifndef mp_isneg
|
|
521
|
+
#define BOOST_MP_TOMMATH_BIT_OP_CHECK(x) \
|
|
522
|
+
if (SIGN(&x.data())) \
|
|
523
|
+
BOOST_MP_THROW_EXCEPTION(std::runtime_error("Bitwise operations on libtommath negative valued integers are disabled as they produce unpredictable results"))
|
|
524
|
+
#else
|
|
525
|
+
#define BOOST_MP_TOMMATH_BIT_OP_CHECK(x) \
|
|
526
|
+
if (mp_isneg(&x.data())) \
|
|
527
|
+
BOOST_MP_THROW_EXCEPTION(std::runtime_error("Bitwise operations on libtommath negative valued integers are disabled as they produce unpredictable results"))
|
|
528
|
+
#endif
|
|
529
|
+
|
|
530
|
+
int eval_get_sign(const tommath_int& val);
|
|
531
|
+
|
|
532
|
+
inline void eval_add(tommath_int& t, const tommath_int& o)
|
|
533
|
+
{
|
|
534
|
+
detail::check_tommath_result(mp_add(&t.data(), const_cast< ::mp_int*>(&o.data()), &t.data()));
|
|
535
|
+
}
|
|
536
|
+
inline void eval_subtract(tommath_int& t, const tommath_int& o)
|
|
537
|
+
{
|
|
538
|
+
detail::check_tommath_result(mp_sub(&t.data(), const_cast< ::mp_int*>(&o.data()), &t.data()));
|
|
539
|
+
}
|
|
540
|
+
inline void eval_multiply(tommath_int& t, const tommath_int& o)
|
|
541
|
+
{
|
|
542
|
+
detail::check_tommath_result(mp_mul(&t.data(), const_cast< ::mp_int*>(&o.data()), &t.data()));
|
|
543
|
+
}
|
|
544
|
+
inline void eval_divide(tommath_int& t, const tommath_int& o)
|
|
545
|
+
{
|
|
546
|
+
using default_ops::eval_is_zero;
|
|
547
|
+
tommath_int temp;
|
|
548
|
+
if (eval_is_zero(o))
|
|
549
|
+
BOOST_MP_THROW_EXCEPTION(std::overflow_error("Integer division by zero"));
|
|
550
|
+
detail::check_tommath_result(mp_div(&t.data(), const_cast< ::mp_int*>(&o.data()), &t.data(), &temp.data()));
|
|
551
|
+
}
|
|
552
|
+
inline void eval_modulus(tommath_int& t, const tommath_int& o)
|
|
553
|
+
{
|
|
554
|
+
using default_ops::eval_is_zero;
|
|
555
|
+
if (eval_is_zero(o))
|
|
556
|
+
BOOST_MP_THROW_EXCEPTION(std::overflow_error("Integer division by zero"));
|
|
557
|
+
bool neg = eval_get_sign(t) < 0;
|
|
558
|
+
bool neg2 = eval_get_sign(o) < 0;
|
|
559
|
+
detail::check_tommath_result(mp_mod(&t.data(), const_cast< ::mp_int*>(&o.data()), &t.data()));
|
|
560
|
+
if ((neg != neg2) && (eval_get_sign(t) != 0))
|
|
561
|
+
{
|
|
562
|
+
t.negate();
|
|
563
|
+
detail::check_tommath_result(mp_add(&t.data(), const_cast< ::mp_int*>(&o.data()), &t.data()));
|
|
564
|
+
t.negate();
|
|
565
|
+
}
|
|
566
|
+
else if (neg && (t.compare(o) == 0))
|
|
567
|
+
{
|
|
568
|
+
mp_zero(&t.data());
|
|
569
|
+
}
|
|
570
|
+
}
|
|
571
|
+
template <class UI>
|
|
572
|
+
inline void eval_left_shift(tommath_int& t, UI i)
|
|
573
|
+
{
|
|
574
|
+
detail::check_tommath_result(mp_mul_2d(&t.data(), static_cast<unsigned>(i), &t.data()));
|
|
575
|
+
}
|
|
576
|
+
template <class UI>
|
|
577
|
+
inline void eval_right_shift(tommath_int& t, UI i)
|
|
578
|
+
{
|
|
579
|
+
using default_ops::eval_decrement;
|
|
580
|
+
using default_ops::eval_increment;
|
|
581
|
+
bool neg = eval_get_sign(t) < 0;
|
|
582
|
+
tommath_int d;
|
|
583
|
+
if (neg)
|
|
584
|
+
eval_increment(t);
|
|
585
|
+
detail::check_tommath_result(mp_div_2d(&t.data(), static_cast<unsigned>(i), &t.data(), &d.data()));
|
|
586
|
+
if (neg)
|
|
587
|
+
eval_decrement(t);
|
|
588
|
+
}
|
|
589
|
+
template <class UI>
|
|
590
|
+
inline void eval_left_shift(tommath_int& t, const tommath_int& v, UI i)
|
|
591
|
+
{
|
|
592
|
+
detail::check_tommath_result(mp_mul_2d(const_cast< ::mp_int*>(&v.data()), static_cast<unsigned>(i), &t.data()));
|
|
593
|
+
}
|
|
594
|
+
/*
|
|
595
|
+
template <class UI>
|
|
596
|
+
inline void eval_right_shift(tommath_int& t, const tommath_int& v, UI i)
|
|
597
|
+
{
|
|
598
|
+
tommath_int d;
|
|
599
|
+
detail::check_tommath_result(mp_div_2d(const_cast< ::mp_int*>(&v.data()), static_cast<unsigned long>(i), &t.data(), &d.data()));
|
|
600
|
+
}
|
|
601
|
+
*/
|
|
602
|
+
inline void eval_bitwise_and(tommath_int& result, const tommath_int& v)
|
|
603
|
+
{
|
|
604
|
+
BOOST_MP_TOMMATH_BIT_OP_CHECK(result);
|
|
605
|
+
BOOST_MP_TOMMATH_BIT_OP_CHECK(v);
|
|
606
|
+
detail::check_tommath_result(mp_and(&result.data(), const_cast< ::mp_int*>(&v.data()), &result.data()));
|
|
607
|
+
}
|
|
608
|
+
|
|
609
|
+
inline void eval_bitwise_or(tommath_int& result, const tommath_int& v)
|
|
610
|
+
{
|
|
611
|
+
BOOST_MP_TOMMATH_BIT_OP_CHECK(result);
|
|
612
|
+
BOOST_MP_TOMMATH_BIT_OP_CHECK(v);
|
|
613
|
+
detail::check_tommath_result(mp_or(&result.data(), const_cast< ::mp_int*>(&v.data()), &result.data()));
|
|
614
|
+
}
|
|
615
|
+
|
|
616
|
+
inline void eval_bitwise_xor(tommath_int& result, const tommath_int& v)
|
|
617
|
+
{
|
|
618
|
+
BOOST_MP_TOMMATH_BIT_OP_CHECK(result);
|
|
619
|
+
BOOST_MP_TOMMATH_BIT_OP_CHECK(v);
|
|
620
|
+
detail::check_tommath_result(mp_xor(&result.data(), const_cast< ::mp_int*>(&v.data()), &result.data()));
|
|
621
|
+
}
|
|
622
|
+
|
|
623
|
+
inline void eval_add(tommath_int& t, const tommath_int& p, const tommath_int& o)
|
|
624
|
+
{
|
|
625
|
+
detail::check_tommath_result(mp_add(const_cast< ::mp_int*>(&p.data()), const_cast< ::mp_int*>(&o.data()), &t.data()));
|
|
626
|
+
}
|
|
627
|
+
inline void eval_subtract(tommath_int& t, const tommath_int& p, const tommath_int& o)
|
|
628
|
+
{
|
|
629
|
+
detail::check_tommath_result(mp_sub(const_cast< ::mp_int*>(&p.data()), const_cast< ::mp_int*>(&o.data()), &t.data()));
|
|
630
|
+
}
|
|
631
|
+
inline void eval_multiply(tommath_int& t, const tommath_int& p, const tommath_int& o)
|
|
632
|
+
{
|
|
633
|
+
detail::check_tommath_result(mp_mul(const_cast< ::mp_int*>(&p.data()), const_cast< ::mp_int*>(&o.data()), &t.data()));
|
|
634
|
+
}
|
|
635
|
+
inline void eval_divide(tommath_int& t, const tommath_int& p, const tommath_int& o)
|
|
636
|
+
{
|
|
637
|
+
using default_ops::eval_is_zero;
|
|
638
|
+
tommath_int d;
|
|
639
|
+
if (eval_is_zero(o))
|
|
640
|
+
BOOST_MP_THROW_EXCEPTION(std::overflow_error("Integer division by zero"));
|
|
641
|
+
detail::check_tommath_result(mp_div(const_cast< ::mp_int*>(&p.data()), const_cast< ::mp_int*>(&o.data()), &t.data(), &d.data()));
|
|
642
|
+
}
|
|
643
|
+
inline void eval_modulus(tommath_int& t, const tommath_int& p, const tommath_int& o)
|
|
644
|
+
{
|
|
645
|
+
using default_ops::eval_is_zero;
|
|
646
|
+
if (eval_is_zero(o))
|
|
647
|
+
BOOST_MP_THROW_EXCEPTION(std::overflow_error("Integer division by zero"));
|
|
648
|
+
bool neg = eval_get_sign(p) < 0;
|
|
649
|
+
bool neg2 = eval_get_sign(o) < 0;
|
|
650
|
+
detail::check_tommath_result(mp_mod(const_cast< ::mp_int*>(&p.data()), const_cast< ::mp_int*>(&o.data()), &t.data()));
|
|
651
|
+
if ((neg != neg2) && (eval_get_sign(t) != 0))
|
|
652
|
+
{
|
|
653
|
+
t.negate();
|
|
654
|
+
detail::check_tommath_result(mp_add(&t.data(), const_cast< ::mp_int*>(&o.data()), &t.data()));
|
|
655
|
+
t.negate();
|
|
656
|
+
}
|
|
657
|
+
else if (neg && (t.compare(o) == 0))
|
|
658
|
+
{
|
|
659
|
+
mp_zero(&t.data());
|
|
660
|
+
}
|
|
661
|
+
}
|
|
662
|
+
|
|
663
|
+
inline void eval_bitwise_and(tommath_int& result, const tommath_int& u, const tommath_int& v)
|
|
664
|
+
{
|
|
665
|
+
BOOST_MP_TOMMATH_BIT_OP_CHECK(u);
|
|
666
|
+
BOOST_MP_TOMMATH_BIT_OP_CHECK(v);
|
|
667
|
+
detail::check_tommath_result(mp_and(const_cast< ::mp_int*>(&u.data()), const_cast< ::mp_int*>(&v.data()), &result.data()));
|
|
668
|
+
}
|
|
669
|
+
|
|
670
|
+
inline void eval_bitwise_or(tommath_int& result, const tommath_int& u, const tommath_int& v)
|
|
671
|
+
{
|
|
672
|
+
BOOST_MP_TOMMATH_BIT_OP_CHECK(u);
|
|
673
|
+
BOOST_MP_TOMMATH_BIT_OP_CHECK(v);
|
|
674
|
+
detail::check_tommath_result(mp_or(const_cast< ::mp_int*>(&u.data()), const_cast< ::mp_int*>(&v.data()), &result.data()));
|
|
675
|
+
}
|
|
676
|
+
|
|
677
|
+
inline void eval_bitwise_xor(tommath_int& result, const tommath_int& u, const tommath_int& v)
|
|
678
|
+
{
|
|
679
|
+
BOOST_MP_TOMMATH_BIT_OP_CHECK(u);
|
|
680
|
+
BOOST_MP_TOMMATH_BIT_OP_CHECK(v);
|
|
681
|
+
detail::check_tommath_result(mp_xor(const_cast< ::mp_int*>(&u.data()), const_cast< ::mp_int*>(&v.data()), &result.data()));
|
|
682
|
+
}
|
|
683
|
+
/*
|
|
684
|
+
inline void eval_complement(tommath_int& result, const tommath_int& u)
|
|
685
|
+
{
|
|
686
|
+
//
|
|
687
|
+
// Although this code works, it doesn't really do what the user might expect....
|
|
688
|
+
// and it's hard to see how it ever could. Disabled for now:
|
|
689
|
+
//
|
|
690
|
+
result = u;
|
|
691
|
+
for(int i = 0; i < result.data().used; ++i)
|
|
692
|
+
{
|
|
693
|
+
result.data().dp[i] = MP_MASK & ~(result.data().dp[i]);
|
|
694
|
+
}
|
|
695
|
+
//
|
|
696
|
+
// We now need to pad out the left of the value with 1's to round up to a whole number of
|
|
697
|
+
// CHAR_BIT * sizeof(mp_digit) units. Otherwise we'll end up with a very strange number of
|
|
698
|
+
// bits set!
|
|
699
|
+
//
|
|
700
|
+
unsigned shift = result.data().used * DIGIT_BIT; // How many bits we're actually using
|
|
701
|
+
// How many bits we actually need, reduced by one to account for a mythical sign bit:
|
|
702
|
+
int padding = result.data().used * std::numeric_limits<mp_digit>::digits - shift - 1;
|
|
703
|
+
while(padding >= std::numeric_limits<mp_digit>::digits)
|
|
704
|
+
padding -= std::numeric_limits<mp_digit>::digits;
|
|
705
|
+
|
|
706
|
+
// Create a mask providing the extra bits we need and add to result:
|
|
707
|
+
tommath_int mask;
|
|
708
|
+
mask = static_cast<long long>((1u << padding) - 1);
|
|
709
|
+
eval_left_shift(mask, shift);
|
|
710
|
+
add(result, mask);
|
|
711
|
+
}
|
|
712
|
+
*/
|
|
713
|
+
inline bool eval_is_zero(const tommath_int& val)
|
|
714
|
+
{
|
|
715
|
+
return mp_iszero(&val.data());
|
|
716
|
+
}
|
|
717
|
+
inline int eval_get_sign(const tommath_int& val)
|
|
718
|
+
{
|
|
719
|
+
#ifndef mp_isneg
|
|
720
|
+
return mp_iszero(&val.data()) ? 0 : SIGN(&val.data()) ? -1 : 1;
|
|
721
|
+
#else
|
|
722
|
+
return mp_iszero(&val.data()) ? 0 : mp_isneg(&val.data()) ? -1 : 1;
|
|
723
|
+
#endif
|
|
724
|
+
}
|
|
725
|
+
|
|
726
|
+
inline void eval_convert_to(unsigned long long* result, const tommath_int& val)
|
|
727
|
+
{
|
|
728
|
+
if (mp_isneg(&val.data()))
|
|
729
|
+
{
|
|
730
|
+
BOOST_MP_THROW_EXCEPTION(std::range_error("Converting negative arbitrary precision value to unsigned."));
|
|
731
|
+
}
|
|
732
|
+
#ifdef MP_DEPRECATED
|
|
733
|
+
*result = mp_get_ull(&val.data());
|
|
734
|
+
#else
|
|
735
|
+
*result = mp_get_long_long(const_cast<mp_int*>(&val.data()));
|
|
736
|
+
#endif
|
|
737
|
+
}
|
|
738
|
+
|
|
739
|
+
inline void eval_convert_to(long long* result, const tommath_int& val)
|
|
740
|
+
{
|
|
741
|
+
if (!mp_iszero(&val.data()) && (mp_count_bits(const_cast<::mp_int*>(&val.data())) > std::numeric_limits<long long>::digits))
|
|
742
|
+
{
|
|
743
|
+
*result = mp_isneg(&val.data()) ? (std::numeric_limits<long long>::min)() : (std::numeric_limits<long long>::max)();
|
|
744
|
+
return;
|
|
745
|
+
}
|
|
746
|
+
#ifdef MP_DEPRECATED
|
|
747
|
+
unsigned long long r = mp_get_mag_ull(&val.data());
|
|
748
|
+
#else
|
|
749
|
+
unsigned long long r = mp_get_long_long(const_cast<mp_int*>(&val.data()));
|
|
750
|
+
#endif
|
|
751
|
+
if (mp_isneg(&val.data()))
|
|
752
|
+
*result = -static_cast<long long>(r);
|
|
753
|
+
else
|
|
754
|
+
*result = r;
|
|
755
|
+
}
|
|
756
|
+
|
|
757
|
+
#ifdef BOOST_HAS_INT128
|
|
758
|
+
inline void eval_convert_to(uint128_type* result, const tommath_int& val)
|
|
759
|
+
{
|
|
760
|
+
#ifdef MP_DEPRECATED
|
|
761
|
+
if (mp_ubin_size(&val.data()) > sizeof(uint128_type))
|
|
762
|
+
{
|
|
763
|
+
*result = ~static_cast<uint128_type>(0);
|
|
764
|
+
return;
|
|
765
|
+
}
|
|
766
|
+
unsigned char buf[sizeof(uint128_type)];
|
|
767
|
+
std::size_t len;
|
|
768
|
+
detail::check_tommath_result(mp_to_ubin(&val.data(), buf, sizeof(buf), &len));
|
|
769
|
+
*result = 0;
|
|
770
|
+
for (std::size_t i = 0; i < len; ++i)
|
|
771
|
+
{
|
|
772
|
+
*result <<= CHAR_BIT;
|
|
773
|
+
*result |= buf[i];
|
|
774
|
+
}
|
|
775
|
+
#else
|
|
776
|
+
std::size_t len = mp_unsigned_bin_size(const_cast<mp_int*>(&val.data()));
|
|
777
|
+
if (len > sizeof(uint128_type))
|
|
778
|
+
{
|
|
779
|
+
*result = ~static_cast<uint128_type>(0);
|
|
780
|
+
return;
|
|
781
|
+
}
|
|
782
|
+
unsigned char buf[sizeof(uint128_type)];
|
|
783
|
+
detail::check_tommath_result(mp_to_unsigned_bin(const_cast<mp_int*>(&val.data()), buf));
|
|
784
|
+
*result = 0;
|
|
785
|
+
for (std::size_t i = 0; i < len; ++i)
|
|
786
|
+
{
|
|
787
|
+
*result <<= CHAR_BIT;
|
|
788
|
+
*result |= buf[i];
|
|
789
|
+
}
|
|
790
|
+
#endif
|
|
791
|
+
}
|
|
792
|
+
inline void eval_convert_to(int128_type* result, const tommath_int& val)
|
|
793
|
+
{
|
|
794
|
+
uint128_type r;
|
|
795
|
+
eval_convert_to(&r, val);
|
|
796
|
+
if (mp_isneg(&val.data()))
|
|
797
|
+
*result = -static_cast<int128_type>(r);
|
|
798
|
+
else
|
|
799
|
+
*result = r;
|
|
800
|
+
}
|
|
801
|
+
#endif
|
|
802
|
+
#if defined(BOOST_HAS_FLOAT128)
|
|
803
|
+
inline void eval_convert_to(float128_type* result, const tommath_int& val) noexcept
|
|
804
|
+
{
|
|
805
|
+
*result = float128_procs::strtoflt128(val.str(0, std::ios_base::scientific).c_str(), nullptr);
|
|
806
|
+
}
|
|
807
|
+
#endif
|
|
808
|
+
inline void eval_convert_to(long double* result, const tommath_int& val) noexcept
|
|
809
|
+
{
|
|
810
|
+
*result = std::strtold(val.str(0, std::ios_base::scientific).c_str(), nullptr);
|
|
811
|
+
}
|
|
812
|
+
inline void eval_convert_to(double* result, const tommath_int& val) noexcept
|
|
813
|
+
{
|
|
814
|
+
*result = std::strtod(val.str(0, std::ios_base::scientific).c_str(), nullptr);
|
|
815
|
+
}
|
|
816
|
+
inline void eval_convert_to(float* result, const tommath_int& val) noexcept
|
|
817
|
+
{
|
|
818
|
+
*result = std::strtof(val.str(0, std::ios_base::scientific).c_str(), nullptr);
|
|
819
|
+
}
|
|
820
|
+
|
|
821
|
+
|
|
822
|
+
inline void eval_abs(tommath_int& result, const tommath_int& val)
|
|
823
|
+
{
|
|
824
|
+
detail::check_tommath_result(mp_abs(const_cast< ::mp_int*>(&val.data()), &result.data()));
|
|
825
|
+
}
|
|
826
|
+
inline void eval_gcd(tommath_int& result, const tommath_int& a, const tommath_int& b)
|
|
827
|
+
{
|
|
828
|
+
detail::check_tommath_result(mp_gcd(const_cast< ::mp_int*>(&a.data()), const_cast< ::mp_int*>(&b.data()), const_cast< ::mp_int*>(&result.data())));
|
|
829
|
+
}
|
|
830
|
+
inline void eval_lcm(tommath_int& result, const tommath_int& a, const tommath_int& b)
|
|
831
|
+
{
|
|
832
|
+
detail::check_tommath_result(mp_lcm(const_cast< ::mp_int*>(&a.data()), const_cast< ::mp_int*>(&b.data()), const_cast< ::mp_int*>(&result.data())));
|
|
833
|
+
}
|
|
834
|
+
inline void eval_powm(tommath_int& result, const tommath_int& base, const tommath_int& p, const tommath_int& m)
|
|
835
|
+
{
|
|
836
|
+
if (eval_get_sign(p) < 0)
|
|
837
|
+
{
|
|
838
|
+
BOOST_MP_THROW_EXCEPTION(std::runtime_error("powm requires a positive exponent."));
|
|
839
|
+
}
|
|
840
|
+
detail::check_tommath_result(mp_exptmod(const_cast< ::mp_int*>(&base.data()), const_cast< ::mp_int*>(&p.data()), const_cast< ::mp_int*>(&m.data()), &result.data()));
|
|
841
|
+
}
|
|
842
|
+
|
|
843
|
+
inline void eval_qr(const tommath_int& x, const tommath_int& y,
|
|
844
|
+
tommath_int& q, tommath_int& r)
|
|
845
|
+
{
|
|
846
|
+
detail::check_tommath_result(mp_div(const_cast< ::mp_int*>(&x.data()), const_cast< ::mp_int*>(&y.data()), &q.data(), &r.data()));
|
|
847
|
+
}
|
|
848
|
+
|
|
849
|
+
inline std::size_t eval_lsb(const tommath_int& val)
|
|
850
|
+
{
|
|
851
|
+
int c = eval_get_sign(val);
|
|
852
|
+
if (c == 0)
|
|
853
|
+
{
|
|
854
|
+
BOOST_MP_THROW_EXCEPTION(std::domain_error("No bits were set in the operand."));
|
|
855
|
+
}
|
|
856
|
+
if (c < 0)
|
|
857
|
+
{
|
|
858
|
+
BOOST_MP_THROW_EXCEPTION(std::domain_error("Testing individual bits in negative values is not supported - results are undefined."));
|
|
859
|
+
}
|
|
860
|
+
return mp_cnt_lsb(const_cast< ::mp_int*>(&val.data()));
|
|
861
|
+
}
|
|
862
|
+
|
|
863
|
+
inline std::size_t eval_msb(const tommath_int& val)
|
|
864
|
+
{
|
|
865
|
+
int c = eval_get_sign(val);
|
|
866
|
+
if (c == 0)
|
|
867
|
+
{
|
|
868
|
+
BOOST_MP_THROW_EXCEPTION(std::domain_error("No bits were set in the operand."));
|
|
869
|
+
}
|
|
870
|
+
if (c < 0)
|
|
871
|
+
{
|
|
872
|
+
BOOST_MP_THROW_EXCEPTION(std::domain_error("Testing individual bits in negative values is not supported - results are undefined."));
|
|
873
|
+
}
|
|
874
|
+
return mp_count_bits(const_cast< ::mp_int*>(&val.data())) - 1;
|
|
875
|
+
}
|
|
876
|
+
|
|
877
|
+
template <class Integer>
|
|
878
|
+
inline typename std::enable_if<boost::multiprecision::detail::is_unsigned<Integer>::value, Integer>::type eval_integer_modulus(const tommath_int& x, Integer val)
|
|
879
|
+
{
|
|
880
|
+
#ifndef MP_DIGIT_BIT
|
|
881
|
+
constexpr const mp_digit m = (static_cast<mp_digit>(1) << DIGIT_BIT) - 1;
|
|
882
|
+
#else
|
|
883
|
+
constexpr const mp_digit m = (static_cast<mp_digit>(1) << MP_DIGIT_BIT) - 1;
|
|
884
|
+
#endif
|
|
885
|
+
if (val <= m)
|
|
886
|
+
{
|
|
887
|
+
mp_digit d;
|
|
888
|
+
detail::check_tommath_result(mp_mod_d(const_cast< ::mp_int*>(&x.data()), static_cast<mp_digit>(val), &d));
|
|
889
|
+
return d;
|
|
890
|
+
}
|
|
891
|
+
else
|
|
892
|
+
{
|
|
893
|
+
return default_ops::eval_integer_modulus(x, val);
|
|
894
|
+
}
|
|
895
|
+
}
|
|
896
|
+
template <class Integer>
|
|
897
|
+
inline typename std::enable_if<boost::multiprecision::detail::is_signed<Integer>::value && boost::multiprecision::detail::is_integral<Integer>::value, Integer>::type eval_integer_modulus(const tommath_int& x, Integer val)
|
|
898
|
+
{
|
|
899
|
+
return eval_integer_modulus(x, boost::multiprecision::detail::unsigned_abs(val));
|
|
900
|
+
}
|
|
901
|
+
|
|
902
|
+
inline std::size_t hash_value(const tommath_int& val)
|
|
903
|
+
{
|
|
904
|
+
std::size_t result = 0;
|
|
905
|
+
std::size_t len = val.data().used;
|
|
906
|
+
for (std::size_t i = 0; i < len; ++i)
|
|
907
|
+
boost::multiprecision::detail::hash_combine(result, val.data().dp[i]);
|
|
908
|
+
boost::multiprecision::detail::hash_combine(result, val.data().sign);
|
|
909
|
+
return result;
|
|
910
|
+
}
|
|
911
|
+
|
|
912
|
+
} // namespace backends
|
|
913
|
+
|
|
914
|
+
template <>
|
|
915
|
+
struct number_category<tommath_int> : public std::integral_constant<int, number_kind_integer>
|
|
916
|
+
{};
|
|
917
|
+
|
|
918
|
+
}
|
|
919
|
+
} // namespace boost::multiprecision
|
|
920
|
+
|
|
921
|
+
namespace std {
|
|
922
|
+
|
|
923
|
+
template <boost::multiprecision::expression_template_option ExpressionTemplates>
|
|
924
|
+
class numeric_limits<boost::multiprecision::number<boost::multiprecision::tommath_int, ExpressionTemplates> >
|
|
925
|
+
{
|
|
926
|
+
using number_type = boost::multiprecision::number<boost::multiprecision::tommath_int, ExpressionTemplates>;
|
|
927
|
+
|
|
928
|
+
public:
|
|
929
|
+
static constexpr bool is_specialized = true;
|
|
930
|
+
//
|
|
931
|
+
// Largest and smallest numbers are bounded only by available memory, set
|
|
932
|
+
// to zero:
|
|
933
|
+
//
|
|
934
|
+
static number_type(min)()
|
|
935
|
+
{
|
|
936
|
+
return number_type();
|
|
937
|
+
}
|
|
938
|
+
static number_type(max)()
|
|
939
|
+
{
|
|
940
|
+
return number_type();
|
|
941
|
+
}
|
|
942
|
+
static number_type lowest() { return (min)(); }
|
|
943
|
+
static constexpr int digits = INT_MAX;
|
|
944
|
+
static constexpr int digits10 = (INT_MAX / 1000) * 301L;
|
|
945
|
+
static constexpr int max_digits10 = digits10 + 3;
|
|
946
|
+
static constexpr bool is_signed = true;
|
|
947
|
+
static constexpr bool is_integer = true;
|
|
948
|
+
static constexpr bool is_exact = true;
|
|
949
|
+
static constexpr int radix = 2;
|
|
950
|
+
static number_type epsilon() { return number_type(); }
|
|
951
|
+
static number_type round_error() { return number_type(); }
|
|
952
|
+
static constexpr int min_exponent = 0;
|
|
953
|
+
static constexpr int min_exponent10 = 0;
|
|
954
|
+
static constexpr int max_exponent = 0;
|
|
955
|
+
static constexpr int max_exponent10 = 0;
|
|
956
|
+
static constexpr bool has_infinity = false;
|
|
957
|
+
static constexpr bool has_quiet_NaN = false;
|
|
958
|
+
static constexpr bool has_signaling_NaN = false;
|
|
959
|
+
#ifdef _MSC_VER
|
|
960
|
+
#pragma warning(push)
|
|
961
|
+
#pragma warning(disable : 4996)
|
|
962
|
+
#endif
|
|
963
|
+
static constexpr float_denorm_style has_denorm = denorm_absent;
|
|
964
|
+
#ifdef _MSC_VER
|
|
965
|
+
#pragma warning(pop)
|
|
966
|
+
#endif
|
|
967
|
+
static constexpr bool has_denorm_loss = false;
|
|
968
|
+
static number_type infinity() { return number_type(); }
|
|
969
|
+
static number_type quiet_NaN() { return number_type(); }
|
|
970
|
+
static number_type signaling_NaN() { return number_type(); }
|
|
971
|
+
static number_type denorm_min() { return number_type(); }
|
|
972
|
+
static constexpr bool is_iec559 = false;
|
|
973
|
+
static constexpr bool is_bounded = false;
|
|
974
|
+
static constexpr bool is_modulo = false;
|
|
975
|
+
static constexpr bool traps = false;
|
|
976
|
+
static constexpr bool tinyness_before = false;
|
|
977
|
+
static constexpr float_round_style round_style = round_toward_zero;
|
|
978
|
+
};
|
|
979
|
+
|
|
980
|
+
template <boost::multiprecision::expression_template_option ExpressionTemplates>
|
|
981
|
+
constexpr int numeric_limits<boost::multiprecision::number<boost::multiprecision::tommath_int, ExpressionTemplates> >::digits;
|
|
982
|
+
template <boost::multiprecision::expression_template_option ExpressionTemplates>
|
|
983
|
+
constexpr int numeric_limits<boost::multiprecision::number<boost::multiprecision::tommath_int, ExpressionTemplates> >::digits10;
|
|
984
|
+
template <boost::multiprecision::expression_template_option ExpressionTemplates>
|
|
985
|
+
constexpr int numeric_limits<boost::multiprecision::number<boost::multiprecision::tommath_int, ExpressionTemplates> >::max_digits10;
|
|
986
|
+
template <boost::multiprecision::expression_template_option ExpressionTemplates>
|
|
987
|
+
constexpr bool numeric_limits<boost::multiprecision::number<boost::multiprecision::tommath_int, ExpressionTemplates> >::is_signed;
|
|
988
|
+
template <boost::multiprecision::expression_template_option ExpressionTemplates>
|
|
989
|
+
constexpr bool numeric_limits<boost::multiprecision::number<boost::multiprecision::tommath_int, ExpressionTemplates> >::is_integer;
|
|
990
|
+
template <boost::multiprecision::expression_template_option ExpressionTemplates>
|
|
991
|
+
constexpr bool numeric_limits<boost::multiprecision::number<boost::multiprecision::tommath_int, ExpressionTemplates> >::is_exact;
|
|
992
|
+
template <boost::multiprecision::expression_template_option ExpressionTemplates>
|
|
993
|
+
constexpr int numeric_limits<boost::multiprecision::number<boost::multiprecision::tommath_int, ExpressionTemplates> >::radix;
|
|
994
|
+
template <boost::multiprecision::expression_template_option ExpressionTemplates>
|
|
995
|
+
constexpr int numeric_limits<boost::multiprecision::number<boost::multiprecision::tommath_int, ExpressionTemplates> >::min_exponent;
|
|
996
|
+
template <boost::multiprecision::expression_template_option ExpressionTemplates>
|
|
997
|
+
constexpr int numeric_limits<boost::multiprecision::number<boost::multiprecision::tommath_int, ExpressionTemplates> >::min_exponent10;
|
|
998
|
+
template <boost::multiprecision::expression_template_option ExpressionTemplates>
|
|
999
|
+
constexpr int numeric_limits<boost::multiprecision::number<boost::multiprecision::tommath_int, ExpressionTemplates> >::max_exponent;
|
|
1000
|
+
template <boost::multiprecision::expression_template_option ExpressionTemplates>
|
|
1001
|
+
constexpr int numeric_limits<boost::multiprecision::number<boost::multiprecision::tommath_int, ExpressionTemplates> >::max_exponent10;
|
|
1002
|
+
template <boost::multiprecision::expression_template_option ExpressionTemplates>
|
|
1003
|
+
constexpr bool numeric_limits<boost::multiprecision::number<boost::multiprecision::tommath_int, ExpressionTemplates> >::has_infinity;
|
|
1004
|
+
template <boost::multiprecision::expression_template_option ExpressionTemplates>
|
|
1005
|
+
constexpr bool numeric_limits<boost::multiprecision::number<boost::multiprecision::tommath_int, ExpressionTemplates> >::has_quiet_NaN;
|
|
1006
|
+
template <boost::multiprecision::expression_template_option ExpressionTemplates>
|
|
1007
|
+
constexpr bool numeric_limits<boost::multiprecision::number<boost::multiprecision::tommath_int, ExpressionTemplates> >::has_signaling_NaN;
|
|
1008
|
+
#ifdef _MSC_VER
|
|
1009
|
+
#pragma warning(push)
|
|
1010
|
+
#pragma warning(disable : 4996)
|
|
1011
|
+
#endif
|
|
1012
|
+
template <boost::multiprecision::expression_template_option ExpressionTemplates>
|
|
1013
|
+
constexpr float_denorm_style numeric_limits<boost::multiprecision::number<boost::multiprecision::tommath_int, ExpressionTemplates> >::has_denorm;
|
|
1014
|
+
#ifdef _MSC_VER
|
|
1015
|
+
#pragma warning(pop)
|
|
1016
|
+
#endif
|
|
1017
|
+
template <boost::multiprecision::expression_template_option ExpressionTemplates>
|
|
1018
|
+
constexpr bool numeric_limits<boost::multiprecision::number<boost::multiprecision::tommath_int, ExpressionTemplates> >::has_denorm_loss;
|
|
1019
|
+
template <boost::multiprecision::expression_template_option ExpressionTemplates>
|
|
1020
|
+
constexpr bool numeric_limits<boost::multiprecision::number<boost::multiprecision::tommath_int, ExpressionTemplates> >::is_iec559;
|
|
1021
|
+
template <boost::multiprecision::expression_template_option ExpressionTemplates>
|
|
1022
|
+
constexpr bool numeric_limits<boost::multiprecision::number<boost::multiprecision::tommath_int, ExpressionTemplates> >::is_bounded;
|
|
1023
|
+
template <boost::multiprecision::expression_template_option ExpressionTemplates>
|
|
1024
|
+
constexpr bool numeric_limits<boost::multiprecision::number<boost::multiprecision::tommath_int, ExpressionTemplates> >::is_modulo;
|
|
1025
|
+
template <boost::multiprecision::expression_template_option ExpressionTemplates>
|
|
1026
|
+
constexpr bool numeric_limits<boost::multiprecision::number<boost::multiprecision::tommath_int, ExpressionTemplates> >::traps;
|
|
1027
|
+
template <boost::multiprecision::expression_template_option ExpressionTemplates>
|
|
1028
|
+
constexpr bool numeric_limits<boost::multiprecision::number<boost::multiprecision::tommath_int, ExpressionTemplates> >::tinyness_before;
|
|
1029
|
+
template <boost::multiprecision::expression_template_option ExpressionTemplates>
|
|
1030
|
+
constexpr float_round_style numeric_limits<boost::multiprecision::number<boost::multiprecision::tommath_int, ExpressionTemplates> >::round_style;
|
|
1031
|
+
|
|
1032
|
+
} // namespace std
|
|
1033
|
+
|
|
1034
|
+
#endif
|