mqt-core 3.1.0__cp313-cp313-win_arm64.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.
Potentially problematic release.
This version of mqt-core might be problematic. Click here for more details.
- 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 +21 -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-ir.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-zx.dll +0 -0
- mqt/core/dd.cp313-win_arm64.pyd +0 -0
- mqt/core/dd.pyi +1031 -0
- mqt/core/dd_evaluation.py +368 -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 +106 -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 +167 -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 +308 -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/ir/Definitions.hpp +108 -0
- mqt/core/include/mqt-core/ir/Permutation.hpp +213 -0
- mqt/core/include/mqt-core/ir/QuantumComputation.hpp +594 -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/ClassicControlledOperation.hpp +156 -0
- mqt/core/include/mqt-core/ir/operations/CompoundOperation.hpp +210 -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/NonUnitaryOperation.hpp +118 -0
- mqt/core/include/mqt-core/ir/operations/OpType.hpp +115 -0
- mqt/core/include/mqt-core/ir/operations/OpType.inc +75 -0
- mqt/core/include/mqt-core/ir/operations/Operation.hpp +245 -0
- mqt/core/include/mqt-core/ir/operations/StandardOperation.hpp +138 -0
- mqt/core/include/mqt-core/ir/operations/SymbolicOperation.hpp +144 -0
- mqt/core/include/mqt-core/na/NAComputation.hpp +185 -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/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 +123 -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/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/ir/__init__.pyi +1998 -0
- mqt/core/ir/operations.pyi +1019 -0
- mqt/core/ir/registers.pyi +91 -0
- mqt/core/ir/symbolic.pyi +177 -0
- mqt/core/ir.cp313-win_arm64.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-ir.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-zx.lib +0 -0
- mqt/core/plugins/__init__.py +9 -0
- mqt/core/plugins/qiskit/__init__.py +19 -0
- mqt/core/plugins/qiskit/mqt_to_qiskit.py +354 -0
- mqt/core/plugins/qiskit/qiskit_to_mqt.py +455 -0
- mqt/core/py.typed +2 -0
- mqt/core/share/cmake/mqt-core/AddMQTPythonBinding.cmake +52 -0
- mqt/core/share/cmake/mqt-core/Cache.cmake +32 -0
- mqt/core/share/cmake/mqt-core/FindGMP.cmake +103 -0
- mqt/core/share/cmake/mqt-core/PackageAddTest.cmake +40 -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 +49 -0
- mqt/core/share/cmake/mqt-core/mqt-core-targets-release.cmake +90 -0
- mqt/core/share/cmake/mqt-core/mqt-core-targets.cmake +324 -0
- mqt_core-3.1.0.dist-info/DELVEWHEEL +2 -0
- mqt_core-3.1.0.dist-info/METADATA +168 -0
- mqt_core-3.1.0.dist-info/RECORD +343 -0
- mqt_core-3.1.0.dist-info/WHEEL +5 -0
- mqt_core-3.1.0.dist-info/entry_points.txt +4 -0
- mqt_core-3.1.0.dist-info/licenses/LICENSE.md +22 -0
- mqt_core.libs/msvcp140.dll +0 -0
|
@@ -0,0 +1,59 @@
|
|
|
1
|
+
// This file was automatically generated on Fri Oct 13 19:09:38 2023
|
|
2
|
+
// by libs/config/tools/generate.cpp
|
|
3
|
+
// Copyright John Maddock 2002-21.
|
|
4
|
+
// Use, modification and distribution are subject to the
|
|
5
|
+
// Boost Software License, Version 1.0. (See accompanying file
|
|
6
|
+
// LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
|
|
7
|
+
|
|
8
|
+
// See http://www.boost.org/libs/config for the most recent version.//
|
|
9
|
+
// Revision $Id$
|
|
10
|
+
//
|
|
11
|
+
|
|
12
|
+
#include <boost/config.hpp>
|
|
13
|
+
#include <boost/config/assert_cxx17.hpp>
|
|
14
|
+
|
|
15
|
+
#ifdef BOOST_NO_CXX20_HDR_BARRIER
|
|
16
|
+
# error "Your compiler appears not to be fully C++20 compliant. Detected via defect macro BOOST_NO_CXX20_HDR_BARRIER."
|
|
17
|
+
#endif
|
|
18
|
+
#ifdef BOOST_NO_CXX20_HDR_BIT
|
|
19
|
+
# error "Your compiler appears not to be fully C++20 compliant. Detected via defect macro BOOST_NO_CXX20_HDR_BIT."
|
|
20
|
+
#endif
|
|
21
|
+
#ifdef BOOST_NO_CXX20_HDR_COMPARE
|
|
22
|
+
# error "Your compiler appears not to be fully C++20 compliant. Detected via defect macro BOOST_NO_CXX20_HDR_COMPARE."
|
|
23
|
+
#endif
|
|
24
|
+
#ifdef BOOST_NO_CXX20_HDR_CONCEPTS
|
|
25
|
+
# error "Your compiler appears not to be fully C++20 compliant. Detected via defect macro BOOST_NO_CXX20_HDR_CONCEPTS."
|
|
26
|
+
#endif
|
|
27
|
+
#ifdef BOOST_NO_CXX20_HDR_COROUTINE
|
|
28
|
+
# error "Your compiler appears not to be fully C++20 compliant. Detected via defect macro BOOST_NO_CXX20_HDR_COROUTINE."
|
|
29
|
+
#endif
|
|
30
|
+
#ifdef BOOST_NO_CXX20_HDR_FORMAT
|
|
31
|
+
# error "Your compiler appears not to be fully C++20 compliant. Detected via defect macro BOOST_NO_CXX20_HDR_FORMAT."
|
|
32
|
+
#endif
|
|
33
|
+
#ifdef BOOST_NO_CXX20_HDR_LATCH
|
|
34
|
+
# error "Your compiler appears not to be fully C++20 compliant. Detected via defect macro BOOST_NO_CXX20_HDR_LATCH."
|
|
35
|
+
#endif
|
|
36
|
+
#ifdef BOOST_NO_CXX20_HDR_NUMBERS
|
|
37
|
+
# error "Your compiler appears not to be fully C++20 compliant. Detected via defect macro BOOST_NO_CXX20_HDR_NUMBERS."
|
|
38
|
+
#endif
|
|
39
|
+
#ifdef BOOST_NO_CXX20_HDR_RANGES
|
|
40
|
+
# error "Your compiler appears not to be fully C++20 compliant. Detected via defect macro BOOST_NO_CXX20_HDR_RANGES."
|
|
41
|
+
#endif
|
|
42
|
+
#ifdef BOOST_NO_CXX20_HDR_SEMAPHORE
|
|
43
|
+
# error "Your compiler appears not to be fully C++20 compliant. Detected via defect macro BOOST_NO_CXX20_HDR_SEMAPHORE."
|
|
44
|
+
#endif
|
|
45
|
+
#ifdef BOOST_NO_CXX20_HDR_SOURCE_LOCATION
|
|
46
|
+
# error "Your compiler appears not to be fully C++20 compliant. Detected via defect macro BOOST_NO_CXX20_HDR_SOURCE_LOCATION."
|
|
47
|
+
#endif
|
|
48
|
+
#ifdef BOOST_NO_CXX20_HDR_SPAN
|
|
49
|
+
# error "Your compiler appears not to be fully C++20 compliant. Detected via defect macro BOOST_NO_CXX20_HDR_SPAN."
|
|
50
|
+
#endif
|
|
51
|
+
#ifdef BOOST_NO_CXX20_HDR_STOP_TOKEN
|
|
52
|
+
# error "Your compiler appears not to be fully C++20 compliant. Detected via defect macro BOOST_NO_CXX20_HDR_STOP_TOKEN."
|
|
53
|
+
#endif
|
|
54
|
+
#ifdef BOOST_NO_CXX20_HDR_SYNCSTREAM
|
|
55
|
+
# error "Your compiler appears not to be fully C++20 compliant. Detected via defect macro BOOST_NO_CXX20_HDR_SYNCSTREAM."
|
|
56
|
+
#endif
|
|
57
|
+
#ifdef BOOST_NO_CXX20_HDR_VERSION
|
|
58
|
+
# error "Your compiler appears not to be fully C++20 compliant. Detected via defect macro BOOST_NO_CXX20_HDR_VERSION."
|
|
59
|
+
#endif
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
// This file was automatically generated on Fri Oct 13 19:09:38 2023
|
|
2
|
+
// by libs/config/tools/generate.cpp
|
|
3
|
+
// Copyright John Maddock 2002-21.
|
|
4
|
+
// Use, modification and distribution are subject to the
|
|
5
|
+
// Boost Software License, Version 1.0. (See accompanying file
|
|
6
|
+
// LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
|
|
7
|
+
|
|
8
|
+
// See http://www.boost.org/libs/config for the most recent version.//
|
|
9
|
+
// Revision $Id$
|
|
10
|
+
//
|
|
11
|
+
|
|
12
|
+
#include <boost/config.hpp>
|
|
13
|
+
#include <boost/config/assert_cxx20.hpp>
|
|
14
|
+
|
|
15
|
+
#ifdef BOOST_NO_CXX23_HDR_EXPECTED
|
|
16
|
+
# error "Your compiler appears not to be fully C++23 compliant. Detected via defect macro BOOST_NO_CXX23_HDR_EXPECTED."
|
|
17
|
+
#endif
|
|
18
|
+
#ifdef BOOST_NO_CXX23_HDR_FLAT_MAP
|
|
19
|
+
# error "Your compiler appears not to be fully C++23 compliant. Detected via defect macro BOOST_NO_CXX23_HDR_FLAT_MAP."
|
|
20
|
+
#endif
|
|
21
|
+
#ifdef BOOST_NO_CXX23_HDR_FLAT_SET
|
|
22
|
+
# error "Your compiler appears not to be fully C++23 compliant. Detected via defect macro BOOST_NO_CXX23_HDR_FLAT_SET."
|
|
23
|
+
#endif
|
|
24
|
+
#ifdef BOOST_NO_CXX23_HDR_GENERATOR
|
|
25
|
+
# error "Your compiler appears not to be fully C++23 compliant. Detected via defect macro BOOST_NO_CXX23_HDR_GENERATOR."
|
|
26
|
+
#endif
|
|
27
|
+
#ifdef BOOST_NO_CXX23_HDR_MDSPAN
|
|
28
|
+
# error "Your compiler appears not to be fully C++23 compliant. Detected via defect macro BOOST_NO_CXX23_HDR_MDSPAN."
|
|
29
|
+
#endif
|
|
30
|
+
#ifdef BOOST_NO_CXX23_HDR_PRINT
|
|
31
|
+
# error "Your compiler appears not to be fully C++23 compliant. Detected via defect macro BOOST_NO_CXX23_HDR_PRINT."
|
|
32
|
+
#endif
|
|
33
|
+
#ifdef BOOST_NO_CXX23_HDR_SPANSTREAM
|
|
34
|
+
# error "Your compiler appears not to be fully C++23 compliant. Detected via defect macro BOOST_NO_CXX23_HDR_SPANSTREAM."
|
|
35
|
+
#endif
|
|
36
|
+
#ifdef BOOST_NO_CXX23_HDR_STACKTRACE
|
|
37
|
+
# error "Your compiler appears not to be fully C++23 compliant. Detected via defect macro BOOST_NO_CXX23_HDR_STACKTRACE."
|
|
38
|
+
#endif
|
|
39
|
+
#ifdef BOOST_NO_CXX23_HDR_STDFLOAT
|
|
40
|
+
# error "Your compiler appears not to be fully C++23 compliant. Detected via defect macro BOOST_NO_CXX23_HDR_STDFLOAT."
|
|
41
|
+
#endif
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
// This file was automatically generated on Wed Mar 3 08:46:11 2021
|
|
2
|
+
// by libs/config/tools/generate.cpp
|
|
3
|
+
// Copyright John Maddock 2002-4.
|
|
4
|
+
// Use, modification and distribution are subject to the
|
|
5
|
+
// Boost Software License, Version 1.0. (See accompanying file
|
|
6
|
+
// LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
|
|
7
|
+
|
|
8
|
+
// See http://www.boost.org/libs/config for the most recent version.//
|
|
9
|
+
// Revision $Id$
|
|
10
|
+
//
|
|
11
|
+
|
|
12
|
+
#include <boost/config.hpp>
|
|
13
|
+
#include <boost/config/assert_cxx17.hpp>
|
|
14
|
+
|
|
15
|
+
#ifdef BOOST_NO_CXX98_BINDERS
|
|
16
|
+
# error "Your compiler appears not to be fully C++98 compliant. Detected via defect macro BOOST_NO_CXX98_BINDERS."
|
|
17
|
+
#endif
|
|
18
|
+
#ifdef BOOST_NO_CXX98_FUNCTION_BASE
|
|
19
|
+
# error "Your compiler appears not to be fully C++98 compliant. Detected via defect macro BOOST_NO_CXX98_FUNCTION_BASE."
|
|
20
|
+
#endif
|
|
21
|
+
#ifdef BOOST_NO_CXX98_RANDOM_SHUFFLE
|
|
22
|
+
# error "Your compiler appears not to be fully C++98 compliant. Detected via defect macro BOOST_NO_CXX98_RANDOM_SHUFFLE."
|
|
23
|
+
#endif
|
|
@@ -0,0 +1,525 @@
|
|
|
1
|
+
// (C) Copyright John Maddock 2003.
|
|
2
|
+
// Use, modification and distribution are subject to the
|
|
3
|
+
// Boost Software License, Version 1.0. (See accompanying file
|
|
4
|
+
// LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
|
|
5
|
+
|
|
6
|
+
/*
|
|
7
|
+
* LOCATION: see http://www.boost.org for most recent version.
|
|
8
|
+
* FILE auto_link.hpp
|
|
9
|
+
* VERSION see <boost/version.hpp>
|
|
10
|
+
* DESCRIPTION: Automatic library inclusion for Borland/Microsoft compilers.
|
|
11
|
+
*/
|
|
12
|
+
|
|
13
|
+
/*************************************************************************
|
|
14
|
+
|
|
15
|
+
USAGE:
|
|
16
|
+
~~~~~~
|
|
17
|
+
|
|
18
|
+
Before including this header you must define one or more of define the following macros:
|
|
19
|
+
|
|
20
|
+
BOOST_LIB_NAME: Required: A string containing the basename of the library,
|
|
21
|
+
for example boost_regex.
|
|
22
|
+
BOOST_LIB_TOOLSET: Optional: the base name of the toolset.
|
|
23
|
+
BOOST_DYN_LINK: Optional: when set link to dll rather than static library.
|
|
24
|
+
BOOST_LIB_DIAGNOSTIC: Optional: when set the header will print out the name
|
|
25
|
+
of the library selected (useful for debugging).
|
|
26
|
+
BOOST_AUTO_LINK_NOMANGLE: Specifies that we should link to BOOST_LIB_NAME.lib,
|
|
27
|
+
rather than a mangled-name version.
|
|
28
|
+
BOOST_AUTO_LINK_TAGGED: Specifies that we link to libraries built with the --layout=tagged option.
|
|
29
|
+
This is essentially the same as the default name-mangled version, but without
|
|
30
|
+
the compiler name and version, or the Boost version. Just the build options.
|
|
31
|
+
BOOST_AUTO_LINK_SYSTEM: Specifies that we link to libraries built with the --layout=system option.
|
|
32
|
+
This is essentially the same as the non-name-mangled version, but with
|
|
33
|
+
the prefix to differentiate static and dll builds
|
|
34
|
+
|
|
35
|
+
These macros will be undef'ed at the end of the header, further this header
|
|
36
|
+
has no include guards - so be sure to include it only once from your library!
|
|
37
|
+
|
|
38
|
+
Algorithm:
|
|
39
|
+
~~~~~~~~~~
|
|
40
|
+
|
|
41
|
+
Libraries for Borland and Microsoft compilers are automatically
|
|
42
|
+
selected here, the name of the lib is selected according to the following
|
|
43
|
+
formula:
|
|
44
|
+
|
|
45
|
+
BOOST_LIB_PREFIX
|
|
46
|
+
+ BOOST_LIB_NAME
|
|
47
|
+
+ "_"
|
|
48
|
+
+ BOOST_LIB_TOOLSET
|
|
49
|
+
+ BOOST_LIB_THREAD_OPT
|
|
50
|
+
+ BOOST_LIB_RT_OPT
|
|
51
|
+
+ BOOST_LIB_ARCH_AND_MODEL_OPT
|
|
52
|
+
"-"
|
|
53
|
+
+ BOOST_LIB_VERSION
|
|
54
|
+
+ BOOST_LIB_SUFFIX
|
|
55
|
+
|
|
56
|
+
These are defined as:
|
|
57
|
+
|
|
58
|
+
BOOST_LIB_PREFIX: "lib" for static libraries otherwise "".
|
|
59
|
+
|
|
60
|
+
BOOST_LIB_NAME: The base name of the lib ( for example boost_regex).
|
|
61
|
+
|
|
62
|
+
BOOST_LIB_TOOLSET: The compiler toolset name (vc6, vc7, bcb5 etc).
|
|
63
|
+
|
|
64
|
+
BOOST_LIB_THREAD_OPT: "-mt" for multithread builds, otherwise nothing.
|
|
65
|
+
|
|
66
|
+
BOOST_LIB_RT_OPT: A suffix that indicates the runtime library used,
|
|
67
|
+
contains one or more of the following letters after
|
|
68
|
+
a hyphen:
|
|
69
|
+
|
|
70
|
+
s static runtime (dynamic if not present).
|
|
71
|
+
g debug/diagnostic runtime (release if not present).
|
|
72
|
+
y Python debug/diagnostic runtime (release if not present).
|
|
73
|
+
d debug build (release if not present).
|
|
74
|
+
p STLport build.
|
|
75
|
+
n STLport build without its IOStreams.
|
|
76
|
+
|
|
77
|
+
BOOST_LIB_ARCH_AND_MODEL_OPT: The architecture and address model
|
|
78
|
+
(-x32 or -x64 for x86/32 and x86/64 respectively)
|
|
79
|
+
|
|
80
|
+
BOOST_LIB_VERSION: The Boost version, in the form x_y, for Boost version x.y.
|
|
81
|
+
|
|
82
|
+
BOOST_LIB_SUFFIX: Static/import libraries extension (".lib", ".a") for the compiler.
|
|
83
|
+
|
|
84
|
+
***************************************************************************/
|
|
85
|
+
|
|
86
|
+
#ifdef __cplusplus
|
|
87
|
+
# ifndef BOOST_CONFIG_HPP
|
|
88
|
+
# include <boost/config.hpp>
|
|
89
|
+
# endif
|
|
90
|
+
#elif defined(_MSC_VER) && !defined(__MWERKS__) && !defined(__EDG_VERSION__)
|
|
91
|
+
//
|
|
92
|
+
// C language compatability (no, honestly)
|
|
93
|
+
//
|
|
94
|
+
# define BOOST_MSVC _MSC_VER
|
|
95
|
+
# define BOOST_STRINGIZE(X) BOOST_DO_STRINGIZE(X)
|
|
96
|
+
# define BOOST_DO_STRINGIZE(X) #X
|
|
97
|
+
#endif
|
|
98
|
+
//
|
|
99
|
+
// Only include what follows for known and supported compilers:
|
|
100
|
+
//
|
|
101
|
+
#if defined(BOOST_MSVC) \
|
|
102
|
+
|| defined(BOOST_EMBTC_WINDOWS) \
|
|
103
|
+
|| defined(BOOST_BORLANDC) \
|
|
104
|
+
|| (defined(__MWERKS__) && defined(_WIN32) && (__MWERKS__ >= 0x3000)) \
|
|
105
|
+
|| (defined(__ICL) && defined(_MSC_EXTENSIONS) && (_MSC_VER >= 1200)) \
|
|
106
|
+
|| (defined(BOOST_CLANG) && defined(BOOST_WINDOWS) && defined(_MSC_VER) && (__clang_major__ >= 4))
|
|
107
|
+
|
|
108
|
+
#ifndef BOOST_VERSION_HPP
|
|
109
|
+
# include <boost/version.hpp>
|
|
110
|
+
#endif
|
|
111
|
+
|
|
112
|
+
#ifndef BOOST_LIB_NAME
|
|
113
|
+
# error "Macro BOOST_LIB_NAME not set (internal error)"
|
|
114
|
+
#endif
|
|
115
|
+
|
|
116
|
+
//
|
|
117
|
+
// error check:
|
|
118
|
+
//
|
|
119
|
+
#if defined(__MSVC_RUNTIME_CHECKS) && !defined(_DEBUG)
|
|
120
|
+
# pragma message("Using the /RTC option without specifying a debug runtime will lead to linker errors")
|
|
121
|
+
# pragma message("Hint: go to the code generation options and switch to one of the debugging runtimes")
|
|
122
|
+
# error "Incompatible build options"
|
|
123
|
+
#endif
|
|
124
|
+
//
|
|
125
|
+
// select toolset if not defined already:
|
|
126
|
+
//
|
|
127
|
+
#ifndef BOOST_LIB_TOOLSET
|
|
128
|
+
# if defined(BOOST_MSVC) && (BOOST_MSVC < 1200)
|
|
129
|
+
// Note: no compilers before 1200 are supported
|
|
130
|
+
# elif defined(BOOST_MSVC) && (BOOST_MSVC < 1300)
|
|
131
|
+
|
|
132
|
+
# ifdef UNDER_CE
|
|
133
|
+
// eVC4:
|
|
134
|
+
# define BOOST_LIB_TOOLSET "evc4"
|
|
135
|
+
# else
|
|
136
|
+
// vc6:
|
|
137
|
+
# define BOOST_LIB_TOOLSET "vc6"
|
|
138
|
+
# endif
|
|
139
|
+
|
|
140
|
+
# elif defined(BOOST_MSVC) && (BOOST_MSVC < 1310)
|
|
141
|
+
|
|
142
|
+
// vc7:
|
|
143
|
+
# define BOOST_LIB_TOOLSET "vc7"
|
|
144
|
+
|
|
145
|
+
# elif defined(BOOST_MSVC) && (BOOST_MSVC < 1400)
|
|
146
|
+
|
|
147
|
+
// vc71:
|
|
148
|
+
# define BOOST_LIB_TOOLSET "vc71"
|
|
149
|
+
|
|
150
|
+
# elif defined(BOOST_MSVC) && (BOOST_MSVC < 1500)
|
|
151
|
+
|
|
152
|
+
// vc80:
|
|
153
|
+
# define BOOST_LIB_TOOLSET "vc80"
|
|
154
|
+
|
|
155
|
+
# elif defined(BOOST_MSVC) && (BOOST_MSVC < 1600)
|
|
156
|
+
|
|
157
|
+
// vc90:
|
|
158
|
+
# define BOOST_LIB_TOOLSET "vc90"
|
|
159
|
+
|
|
160
|
+
# elif defined(BOOST_MSVC) && (BOOST_MSVC < 1700)
|
|
161
|
+
|
|
162
|
+
// vc10:
|
|
163
|
+
# define BOOST_LIB_TOOLSET "vc100"
|
|
164
|
+
|
|
165
|
+
# elif defined(BOOST_MSVC) && (BOOST_MSVC < 1800)
|
|
166
|
+
|
|
167
|
+
// vc11:
|
|
168
|
+
# define BOOST_LIB_TOOLSET "vc110"
|
|
169
|
+
|
|
170
|
+
# elif defined(BOOST_MSVC) && (BOOST_MSVC < 1900)
|
|
171
|
+
|
|
172
|
+
// vc12:
|
|
173
|
+
# define BOOST_LIB_TOOLSET "vc120"
|
|
174
|
+
|
|
175
|
+
# elif defined(BOOST_MSVC) && (BOOST_MSVC < 1910)
|
|
176
|
+
|
|
177
|
+
// vc14:
|
|
178
|
+
# define BOOST_LIB_TOOLSET "vc140"
|
|
179
|
+
|
|
180
|
+
# elif defined(BOOST_MSVC) && (BOOST_MSVC < 1920)
|
|
181
|
+
|
|
182
|
+
// vc14.1:
|
|
183
|
+
# define BOOST_LIB_TOOLSET "vc141"
|
|
184
|
+
|
|
185
|
+
# elif defined(BOOST_MSVC) && (BOOST_MSVC < 1930)
|
|
186
|
+
|
|
187
|
+
// vc14.2:
|
|
188
|
+
# define BOOST_LIB_TOOLSET "vc142"
|
|
189
|
+
|
|
190
|
+
# elif defined(BOOST_MSVC)
|
|
191
|
+
|
|
192
|
+
// vc14.3:
|
|
193
|
+
# define BOOST_LIB_TOOLSET "vc143"
|
|
194
|
+
|
|
195
|
+
# elif defined(BOOST_EMBTC_WINDOWS)
|
|
196
|
+
|
|
197
|
+
// Embarcadero Clang based compilers:
|
|
198
|
+
# define BOOST_LIB_TOOLSET "embtc"
|
|
199
|
+
|
|
200
|
+
# elif defined(BOOST_BORLANDC)
|
|
201
|
+
|
|
202
|
+
// CBuilder 6:
|
|
203
|
+
# define BOOST_LIB_TOOLSET "bcb"
|
|
204
|
+
|
|
205
|
+
# elif defined(__ICL)
|
|
206
|
+
|
|
207
|
+
// Intel C++, no version number:
|
|
208
|
+
# define BOOST_LIB_TOOLSET "iw"
|
|
209
|
+
|
|
210
|
+
# elif defined(__MWERKS__) && (__MWERKS__ <= 0x31FF )
|
|
211
|
+
|
|
212
|
+
// Metrowerks CodeWarrior 8.x
|
|
213
|
+
# define BOOST_LIB_TOOLSET "cw8"
|
|
214
|
+
|
|
215
|
+
# elif defined(__MWERKS__) && (__MWERKS__ <= 0x32FF )
|
|
216
|
+
|
|
217
|
+
// Metrowerks CodeWarrior 9.x
|
|
218
|
+
# define BOOST_LIB_TOOLSET "cw9"
|
|
219
|
+
|
|
220
|
+
# elif defined(BOOST_CLANG) && defined(BOOST_WINDOWS) && defined(_MSC_VER) && (__clang_major__ >= 4)
|
|
221
|
+
|
|
222
|
+
// Clang on Windows
|
|
223
|
+
# define BOOST_LIB_TOOLSET "clangw" BOOST_STRINGIZE(__clang_major__)
|
|
224
|
+
|
|
225
|
+
# endif
|
|
226
|
+
#endif // BOOST_LIB_TOOLSET
|
|
227
|
+
|
|
228
|
+
//
|
|
229
|
+
// select thread opt:
|
|
230
|
+
//
|
|
231
|
+
#if defined(_MT) || defined(__MT__)
|
|
232
|
+
# define BOOST_LIB_THREAD_OPT "-mt"
|
|
233
|
+
#else
|
|
234
|
+
# define BOOST_LIB_THREAD_OPT
|
|
235
|
+
#endif
|
|
236
|
+
|
|
237
|
+
#if defined(_MSC_VER) || defined(__MWERKS__)
|
|
238
|
+
|
|
239
|
+
# ifdef _DLL
|
|
240
|
+
|
|
241
|
+
# if (defined(__SGI_STL_PORT) || defined(_STLPORT_VERSION)) && (defined(_STLP_OWN_IOSTREAMS) || defined(__STL_OWN_IOSTREAMS))
|
|
242
|
+
|
|
243
|
+
# if defined(_DEBUG) && (defined(__STL_DEBUG) || defined(_STLP_DEBUG))\
|
|
244
|
+
&& defined(BOOST_DEBUG_PYTHON) && defined(BOOST_LINKING_PYTHON)
|
|
245
|
+
# define BOOST_LIB_RT_OPT "-gydp"
|
|
246
|
+
# elif defined(_DEBUG) && (defined(__STL_DEBUG) || defined(_STLP_DEBUG))
|
|
247
|
+
# define BOOST_LIB_RT_OPT "-gdp"
|
|
248
|
+
# elif defined(_DEBUG)\
|
|
249
|
+
&& defined(BOOST_DEBUG_PYTHON) && defined(BOOST_LINKING_PYTHON)
|
|
250
|
+
# define BOOST_LIB_RT_OPT "-gydp"
|
|
251
|
+
# pragma message("warning: STLport debug versions are built with /D_STLP_DEBUG=1")
|
|
252
|
+
# error "Build options aren't compatible with pre-built libraries"
|
|
253
|
+
# elif defined(_DEBUG)
|
|
254
|
+
# define BOOST_LIB_RT_OPT "-gdp"
|
|
255
|
+
# pragma message("warning: STLport debug versions are built with /D_STLP_DEBUG=1")
|
|
256
|
+
# error "Build options aren't compatible with pre-built libraries"
|
|
257
|
+
# else
|
|
258
|
+
# define BOOST_LIB_RT_OPT "-p"
|
|
259
|
+
# endif
|
|
260
|
+
|
|
261
|
+
# elif defined(__SGI_STL_PORT) || defined(_STLPORT_VERSION)
|
|
262
|
+
|
|
263
|
+
# if defined(_DEBUG) && (defined(__STL_DEBUG) || defined(_STLP_DEBUG))\
|
|
264
|
+
&& defined(BOOST_DEBUG_PYTHON) && defined(BOOST_LINKING_PYTHON)
|
|
265
|
+
# define BOOST_LIB_RT_OPT "-gydpn"
|
|
266
|
+
# elif defined(_DEBUG) && (defined(__STL_DEBUG) || defined(_STLP_DEBUG))
|
|
267
|
+
# define BOOST_LIB_RT_OPT "-gdpn"
|
|
268
|
+
# elif defined(_DEBUG)\
|
|
269
|
+
&& defined(BOOST_DEBUG_PYTHON) && defined(BOOST_LINKING_PYTHON)
|
|
270
|
+
# define BOOST_LIB_RT_OPT "-gydpn"
|
|
271
|
+
# pragma message("warning: STLport debug versions are built with /D_STLP_DEBUG=1")
|
|
272
|
+
# error "Build options aren't compatible with pre-built libraries"
|
|
273
|
+
# elif defined(_DEBUG)
|
|
274
|
+
# define BOOST_LIB_RT_OPT "-gdpn"
|
|
275
|
+
# pragma message("warning: STLport debug versions are built with /D_STLP_DEBUG=1")
|
|
276
|
+
# error "Build options aren't compatible with pre-built libraries"
|
|
277
|
+
# else
|
|
278
|
+
# define BOOST_LIB_RT_OPT "-pn"
|
|
279
|
+
# endif
|
|
280
|
+
|
|
281
|
+
# else
|
|
282
|
+
|
|
283
|
+
# if defined(_DEBUG) && defined(BOOST_DEBUG_PYTHON) && defined(BOOST_LINKING_PYTHON)
|
|
284
|
+
# define BOOST_LIB_RT_OPT "-gyd"
|
|
285
|
+
# elif defined(_DEBUG)
|
|
286
|
+
# define BOOST_LIB_RT_OPT "-gd"
|
|
287
|
+
# else
|
|
288
|
+
# define BOOST_LIB_RT_OPT
|
|
289
|
+
# endif
|
|
290
|
+
|
|
291
|
+
# endif
|
|
292
|
+
|
|
293
|
+
# else
|
|
294
|
+
|
|
295
|
+
# if (defined(__SGI_STL_PORT) || defined(_STLPORT_VERSION)) && (defined(_STLP_OWN_IOSTREAMS) || defined(__STL_OWN_IOSTREAMS))
|
|
296
|
+
|
|
297
|
+
# if defined(_DEBUG) && (defined(__STL_DEBUG) || defined(_STLP_DEBUG))\
|
|
298
|
+
&& defined(BOOST_DEBUG_PYTHON) && defined(BOOST_LINKING_PYTHON)
|
|
299
|
+
# define BOOST_LIB_RT_OPT "-sgydp"
|
|
300
|
+
# elif defined(_DEBUG) && (defined(__STL_DEBUG) || defined(_STLP_DEBUG))
|
|
301
|
+
# define BOOST_LIB_RT_OPT "-sgdp"
|
|
302
|
+
# elif defined(_DEBUG)\
|
|
303
|
+
&& defined(BOOST_DEBUG_PYTHON) && defined(BOOST_LINKING_PYTHON)
|
|
304
|
+
# define BOOST_LIB_RT_OPT "-sgydp"
|
|
305
|
+
# pragma message("warning: STLport debug versions are built with /D_STLP_DEBUG=1")
|
|
306
|
+
# error "Build options aren't compatible with pre-built libraries"
|
|
307
|
+
# elif defined(_DEBUG)
|
|
308
|
+
# define BOOST_LIB_RT_OPT "-sgdp"
|
|
309
|
+
# pragma message("warning: STLport debug versions are built with /D_STLP_DEBUG=1")
|
|
310
|
+
# error "Build options aren't compatible with pre-built libraries"
|
|
311
|
+
# else
|
|
312
|
+
# define BOOST_LIB_RT_OPT "-sp"
|
|
313
|
+
# endif
|
|
314
|
+
|
|
315
|
+
# elif defined(__SGI_STL_PORT) || defined(_STLPORT_VERSION)
|
|
316
|
+
|
|
317
|
+
# if defined(_DEBUG) && (defined(__STL_DEBUG) || defined(_STLP_DEBUG))\
|
|
318
|
+
&& defined(BOOST_DEBUG_PYTHON) && defined(BOOST_LINKING_PYTHON)
|
|
319
|
+
# define BOOST_LIB_RT_OPT "-sgydpn"
|
|
320
|
+
# elif defined(_DEBUG) && (defined(__STL_DEBUG) || defined(_STLP_DEBUG))
|
|
321
|
+
# define BOOST_LIB_RT_OPT "-sgdpn"
|
|
322
|
+
# elif defined(_DEBUG)\
|
|
323
|
+
&& defined(BOOST_DEBUG_PYTHON) && defined(BOOST_LINKING_PYTHON)
|
|
324
|
+
# define BOOST_LIB_RT_OPT "-sgydpn"
|
|
325
|
+
# pragma message("warning: STLport debug versions are built with /D_STLP_DEBUG=1")
|
|
326
|
+
# error "Build options aren't compatible with pre-built libraries"
|
|
327
|
+
# elif defined(_DEBUG)
|
|
328
|
+
# define BOOST_LIB_RT_OPT "-sgdpn"
|
|
329
|
+
# pragma message("warning: STLport debug versions are built with /D_STLP_DEBUG=1")
|
|
330
|
+
# error "Build options aren't compatible with pre-built libraries"
|
|
331
|
+
# else
|
|
332
|
+
# define BOOST_LIB_RT_OPT "-spn"
|
|
333
|
+
# endif
|
|
334
|
+
|
|
335
|
+
# else
|
|
336
|
+
|
|
337
|
+
# if defined(_DEBUG)\
|
|
338
|
+
&& defined(BOOST_DEBUG_PYTHON) && defined(BOOST_LINKING_PYTHON)
|
|
339
|
+
# define BOOST_LIB_RT_OPT "-sgyd"
|
|
340
|
+
# elif defined(_DEBUG)
|
|
341
|
+
# define BOOST_LIB_RT_OPT "-sgd"
|
|
342
|
+
# else
|
|
343
|
+
# define BOOST_LIB_RT_OPT "-s"
|
|
344
|
+
# endif
|
|
345
|
+
|
|
346
|
+
# endif
|
|
347
|
+
|
|
348
|
+
# endif
|
|
349
|
+
|
|
350
|
+
#elif defined(BOOST_EMBTC_WINDOWS)
|
|
351
|
+
|
|
352
|
+
# ifdef _RTLDLL
|
|
353
|
+
|
|
354
|
+
# if defined(_DEBUG)
|
|
355
|
+
# define BOOST_LIB_RT_OPT "-d"
|
|
356
|
+
# else
|
|
357
|
+
# define BOOST_LIB_RT_OPT
|
|
358
|
+
# endif
|
|
359
|
+
|
|
360
|
+
# else
|
|
361
|
+
|
|
362
|
+
# if defined(_DEBUG)
|
|
363
|
+
# define BOOST_LIB_RT_OPT "-sd"
|
|
364
|
+
# else
|
|
365
|
+
# define BOOST_LIB_RT_OPT "-s"
|
|
366
|
+
# endif
|
|
367
|
+
|
|
368
|
+
# endif
|
|
369
|
+
|
|
370
|
+
#elif defined(BOOST_BORLANDC)
|
|
371
|
+
|
|
372
|
+
//
|
|
373
|
+
// figure out whether we want the debug builds or not:
|
|
374
|
+
//
|
|
375
|
+
#if BOOST_BORLANDC > 0x561
|
|
376
|
+
#pragma defineonoption BOOST_BORLAND_DEBUG -v
|
|
377
|
+
#endif
|
|
378
|
+
//
|
|
379
|
+
// sanity check:
|
|
380
|
+
//
|
|
381
|
+
#if defined(__STL_DEBUG) || defined(_STLP_DEBUG)
|
|
382
|
+
#error "Pre-built versions of the Boost libraries are not provided in STLport-debug form"
|
|
383
|
+
#endif
|
|
384
|
+
|
|
385
|
+
# ifdef _RTLDLL
|
|
386
|
+
|
|
387
|
+
# if defined(BOOST_BORLAND_DEBUG)\
|
|
388
|
+
&& defined(BOOST_DEBUG_PYTHON) && defined(BOOST_LINKING_PYTHON)
|
|
389
|
+
# define BOOST_LIB_RT_OPT "-yd"
|
|
390
|
+
# elif defined(BOOST_BORLAND_DEBUG)
|
|
391
|
+
# define BOOST_LIB_RT_OPT "-d"
|
|
392
|
+
# elif defined(BOOST_DEBUG_PYTHON) && defined(BOOST_LINKING_PYTHON)
|
|
393
|
+
# define BOOST_LIB_RT_OPT "-y"
|
|
394
|
+
# else
|
|
395
|
+
# define BOOST_LIB_RT_OPT
|
|
396
|
+
# endif
|
|
397
|
+
|
|
398
|
+
# else
|
|
399
|
+
|
|
400
|
+
# if defined(BOOST_BORLAND_DEBUG)\
|
|
401
|
+
&& defined(BOOST_DEBUG_PYTHON) && defined(BOOST_LINKING_PYTHON)
|
|
402
|
+
# define BOOST_LIB_RT_OPT "-syd"
|
|
403
|
+
# elif defined(BOOST_BORLAND_DEBUG)
|
|
404
|
+
# define BOOST_LIB_RT_OPT "-sd"
|
|
405
|
+
# elif defined(BOOST_DEBUG_PYTHON) && defined(BOOST_LINKING_PYTHON)
|
|
406
|
+
# define BOOST_LIB_RT_OPT "-sy"
|
|
407
|
+
# else
|
|
408
|
+
# define BOOST_LIB_RT_OPT "-s"
|
|
409
|
+
# endif
|
|
410
|
+
|
|
411
|
+
# endif
|
|
412
|
+
|
|
413
|
+
#endif
|
|
414
|
+
|
|
415
|
+
//
|
|
416
|
+
// BOOST_LIB_ARCH_AND_MODEL_OPT
|
|
417
|
+
//
|
|
418
|
+
|
|
419
|
+
#if defined( _M_IX86 )
|
|
420
|
+
# define BOOST_LIB_ARCH_AND_MODEL_OPT "-x32"
|
|
421
|
+
#elif defined( _M_X64 )
|
|
422
|
+
# define BOOST_LIB_ARCH_AND_MODEL_OPT "-x64"
|
|
423
|
+
#elif defined( _M_ARM )
|
|
424
|
+
# define BOOST_LIB_ARCH_AND_MODEL_OPT "-a32"
|
|
425
|
+
#elif defined( _M_ARM64 )
|
|
426
|
+
# define BOOST_LIB_ARCH_AND_MODEL_OPT "-a64"
|
|
427
|
+
#endif
|
|
428
|
+
|
|
429
|
+
//
|
|
430
|
+
// select linkage opt:
|
|
431
|
+
//
|
|
432
|
+
#if (defined(_DLL) || defined(_RTLDLL)) && defined(BOOST_DYN_LINK)
|
|
433
|
+
# define BOOST_LIB_PREFIX
|
|
434
|
+
#elif defined(BOOST_DYN_LINK)
|
|
435
|
+
# error "Mixing a dll boost library with a static runtime is a really bad idea..."
|
|
436
|
+
#else
|
|
437
|
+
# define BOOST_LIB_PREFIX "lib"
|
|
438
|
+
#endif
|
|
439
|
+
|
|
440
|
+
//
|
|
441
|
+
// now include the lib:
|
|
442
|
+
//
|
|
443
|
+
#if defined(BOOST_LIB_NAME) \
|
|
444
|
+
&& defined(BOOST_LIB_PREFIX) \
|
|
445
|
+
&& defined(BOOST_LIB_TOOLSET) \
|
|
446
|
+
&& defined(BOOST_LIB_THREAD_OPT) \
|
|
447
|
+
&& defined(BOOST_LIB_RT_OPT) \
|
|
448
|
+
&& defined(BOOST_LIB_ARCH_AND_MODEL_OPT) \
|
|
449
|
+
&& defined(BOOST_LIB_VERSION)
|
|
450
|
+
|
|
451
|
+
#if defined(BOOST_EMBTC_WIN64)
|
|
452
|
+
# define BOOST_LIB_SUFFIX ".a"
|
|
453
|
+
#else
|
|
454
|
+
# define BOOST_LIB_SUFFIX ".lib"
|
|
455
|
+
#endif
|
|
456
|
+
|
|
457
|
+
#ifdef BOOST_AUTO_LINK_NOMANGLE
|
|
458
|
+
# pragma comment(lib, BOOST_STRINGIZE(BOOST_LIB_NAME) BOOST_LIB_SUFFIX)
|
|
459
|
+
# ifdef BOOST_LIB_DIAGNOSTIC
|
|
460
|
+
# pragma message ("Linking to lib file: " BOOST_STRINGIZE(BOOST_LIB_NAME) BOOST_LIB_SUFFIX)
|
|
461
|
+
# endif
|
|
462
|
+
#elif defined(BOOST_AUTO_LINK_TAGGED)
|
|
463
|
+
# pragma comment(lib, BOOST_LIB_PREFIX BOOST_STRINGIZE(BOOST_LIB_NAME) BOOST_LIB_THREAD_OPT BOOST_LIB_RT_OPT BOOST_LIB_ARCH_AND_MODEL_OPT BOOST_LIB_SUFFIX)
|
|
464
|
+
# ifdef BOOST_LIB_DIAGNOSTIC
|
|
465
|
+
# pragma message ("Linking to lib file: " BOOST_LIB_PREFIX BOOST_STRINGIZE(BOOST_LIB_NAME) BOOST_LIB_THREAD_OPT BOOST_LIB_RT_OPT BOOST_LIB_ARCH_AND_MODEL_OPT BOOST_LIB_SUFFIX)
|
|
466
|
+
# endif
|
|
467
|
+
#elif defined(BOOST_AUTO_LINK_SYSTEM)
|
|
468
|
+
# pragma comment(lib, BOOST_LIB_PREFIX BOOST_STRINGIZE(BOOST_LIB_NAME) BOOST_LIB_SUFFIX)
|
|
469
|
+
# ifdef BOOST_LIB_DIAGNOSTIC
|
|
470
|
+
# pragma message ("Linking to lib file: " BOOST_LIB_PREFIX BOOST_STRINGIZE(BOOST_LIB_NAME) BOOST_LIB_SUFFIX)
|
|
471
|
+
# endif
|
|
472
|
+
#elif defined(BOOST_LIB_BUILDID)
|
|
473
|
+
# pragma comment(lib, BOOST_LIB_PREFIX BOOST_STRINGIZE(BOOST_LIB_NAME) "-" BOOST_LIB_TOOLSET BOOST_LIB_THREAD_OPT BOOST_LIB_RT_OPT BOOST_LIB_ARCH_AND_MODEL_OPT "-" BOOST_LIB_VERSION "-" BOOST_STRINGIZE(BOOST_LIB_BUILDID) BOOST_LIB_SUFFIX)
|
|
474
|
+
# ifdef BOOST_LIB_DIAGNOSTIC
|
|
475
|
+
# pragma message ("Linking to lib file: " BOOST_LIB_PREFIX BOOST_STRINGIZE(BOOST_LIB_NAME) "-" BOOST_LIB_TOOLSET BOOST_LIB_THREAD_OPT BOOST_LIB_RT_OPT BOOST_LIB_ARCH_AND_MODEL_OPT "-" BOOST_LIB_VERSION "-" BOOST_STRINGIZE(BOOST_LIB_BUILDID) BOOST_LIB_SUFFIX)
|
|
476
|
+
# endif
|
|
477
|
+
#else
|
|
478
|
+
# pragma comment(lib, BOOST_LIB_PREFIX BOOST_STRINGIZE(BOOST_LIB_NAME) "-" BOOST_LIB_TOOLSET BOOST_LIB_THREAD_OPT BOOST_LIB_RT_OPT BOOST_LIB_ARCH_AND_MODEL_OPT "-" BOOST_LIB_VERSION BOOST_LIB_SUFFIX)
|
|
479
|
+
# ifdef BOOST_LIB_DIAGNOSTIC
|
|
480
|
+
# pragma message ("Linking to lib file: " BOOST_LIB_PREFIX BOOST_STRINGIZE(BOOST_LIB_NAME) "-" BOOST_LIB_TOOLSET BOOST_LIB_THREAD_OPT BOOST_LIB_RT_OPT BOOST_LIB_ARCH_AND_MODEL_OPT "-" BOOST_LIB_VERSION BOOST_LIB_SUFFIX)
|
|
481
|
+
# endif
|
|
482
|
+
#endif
|
|
483
|
+
|
|
484
|
+
#else
|
|
485
|
+
# error "some required macros where not defined (internal logic error)."
|
|
486
|
+
#endif
|
|
487
|
+
|
|
488
|
+
|
|
489
|
+
#endif // _MSC_VER || __BORLANDC__
|
|
490
|
+
|
|
491
|
+
//
|
|
492
|
+
// finally undef any macros we may have set:
|
|
493
|
+
//
|
|
494
|
+
#ifdef BOOST_LIB_PREFIX
|
|
495
|
+
# undef BOOST_LIB_PREFIX
|
|
496
|
+
#endif
|
|
497
|
+
#if defined(BOOST_LIB_NAME)
|
|
498
|
+
# undef BOOST_LIB_NAME
|
|
499
|
+
#endif
|
|
500
|
+
// Don't undef this one: it can be set by the user and should be the
|
|
501
|
+
// same for all libraries:
|
|
502
|
+
//#if defined(BOOST_LIB_TOOLSET)
|
|
503
|
+
//# undef BOOST_LIB_TOOLSET
|
|
504
|
+
//#endif
|
|
505
|
+
#if defined(BOOST_LIB_THREAD_OPT)
|
|
506
|
+
# undef BOOST_LIB_THREAD_OPT
|
|
507
|
+
#endif
|
|
508
|
+
#if defined(BOOST_LIB_RT_OPT)
|
|
509
|
+
# undef BOOST_LIB_RT_OPT
|
|
510
|
+
#endif
|
|
511
|
+
#if defined(BOOST_LIB_ARCH_AND_MODEL_OPT)
|
|
512
|
+
# undef BOOST_LIB_ARCH_AND_MODEL_OPT
|
|
513
|
+
#endif
|
|
514
|
+
#if defined(BOOST_LIB_LINK_OPT)
|
|
515
|
+
# undef BOOST_LIB_LINK_OPT
|
|
516
|
+
#endif
|
|
517
|
+
#if defined(BOOST_LIB_DEBUG_OPT)
|
|
518
|
+
# undef BOOST_LIB_DEBUG_OPT
|
|
519
|
+
#endif
|
|
520
|
+
#if defined(BOOST_DYN_LINK)
|
|
521
|
+
# undef BOOST_DYN_LINK
|
|
522
|
+
#endif
|
|
523
|
+
#if defined(BOOST_LIB_SUFFIX)
|
|
524
|
+
# undef BOOST_LIB_SUFFIX
|
|
525
|
+
#endif
|