numpy 2.3.5__cp313-cp313-macosx_14_0_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 numpy might be problematic. Click here for more details.
- numpy/__config__.py +170 -0
- numpy/__config__.pyi +102 -0
- numpy/__init__.cython-30.pxd +1241 -0
- numpy/__init__.pxd +1154 -0
- numpy/__init__.py +945 -0
- numpy/__init__.pyi +6147 -0
- numpy/_array_api_info.py +346 -0
- numpy/_array_api_info.pyi +207 -0
- numpy/_configtool.py +39 -0
- numpy/_configtool.pyi +1 -0
- numpy/_core/__init__.py +186 -0
- numpy/_core/__init__.pyi +2 -0
- numpy/_core/_add_newdocs.py +6967 -0
- numpy/_core/_add_newdocs.pyi +3 -0
- numpy/_core/_add_newdocs_scalars.py +390 -0
- numpy/_core/_add_newdocs_scalars.pyi +16 -0
- numpy/_core/_asarray.py +134 -0
- numpy/_core/_asarray.pyi +41 -0
- numpy/_core/_dtype.py +366 -0
- numpy/_core/_dtype.pyi +58 -0
- numpy/_core/_dtype_ctypes.py +120 -0
- numpy/_core/_dtype_ctypes.pyi +83 -0
- numpy/_core/_exceptions.py +162 -0
- numpy/_core/_exceptions.pyi +55 -0
- numpy/_core/_internal.py +958 -0
- numpy/_core/_internal.pyi +72 -0
- numpy/_core/_machar.py +355 -0
- numpy/_core/_machar.pyi +55 -0
- numpy/_core/_methods.py +255 -0
- numpy/_core/_methods.pyi +22 -0
- numpy/_core/_multiarray_tests.cpython-313-darwin.so +0 -0
- numpy/_core/_multiarray_umath.cpython-313-darwin.so +0 -0
- numpy/_core/_operand_flag_tests.cpython-313-darwin.so +0 -0
- numpy/_core/_rational_tests.cpython-313-darwin.so +0 -0
- numpy/_core/_simd.cpython-313-darwin.so +0 -0
- numpy/_core/_simd.pyi +25 -0
- numpy/_core/_string_helpers.py +100 -0
- numpy/_core/_string_helpers.pyi +12 -0
- numpy/_core/_struct_ufunc_tests.cpython-313-darwin.so +0 -0
- numpy/_core/_type_aliases.py +119 -0
- numpy/_core/_type_aliases.pyi +97 -0
- numpy/_core/_ufunc_config.py +491 -0
- numpy/_core/_ufunc_config.pyi +78 -0
- numpy/_core/_umath_tests.cpython-313-darwin.so +0 -0
- numpy/_core/arrayprint.py +1775 -0
- numpy/_core/arrayprint.pyi +238 -0
- numpy/_core/cversions.py +13 -0
- numpy/_core/defchararray.py +1427 -0
- numpy/_core/defchararray.pyi +1135 -0
- numpy/_core/einsumfunc.py +1498 -0
- numpy/_core/einsumfunc.pyi +184 -0
- numpy/_core/fromnumeric.py +4269 -0
- numpy/_core/fromnumeric.pyi +1750 -0
- numpy/_core/function_base.py +545 -0
- numpy/_core/function_base.pyi +278 -0
- numpy/_core/getlimits.py +748 -0
- numpy/_core/getlimits.pyi +3 -0
- numpy/_core/include/numpy/__multiarray_api.c +376 -0
- numpy/_core/include/numpy/__multiarray_api.h +1628 -0
- numpy/_core/include/numpy/__ufunc_api.c +54 -0
- numpy/_core/include/numpy/__ufunc_api.h +341 -0
- numpy/_core/include/numpy/_neighborhood_iterator_imp.h +90 -0
- numpy/_core/include/numpy/_numpyconfig.h +33 -0
- numpy/_core/include/numpy/_public_dtype_api_table.h +86 -0
- numpy/_core/include/numpy/arrayobject.h +7 -0
- numpy/_core/include/numpy/arrayscalars.h +196 -0
- numpy/_core/include/numpy/dtype_api.h +480 -0
- numpy/_core/include/numpy/halffloat.h +70 -0
- numpy/_core/include/numpy/ndarrayobject.h +304 -0
- numpy/_core/include/numpy/ndarraytypes.h +1950 -0
- numpy/_core/include/numpy/npy_2_compat.h +249 -0
- numpy/_core/include/numpy/npy_2_complexcompat.h +28 -0
- numpy/_core/include/numpy/npy_3kcompat.h +374 -0
- numpy/_core/include/numpy/npy_common.h +977 -0
- numpy/_core/include/numpy/npy_cpu.h +124 -0
- numpy/_core/include/numpy/npy_endian.h +78 -0
- numpy/_core/include/numpy/npy_math.h +602 -0
- numpy/_core/include/numpy/npy_no_deprecated_api.h +20 -0
- numpy/_core/include/numpy/npy_os.h +42 -0
- numpy/_core/include/numpy/numpyconfig.h +182 -0
- numpy/_core/include/numpy/random/LICENSE.txt +21 -0
- numpy/_core/include/numpy/random/bitgen.h +20 -0
- numpy/_core/include/numpy/random/distributions.h +209 -0
- numpy/_core/include/numpy/random/libdivide.h +2079 -0
- numpy/_core/include/numpy/ufuncobject.h +343 -0
- numpy/_core/include/numpy/utils.h +37 -0
- numpy/_core/lib/libnpymath.a +0 -0
- numpy/_core/lib/npy-pkg-config/mlib.ini +12 -0
- numpy/_core/lib/npy-pkg-config/npymath.ini +20 -0
- numpy/_core/lib/pkgconfig/numpy.pc +7 -0
- numpy/_core/memmap.py +363 -0
- numpy/_core/memmap.pyi +3 -0
- numpy/_core/multiarray.py +1762 -0
- numpy/_core/multiarray.pyi +1285 -0
- numpy/_core/numeric.py +2760 -0
- numpy/_core/numeric.pyi +882 -0
- numpy/_core/numerictypes.py +633 -0
- numpy/_core/numerictypes.pyi +197 -0
- numpy/_core/overrides.py +183 -0
- numpy/_core/overrides.pyi +48 -0
- numpy/_core/printoptions.py +32 -0
- numpy/_core/printoptions.pyi +28 -0
- numpy/_core/records.py +1089 -0
- numpy/_core/records.pyi +333 -0
- numpy/_core/shape_base.py +998 -0
- numpy/_core/shape_base.pyi +175 -0
- numpy/_core/strings.py +1829 -0
- numpy/_core/strings.pyi +511 -0
- numpy/_core/tests/_locales.py +72 -0
- numpy/_core/tests/_natype.py +205 -0
- numpy/_core/tests/data/astype_copy.pkl +0 -0
- numpy/_core/tests/data/generate_umath_validation_data.cpp +170 -0
- numpy/_core/tests/data/recarray_from_file.fits +0 -0
- numpy/_core/tests/data/umath-validation-set-README.txt +15 -0
- numpy/_core/tests/data/umath-validation-set-arccos.csv +1429 -0
- numpy/_core/tests/data/umath-validation-set-arccosh.csv +1429 -0
- numpy/_core/tests/data/umath-validation-set-arcsin.csv +1429 -0
- numpy/_core/tests/data/umath-validation-set-arcsinh.csv +1429 -0
- numpy/_core/tests/data/umath-validation-set-arctan.csv +1429 -0
- numpy/_core/tests/data/umath-validation-set-arctanh.csv +1429 -0
- numpy/_core/tests/data/umath-validation-set-cbrt.csv +1429 -0
- numpy/_core/tests/data/umath-validation-set-cos.csv +1375 -0
- numpy/_core/tests/data/umath-validation-set-cosh.csv +1429 -0
- numpy/_core/tests/data/umath-validation-set-exp.csv +412 -0
- numpy/_core/tests/data/umath-validation-set-exp2.csv +1429 -0
- numpy/_core/tests/data/umath-validation-set-expm1.csv +1429 -0
- numpy/_core/tests/data/umath-validation-set-log.csv +271 -0
- numpy/_core/tests/data/umath-validation-set-log10.csv +1629 -0
- numpy/_core/tests/data/umath-validation-set-log1p.csv +1429 -0
- numpy/_core/tests/data/umath-validation-set-log2.csv +1629 -0
- numpy/_core/tests/data/umath-validation-set-sin.csv +1370 -0
- numpy/_core/tests/data/umath-validation-set-sinh.csv +1429 -0
- numpy/_core/tests/data/umath-validation-set-tan.csv +1429 -0
- numpy/_core/tests/data/umath-validation-set-tanh.csv +1429 -0
- numpy/_core/tests/examples/cython/checks.pyx +373 -0
- numpy/_core/tests/examples/cython/meson.build +43 -0
- numpy/_core/tests/examples/cython/setup.py +39 -0
- numpy/_core/tests/examples/limited_api/limited_api1.c +17 -0
- numpy/_core/tests/examples/limited_api/limited_api2.pyx +11 -0
- numpy/_core/tests/examples/limited_api/limited_api_latest.c +19 -0
- numpy/_core/tests/examples/limited_api/meson.build +59 -0
- numpy/_core/tests/examples/limited_api/setup.py +24 -0
- numpy/_core/tests/test__exceptions.py +90 -0
- numpy/_core/tests/test_abc.py +54 -0
- numpy/_core/tests/test_api.py +654 -0
- numpy/_core/tests/test_argparse.py +92 -0
- numpy/_core/tests/test_array_api_info.py +113 -0
- numpy/_core/tests/test_array_coercion.py +911 -0
- numpy/_core/tests/test_array_interface.py +222 -0
- numpy/_core/tests/test_arraymethod.py +84 -0
- numpy/_core/tests/test_arrayobject.py +75 -0
- numpy/_core/tests/test_arrayprint.py +1328 -0
- numpy/_core/tests/test_casting_floatingpoint_errors.py +154 -0
- numpy/_core/tests/test_casting_unittests.py +817 -0
- numpy/_core/tests/test_conversion_utils.py +206 -0
- numpy/_core/tests/test_cpu_dispatcher.py +49 -0
- numpy/_core/tests/test_cpu_features.py +432 -0
- numpy/_core/tests/test_custom_dtypes.py +315 -0
- numpy/_core/tests/test_cython.py +351 -0
- numpy/_core/tests/test_datetime.py +2734 -0
- numpy/_core/tests/test_defchararray.py +825 -0
- numpy/_core/tests/test_deprecations.py +454 -0
- numpy/_core/tests/test_dlpack.py +190 -0
- numpy/_core/tests/test_dtype.py +1995 -0
- numpy/_core/tests/test_einsum.py +1317 -0
- numpy/_core/tests/test_errstate.py +131 -0
- numpy/_core/tests/test_extint128.py +217 -0
- numpy/_core/tests/test_function_base.py +503 -0
- numpy/_core/tests/test_getlimits.py +205 -0
- numpy/_core/tests/test_half.py +568 -0
- numpy/_core/tests/test_hashtable.py +35 -0
- numpy/_core/tests/test_indexerrors.py +125 -0
- numpy/_core/tests/test_indexing.py +1455 -0
- numpy/_core/tests/test_item_selection.py +167 -0
- numpy/_core/tests/test_limited_api.py +102 -0
- numpy/_core/tests/test_longdouble.py +369 -0
- numpy/_core/tests/test_machar.py +30 -0
- numpy/_core/tests/test_mem_overlap.py +930 -0
- numpy/_core/tests/test_mem_policy.py +452 -0
- numpy/_core/tests/test_memmap.py +246 -0
- numpy/_core/tests/test_multiarray.py +10577 -0
- numpy/_core/tests/test_multithreading.py +292 -0
- numpy/_core/tests/test_nditer.py +3498 -0
- numpy/_core/tests/test_nep50_promotions.py +287 -0
- numpy/_core/tests/test_numeric.py +4247 -0
- numpy/_core/tests/test_numerictypes.py +651 -0
- numpy/_core/tests/test_overrides.py +791 -0
- numpy/_core/tests/test_print.py +200 -0
- numpy/_core/tests/test_protocols.py +46 -0
- numpy/_core/tests/test_records.py +544 -0
- numpy/_core/tests/test_regression.py +2670 -0
- numpy/_core/tests/test_scalar_ctors.py +207 -0
- numpy/_core/tests/test_scalar_methods.py +246 -0
- numpy/_core/tests/test_scalarbuffer.py +153 -0
- numpy/_core/tests/test_scalarinherit.py +105 -0
- numpy/_core/tests/test_scalarmath.py +1176 -0
- numpy/_core/tests/test_scalarprint.py +403 -0
- numpy/_core/tests/test_shape_base.py +891 -0
- numpy/_core/tests/test_simd.py +1341 -0
- numpy/_core/tests/test_simd_module.py +103 -0
- numpy/_core/tests/test_stringdtype.py +1814 -0
- numpy/_core/tests/test_strings.py +1499 -0
- numpy/_core/tests/test_ufunc.py +3313 -0
- numpy/_core/tests/test_umath.py +4928 -0
- numpy/_core/tests/test_umath_accuracy.py +124 -0
- numpy/_core/tests/test_umath_complex.py +626 -0
- numpy/_core/tests/test_unicode.py +368 -0
- numpy/_core/umath.py +60 -0
- numpy/_core/umath.pyi +197 -0
- numpy/_distributor_init.py +15 -0
- numpy/_distributor_init.pyi +1 -0
- numpy/_expired_attrs_2_0.py +79 -0
- numpy/_expired_attrs_2_0.pyi +62 -0
- numpy/_globals.py +96 -0
- numpy/_globals.pyi +17 -0
- numpy/_pyinstaller/__init__.py +0 -0
- numpy/_pyinstaller/__init__.pyi +0 -0
- numpy/_pyinstaller/hook-numpy.py +36 -0
- numpy/_pyinstaller/hook-numpy.pyi +13 -0
- numpy/_pyinstaller/tests/__init__.py +16 -0
- numpy/_pyinstaller/tests/pyinstaller-smoke.py +32 -0
- numpy/_pyinstaller/tests/test_pyinstaller.py +35 -0
- numpy/_pytesttester.py +201 -0
- numpy/_pytesttester.pyi +18 -0
- numpy/_typing/__init__.py +148 -0
- numpy/_typing/_add_docstring.py +153 -0
- numpy/_typing/_array_like.py +106 -0
- numpy/_typing/_char_codes.py +213 -0
- numpy/_typing/_dtype_like.py +114 -0
- numpy/_typing/_extended_precision.py +15 -0
- numpy/_typing/_nbit.py +19 -0
- numpy/_typing/_nbit_base.py +94 -0
- numpy/_typing/_nbit_base.pyi +40 -0
- numpy/_typing/_nested_sequence.py +79 -0
- numpy/_typing/_scalars.py +20 -0
- numpy/_typing/_shape.py +8 -0
- numpy/_typing/_ufunc.py +7 -0
- numpy/_typing/_ufunc.pyi +941 -0
- numpy/_utils/__init__.py +95 -0
- numpy/_utils/__init__.pyi +30 -0
- numpy/_utils/_convertions.py +18 -0
- numpy/_utils/_convertions.pyi +4 -0
- numpy/_utils/_inspect.py +192 -0
- numpy/_utils/_inspect.pyi +71 -0
- numpy/_utils/_pep440.py +486 -0
- numpy/_utils/_pep440.pyi +121 -0
- numpy/char/__init__.py +2 -0
- numpy/char/__init__.pyi +111 -0
- numpy/conftest.py +258 -0
- numpy/core/__init__.py +33 -0
- numpy/core/__init__.pyi +0 -0
- numpy/core/_dtype.py +10 -0
- numpy/core/_dtype.pyi +0 -0
- numpy/core/_dtype_ctypes.py +10 -0
- numpy/core/_dtype_ctypes.pyi +0 -0
- numpy/core/_internal.py +27 -0
- numpy/core/_multiarray_umath.py +57 -0
- numpy/core/_utils.py +21 -0
- numpy/core/arrayprint.py +10 -0
- numpy/core/defchararray.py +10 -0
- numpy/core/einsumfunc.py +10 -0
- numpy/core/fromnumeric.py +10 -0
- numpy/core/function_base.py +10 -0
- numpy/core/getlimits.py +10 -0
- numpy/core/multiarray.py +25 -0
- numpy/core/numeric.py +12 -0
- numpy/core/numerictypes.py +10 -0
- numpy/core/overrides.py +10 -0
- numpy/core/overrides.pyi +7 -0
- numpy/core/records.py +10 -0
- numpy/core/shape_base.py +10 -0
- numpy/core/umath.py +10 -0
- numpy/ctypeslib/__init__.py +13 -0
- numpy/ctypeslib/__init__.pyi +33 -0
- numpy/ctypeslib/_ctypeslib.py +603 -0
- numpy/ctypeslib/_ctypeslib.pyi +245 -0
- numpy/doc/ufuncs.py +138 -0
- numpy/dtypes.py +41 -0
- numpy/dtypes.pyi +631 -0
- numpy/exceptions.py +247 -0
- numpy/exceptions.pyi +27 -0
- numpy/f2py/__init__.py +86 -0
- numpy/f2py/__init__.pyi +6 -0
- numpy/f2py/__main__.py +5 -0
- numpy/f2py/__version__.py +1 -0
- numpy/f2py/__version__.pyi +1 -0
- numpy/f2py/_backends/__init__.py +9 -0
- numpy/f2py/_backends/__init__.pyi +5 -0
- numpy/f2py/_backends/_backend.py +44 -0
- numpy/f2py/_backends/_backend.pyi +46 -0
- numpy/f2py/_backends/_distutils.py +76 -0
- numpy/f2py/_backends/_distutils.pyi +13 -0
- numpy/f2py/_backends/_meson.py +231 -0
- numpy/f2py/_backends/_meson.pyi +63 -0
- numpy/f2py/_backends/meson.build.template +55 -0
- numpy/f2py/_isocbind.py +62 -0
- numpy/f2py/_isocbind.pyi +13 -0
- numpy/f2py/_src_pyf.py +247 -0
- numpy/f2py/_src_pyf.pyi +29 -0
- numpy/f2py/auxfuncs.py +1004 -0
- numpy/f2py/auxfuncs.pyi +264 -0
- numpy/f2py/capi_maps.py +811 -0
- numpy/f2py/capi_maps.pyi +33 -0
- numpy/f2py/cb_rules.py +665 -0
- numpy/f2py/cb_rules.pyi +17 -0
- numpy/f2py/cfuncs.py +1563 -0
- numpy/f2py/cfuncs.pyi +31 -0
- numpy/f2py/common_rules.py +143 -0
- numpy/f2py/common_rules.pyi +9 -0
- numpy/f2py/crackfortran.py +3725 -0
- numpy/f2py/crackfortran.pyi +258 -0
- numpy/f2py/diagnose.py +149 -0
- numpy/f2py/diagnose.pyi +1 -0
- numpy/f2py/f2py2e.py +786 -0
- numpy/f2py/f2py2e.pyi +76 -0
- numpy/f2py/f90mod_rules.py +269 -0
- numpy/f2py/f90mod_rules.pyi +16 -0
- numpy/f2py/func2subr.py +329 -0
- numpy/f2py/func2subr.pyi +7 -0
- numpy/f2py/rules.py +1629 -0
- numpy/f2py/rules.pyi +43 -0
- numpy/f2py/setup.cfg +3 -0
- numpy/f2py/src/fortranobject.c +1436 -0
- numpy/f2py/src/fortranobject.h +173 -0
- numpy/f2py/symbolic.py +1516 -0
- numpy/f2py/symbolic.pyi +221 -0
- numpy/f2py/tests/__init__.py +16 -0
- numpy/f2py/tests/src/abstract_interface/foo.f90 +34 -0
- numpy/f2py/tests/src/abstract_interface/gh18403_mod.f90 +6 -0
- numpy/f2py/tests/src/array_from_pyobj/wrapmodule.c +235 -0
- numpy/f2py/tests/src/assumed_shape/.f2py_f2cmap +1 -0
- numpy/f2py/tests/src/assumed_shape/foo_free.f90 +34 -0
- numpy/f2py/tests/src/assumed_shape/foo_mod.f90 +41 -0
- numpy/f2py/tests/src/assumed_shape/foo_use.f90 +19 -0
- numpy/f2py/tests/src/assumed_shape/precision.f90 +4 -0
- numpy/f2py/tests/src/block_docstring/foo.f +6 -0
- numpy/f2py/tests/src/callback/foo.f +62 -0
- numpy/f2py/tests/src/callback/gh17797.f90 +7 -0
- numpy/f2py/tests/src/callback/gh18335.f90 +17 -0
- numpy/f2py/tests/src/callback/gh25211.f +10 -0
- numpy/f2py/tests/src/callback/gh25211.pyf +18 -0
- numpy/f2py/tests/src/callback/gh26681.f90 +18 -0
- numpy/f2py/tests/src/cli/gh_22819.pyf +6 -0
- numpy/f2py/tests/src/cli/hi77.f +3 -0
- numpy/f2py/tests/src/cli/hiworld.f90 +3 -0
- numpy/f2py/tests/src/common/block.f +11 -0
- numpy/f2py/tests/src/common/gh19161.f90 +10 -0
- numpy/f2py/tests/src/crackfortran/accesstype.f90 +13 -0
- numpy/f2py/tests/src/crackfortran/common_with_division.f +17 -0
- numpy/f2py/tests/src/crackfortran/data_common.f +8 -0
- numpy/f2py/tests/src/crackfortran/data_multiplier.f +5 -0
- numpy/f2py/tests/src/crackfortran/data_stmts.f90 +20 -0
- numpy/f2py/tests/src/crackfortran/data_with_comments.f +8 -0
- numpy/f2py/tests/src/crackfortran/foo_deps.f90 +6 -0
- numpy/f2py/tests/src/crackfortran/gh15035.f +16 -0
- numpy/f2py/tests/src/crackfortran/gh17859.f +12 -0
- numpy/f2py/tests/src/crackfortran/gh22648.pyf +7 -0
- numpy/f2py/tests/src/crackfortran/gh23533.f +5 -0
- numpy/f2py/tests/src/crackfortran/gh23598.f90 +4 -0
- numpy/f2py/tests/src/crackfortran/gh23598Warn.f90 +11 -0
- numpy/f2py/tests/src/crackfortran/gh23879.f90 +20 -0
- numpy/f2py/tests/src/crackfortran/gh27697.f90 +12 -0
- numpy/f2py/tests/src/crackfortran/gh2848.f90 +13 -0
- numpy/f2py/tests/src/crackfortran/operators.f90 +49 -0
- numpy/f2py/tests/src/crackfortran/privatemod.f90 +11 -0
- numpy/f2py/tests/src/crackfortran/publicmod.f90 +10 -0
- numpy/f2py/tests/src/crackfortran/pubprivmod.f90 +10 -0
- numpy/f2py/tests/src/crackfortran/unicode_comment.f90 +4 -0
- numpy/f2py/tests/src/f2cmap/.f2py_f2cmap +1 -0
- numpy/f2py/tests/src/f2cmap/isoFortranEnvMap.f90 +9 -0
- numpy/f2py/tests/src/isocintrin/isoCtests.f90 +34 -0
- numpy/f2py/tests/src/kind/foo.f90 +20 -0
- numpy/f2py/tests/src/mixed/foo.f +5 -0
- numpy/f2py/tests/src/mixed/foo_fixed.f90 +8 -0
- numpy/f2py/tests/src/mixed/foo_free.f90 +8 -0
- numpy/f2py/tests/src/modules/gh25337/data.f90 +8 -0
- numpy/f2py/tests/src/modules/gh25337/use_data.f90 +6 -0
- numpy/f2py/tests/src/modules/gh26920/two_mods_with_no_public_entities.f90 +21 -0
- numpy/f2py/tests/src/modules/gh26920/two_mods_with_one_public_routine.f90 +21 -0
- numpy/f2py/tests/src/modules/module_data_docstring.f90 +12 -0
- numpy/f2py/tests/src/modules/use_modules.f90 +20 -0
- numpy/f2py/tests/src/negative_bounds/issue_20853.f90 +7 -0
- numpy/f2py/tests/src/parameter/constant_array.f90 +45 -0
- numpy/f2py/tests/src/parameter/constant_both.f90 +57 -0
- numpy/f2py/tests/src/parameter/constant_compound.f90 +15 -0
- numpy/f2py/tests/src/parameter/constant_integer.f90 +22 -0
- numpy/f2py/tests/src/parameter/constant_non_compound.f90 +23 -0
- numpy/f2py/tests/src/parameter/constant_real.f90 +23 -0
- numpy/f2py/tests/src/quoted_character/foo.f +14 -0
- numpy/f2py/tests/src/regression/AB.inc +1 -0
- numpy/f2py/tests/src/regression/assignOnlyModule.f90 +25 -0
- numpy/f2py/tests/src/regression/datonly.f90 +17 -0
- numpy/f2py/tests/src/regression/f77comments.f +26 -0
- numpy/f2py/tests/src/regression/f77fixedform.f95 +5 -0
- numpy/f2py/tests/src/regression/f90continuation.f90 +9 -0
- numpy/f2py/tests/src/regression/incfile.f90 +5 -0
- numpy/f2py/tests/src/regression/inout.f90 +9 -0
- numpy/f2py/tests/src/regression/lower_f2py_fortran.f90 +5 -0
- numpy/f2py/tests/src/regression/mod_derived_types.f90 +23 -0
- numpy/f2py/tests/src/return_character/foo77.f +45 -0
- numpy/f2py/tests/src/return_character/foo90.f90 +48 -0
- numpy/f2py/tests/src/return_complex/foo77.f +45 -0
- numpy/f2py/tests/src/return_complex/foo90.f90 +48 -0
- numpy/f2py/tests/src/return_integer/foo77.f +56 -0
- numpy/f2py/tests/src/return_integer/foo90.f90 +59 -0
- numpy/f2py/tests/src/return_logical/foo77.f +56 -0
- numpy/f2py/tests/src/return_logical/foo90.f90 +59 -0
- numpy/f2py/tests/src/return_real/foo77.f +45 -0
- numpy/f2py/tests/src/return_real/foo90.f90 +48 -0
- numpy/f2py/tests/src/routines/funcfortranname.f +5 -0
- numpy/f2py/tests/src/routines/funcfortranname.pyf +11 -0
- numpy/f2py/tests/src/routines/subrout.f +4 -0
- numpy/f2py/tests/src/routines/subrout.pyf +10 -0
- numpy/f2py/tests/src/size/foo.f90 +44 -0
- numpy/f2py/tests/src/string/char.f90 +29 -0
- numpy/f2py/tests/src/string/fixed_string.f90 +34 -0
- numpy/f2py/tests/src/string/gh24008.f +8 -0
- numpy/f2py/tests/src/string/gh24662.f90 +7 -0
- numpy/f2py/tests/src/string/gh25286.f90 +14 -0
- numpy/f2py/tests/src/string/gh25286.pyf +12 -0
- numpy/f2py/tests/src/string/gh25286_bc.pyf +12 -0
- numpy/f2py/tests/src/string/scalar_string.f90 +9 -0
- numpy/f2py/tests/src/string/string.f +12 -0
- numpy/f2py/tests/src/value_attrspec/gh21665.f90 +9 -0
- numpy/f2py/tests/test_abstract_interface.py +26 -0
- numpy/f2py/tests/test_array_from_pyobj.py +678 -0
- numpy/f2py/tests/test_assumed_shape.py +50 -0
- numpy/f2py/tests/test_block_docstring.py +20 -0
- numpy/f2py/tests/test_callback.py +263 -0
- numpy/f2py/tests/test_character.py +641 -0
- numpy/f2py/tests/test_common.py +23 -0
- numpy/f2py/tests/test_crackfortran.py +421 -0
- numpy/f2py/tests/test_data.py +71 -0
- numpy/f2py/tests/test_docs.py +64 -0
- numpy/f2py/tests/test_f2cmap.py +17 -0
- numpy/f2py/tests/test_f2py2e.py +964 -0
- numpy/f2py/tests/test_isoc.py +56 -0
- numpy/f2py/tests/test_kind.py +53 -0
- numpy/f2py/tests/test_mixed.py +35 -0
- numpy/f2py/tests/test_modules.py +83 -0
- numpy/f2py/tests/test_parameter.py +129 -0
- numpy/f2py/tests/test_pyf_src.py +43 -0
- numpy/f2py/tests/test_quoted_character.py +18 -0
- numpy/f2py/tests/test_regression.py +187 -0
- numpy/f2py/tests/test_return_character.py +48 -0
- numpy/f2py/tests/test_return_complex.py +67 -0
- numpy/f2py/tests/test_return_integer.py +55 -0
- numpy/f2py/tests/test_return_logical.py +65 -0
- numpy/f2py/tests/test_return_real.py +109 -0
- numpy/f2py/tests/test_routines.py +29 -0
- numpy/f2py/tests/test_semicolon_split.py +75 -0
- numpy/f2py/tests/test_size.py +45 -0
- numpy/f2py/tests/test_string.py +100 -0
- numpy/f2py/tests/test_symbolic.py +495 -0
- numpy/f2py/tests/test_value_attrspec.py +15 -0
- numpy/f2py/tests/util.py +442 -0
- numpy/f2py/use_rules.py +99 -0
- numpy/f2py/use_rules.pyi +9 -0
- numpy/fft/__init__.py +215 -0
- numpy/fft/__init__.pyi +43 -0
- numpy/fft/_helper.py +235 -0
- numpy/fft/_helper.pyi +45 -0
- numpy/fft/_pocketfft.py +1693 -0
- numpy/fft/_pocketfft.pyi +138 -0
- numpy/fft/_pocketfft_umath.cpython-313-darwin.so +0 -0
- numpy/fft/helper.py +17 -0
- numpy/fft/helper.pyi +22 -0
- numpy/fft/tests/__init__.py +0 -0
- numpy/fft/tests/test_helper.py +167 -0
- numpy/fft/tests/test_pocketfft.py +589 -0
- numpy/lib/__init__.py +97 -0
- numpy/lib/__init__.pyi +44 -0
- numpy/lib/_array_utils_impl.py +62 -0
- numpy/lib/_array_utils_impl.pyi +26 -0
- numpy/lib/_arraypad_impl.py +890 -0
- numpy/lib/_arraypad_impl.pyi +89 -0
- numpy/lib/_arraysetops_impl.py +1260 -0
- numpy/lib/_arraysetops_impl.pyi +468 -0
- numpy/lib/_arrayterator_impl.py +224 -0
- numpy/lib/_arrayterator_impl.pyi +46 -0
- numpy/lib/_datasource.py +700 -0
- numpy/lib/_datasource.pyi +31 -0
- numpy/lib/_format_impl.py +1036 -0
- numpy/lib/_format_impl.pyi +26 -0
- numpy/lib/_function_base_impl.py +5844 -0
- numpy/lib/_function_base_impl.pyi +1164 -0
- numpy/lib/_histograms_impl.py +1085 -0
- numpy/lib/_histograms_impl.pyi +50 -0
- numpy/lib/_index_tricks_impl.py +1067 -0
- numpy/lib/_index_tricks_impl.pyi +208 -0
- numpy/lib/_iotools.py +900 -0
- numpy/lib/_iotools.pyi +114 -0
- numpy/lib/_nanfunctions_impl.py +2024 -0
- numpy/lib/_nanfunctions_impl.pyi +52 -0
- numpy/lib/_npyio_impl.py +2596 -0
- numpy/lib/_npyio_impl.pyi +301 -0
- numpy/lib/_polynomial_impl.py +1465 -0
- numpy/lib/_polynomial_impl.pyi +318 -0
- numpy/lib/_scimath_impl.py +642 -0
- numpy/lib/_scimath_impl.pyi +93 -0
- numpy/lib/_shape_base_impl.py +1301 -0
- numpy/lib/_shape_base_impl.pyi +235 -0
- numpy/lib/_stride_tricks_impl.py +549 -0
- numpy/lib/_stride_tricks_impl.pyi +74 -0
- numpy/lib/_twodim_base_impl.py +1201 -0
- numpy/lib/_twodim_base_impl.pyi +438 -0
- numpy/lib/_type_check_impl.py +699 -0
- numpy/lib/_type_check_impl.pyi +350 -0
- numpy/lib/_ufunclike_impl.py +207 -0
- numpy/lib/_ufunclike_impl.pyi +67 -0
- numpy/lib/_user_array_impl.py +299 -0
- numpy/lib/_user_array_impl.pyi +225 -0
- numpy/lib/_utils_impl.py +784 -0
- numpy/lib/_utils_impl.pyi +10 -0
- numpy/lib/_version.py +154 -0
- numpy/lib/_version.pyi +17 -0
- numpy/lib/array_utils.py +7 -0
- numpy/lib/array_utils.pyi +12 -0
- numpy/lib/format.py +24 -0
- numpy/lib/format.pyi +66 -0
- numpy/lib/introspect.py +95 -0
- numpy/lib/introspect.pyi +3 -0
- numpy/lib/mixins.py +180 -0
- numpy/lib/mixins.pyi +77 -0
- numpy/lib/npyio.py +1 -0
- numpy/lib/npyio.pyi +9 -0
- numpy/lib/recfunctions.py +1681 -0
- numpy/lib/recfunctions.pyi +435 -0
- numpy/lib/scimath.py +13 -0
- numpy/lib/scimath.pyi +30 -0
- numpy/lib/stride_tricks.py +1 -0
- numpy/lib/stride_tricks.pyi +6 -0
- numpy/lib/tests/__init__.py +0 -0
- numpy/lib/tests/data/py2-np0-objarr.npy +0 -0
- numpy/lib/tests/data/py2-objarr.npy +0 -0
- numpy/lib/tests/data/py2-objarr.npz +0 -0
- numpy/lib/tests/data/py3-objarr.npy +0 -0
- numpy/lib/tests/data/py3-objarr.npz +0 -0
- numpy/lib/tests/data/python3.npy +0 -0
- numpy/lib/tests/data/win64python2.npy +0 -0
- numpy/lib/tests/test__datasource.py +352 -0
- numpy/lib/tests/test__iotools.py +360 -0
- numpy/lib/tests/test__version.py +64 -0
- numpy/lib/tests/test_array_utils.py +32 -0
- numpy/lib/tests/test_arraypad.py +1415 -0
- numpy/lib/tests/test_arraysetops.py +1074 -0
- numpy/lib/tests/test_arrayterator.py +46 -0
- numpy/lib/tests/test_format.py +1054 -0
- numpy/lib/tests/test_function_base.py +4573 -0
- numpy/lib/tests/test_histograms.py +855 -0
- numpy/lib/tests/test_index_tricks.py +573 -0
- numpy/lib/tests/test_io.py +2848 -0
- numpy/lib/tests/test_loadtxt.py +1101 -0
- numpy/lib/tests/test_mixins.py +215 -0
- numpy/lib/tests/test_nanfunctions.py +1438 -0
- numpy/lib/tests/test_packbits.py +376 -0
- numpy/lib/tests/test_polynomial.py +320 -0
- numpy/lib/tests/test_recfunctions.py +1052 -0
- numpy/lib/tests/test_regression.py +231 -0
- numpy/lib/tests/test_shape_base.py +813 -0
- numpy/lib/tests/test_stride_tricks.py +656 -0
- numpy/lib/tests/test_twodim_base.py +559 -0
- numpy/lib/tests/test_type_check.py +473 -0
- numpy/lib/tests/test_ufunclike.py +97 -0
- numpy/lib/tests/test_utils.py +80 -0
- numpy/lib/user_array.py +1 -0
- numpy/lib/user_array.pyi +1 -0
- numpy/linalg/__init__.py +98 -0
- numpy/linalg/__init__.pyi +73 -0
- numpy/linalg/_linalg.py +3682 -0
- numpy/linalg/_linalg.pyi +475 -0
- numpy/linalg/_umath_linalg.cpython-313-darwin.so +0 -0
- numpy/linalg/_umath_linalg.pyi +61 -0
- numpy/linalg/lapack_lite.cpython-313-darwin.so +0 -0
- numpy/linalg/lapack_lite.pyi +141 -0
- numpy/linalg/linalg.py +17 -0
- numpy/linalg/linalg.pyi +69 -0
- numpy/linalg/tests/__init__.py +0 -0
- numpy/linalg/tests/test_deprecations.py +20 -0
- numpy/linalg/tests/test_linalg.py +2443 -0
- numpy/linalg/tests/test_regression.py +181 -0
- numpy/ma/API_CHANGES.txt +135 -0
- numpy/ma/LICENSE +24 -0
- numpy/ma/README.rst +236 -0
- numpy/ma/__init__.py +53 -0
- numpy/ma/__init__.pyi +458 -0
- numpy/ma/core.py +8933 -0
- numpy/ma/core.pyi +1462 -0
- numpy/ma/extras.py +2344 -0
- numpy/ma/extras.pyi +138 -0
- numpy/ma/mrecords.py +773 -0
- numpy/ma/mrecords.pyi +96 -0
- numpy/ma/tests/__init__.py +0 -0
- numpy/ma/tests/test_arrayobject.py +40 -0
- numpy/ma/tests/test_core.py +5886 -0
- numpy/ma/tests/test_deprecations.py +87 -0
- numpy/ma/tests/test_extras.py +1998 -0
- numpy/ma/tests/test_mrecords.py +497 -0
- numpy/ma/tests/test_old_ma.py +942 -0
- numpy/ma/tests/test_regression.py +100 -0
- numpy/ma/tests/test_subclassing.py +469 -0
- numpy/ma/testutils.py +294 -0
- numpy/matlib.py +380 -0
- numpy/matlib.pyi +582 -0
- numpy/matrixlib/__init__.py +12 -0
- numpy/matrixlib/__init__.pyi +5 -0
- numpy/matrixlib/defmatrix.py +1119 -0
- numpy/matrixlib/defmatrix.pyi +17 -0
- numpy/matrixlib/tests/__init__.py +0 -0
- numpy/matrixlib/tests/test_defmatrix.py +455 -0
- numpy/matrixlib/tests/test_interaction.py +360 -0
- numpy/matrixlib/tests/test_masked_matrix.py +240 -0
- numpy/matrixlib/tests/test_matrix_linalg.py +105 -0
- numpy/matrixlib/tests/test_multiarray.py +17 -0
- numpy/matrixlib/tests/test_numeric.py +18 -0
- numpy/matrixlib/tests/test_regression.py +31 -0
- numpy/polynomial/__init__.py +187 -0
- numpy/polynomial/__init__.pyi +25 -0
- numpy/polynomial/_polybase.py +1191 -0
- numpy/polynomial/_polybase.pyi +285 -0
- numpy/polynomial/_polytypes.pyi +892 -0
- numpy/polynomial/chebyshev.py +2003 -0
- numpy/polynomial/chebyshev.pyi +181 -0
- numpy/polynomial/hermite.py +1740 -0
- numpy/polynomial/hermite.pyi +107 -0
- numpy/polynomial/hermite_e.py +1642 -0
- numpy/polynomial/hermite_e.pyi +107 -0
- numpy/polynomial/laguerre.py +1675 -0
- numpy/polynomial/laguerre.pyi +100 -0
- numpy/polynomial/legendre.py +1605 -0
- numpy/polynomial/legendre.pyi +100 -0
- numpy/polynomial/polynomial.py +1616 -0
- numpy/polynomial/polynomial.pyi +89 -0
- numpy/polynomial/polyutils.py +759 -0
- numpy/polynomial/polyutils.pyi +423 -0
- numpy/polynomial/tests/__init__.py +0 -0
- numpy/polynomial/tests/test_chebyshev.py +623 -0
- numpy/polynomial/tests/test_classes.py +618 -0
- numpy/polynomial/tests/test_hermite.py +558 -0
- numpy/polynomial/tests/test_hermite_e.py +559 -0
- numpy/polynomial/tests/test_laguerre.py +540 -0
- numpy/polynomial/tests/test_legendre.py +571 -0
- numpy/polynomial/tests/test_polynomial.py +669 -0
- numpy/polynomial/tests/test_polyutils.py +128 -0
- numpy/polynomial/tests/test_printing.py +555 -0
- numpy/polynomial/tests/test_symbol.py +217 -0
- numpy/py.typed +0 -0
- numpy/random/LICENSE.md +71 -0
- numpy/random/__init__.pxd +14 -0
- numpy/random/__init__.py +213 -0
- numpy/random/__init__.pyi +124 -0
- numpy/random/_bounded_integers.cpython-313-darwin.so +0 -0
- numpy/random/_bounded_integers.pxd +29 -0
- numpy/random/_bounded_integers.pyi +1 -0
- numpy/random/_common.cpython-313-darwin.so +0 -0
- numpy/random/_common.pxd +107 -0
- numpy/random/_common.pyi +16 -0
- numpy/random/_examples/cffi/extending.py +44 -0
- numpy/random/_examples/cffi/parse.py +53 -0
- numpy/random/_examples/cython/extending.pyx +77 -0
- numpy/random/_examples/cython/extending_distributions.pyx +118 -0
- numpy/random/_examples/cython/meson.build +53 -0
- numpy/random/_examples/numba/extending.py +86 -0
- numpy/random/_examples/numba/extending_distributions.py +67 -0
- numpy/random/_generator.cpython-313-darwin.so +0 -0
- numpy/random/_generator.pyi +861 -0
- numpy/random/_mt19937.cpython-313-darwin.so +0 -0
- numpy/random/_mt19937.pyi +25 -0
- numpy/random/_pcg64.cpython-313-darwin.so +0 -0
- numpy/random/_pcg64.pyi +44 -0
- numpy/random/_philox.cpython-313-darwin.so +0 -0
- numpy/random/_philox.pyi +39 -0
- numpy/random/_pickle.py +88 -0
- numpy/random/_pickle.pyi +43 -0
- numpy/random/_sfc64.cpython-313-darwin.so +0 -0
- numpy/random/_sfc64.pyi +28 -0
- numpy/random/bit_generator.cpython-313-darwin.so +0 -0
- numpy/random/bit_generator.pxd +35 -0
- numpy/random/bit_generator.pyi +124 -0
- numpy/random/c_distributions.pxd +119 -0
- numpy/random/lib/libnpyrandom.a +0 -0
- numpy/random/mtrand.cpython-313-darwin.so +0 -0
- numpy/random/mtrand.pyi +703 -0
- numpy/random/tests/__init__.py +0 -0
- numpy/random/tests/data/__init__.py +0 -0
- numpy/random/tests/data/generator_pcg64_np121.pkl.gz +0 -0
- numpy/random/tests/data/generator_pcg64_np126.pkl.gz +0 -0
- numpy/random/tests/data/mt19937-testset-1.csv +1001 -0
- numpy/random/tests/data/mt19937-testset-2.csv +1001 -0
- numpy/random/tests/data/pcg64-testset-1.csv +1001 -0
- numpy/random/tests/data/pcg64-testset-2.csv +1001 -0
- numpy/random/tests/data/pcg64dxsm-testset-1.csv +1001 -0
- numpy/random/tests/data/pcg64dxsm-testset-2.csv +1001 -0
- numpy/random/tests/data/philox-testset-1.csv +1001 -0
- numpy/random/tests/data/philox-testset-2.csv +1001 -0
- numpy/random/tests/data/sfc64-testset-1.csv +1001 -0
- numpy/random/tests/data/sfc64-testset-2.csv +1001 -0
- numpy/random/tests/data/sfc64_np126.pkl.gz +0 -0
- numpy/random/tests/test_direct.py +592 -0
- numpy/random/tests/test_extending.py +127 -0
- numpy/random/tests/test_generator_mt19937.py +2809 -0
- numpy/random/tests/test_generator_mt19937_regressions.py +207 -0
- numpy/random/tests/test_random.py +1757 -0
- numpy/random/tests/test_randomstate.py +2130 -0
- numpy/random/tests/test_randomstate_regression.py +217 -0
- numpy/random/tests/test_regression.py +152 -0
- numpy/random/tests/test_seed_sequence.py +79 -0
- numpy/random/tests/test_smoke.py +819 -0
- numpy/rec/__init__.py +2 -0
- numpy/rec/__init__.pyi +23 -0
- numpy/strings/__init__.py +2 -0
- numpy/strings/__init__.pyi +97 -0
- numpy/testing/__init__.py +22 -0
- numpy/testing/__init__.pyi +102 -0
- numpy/testing/_private/__init__.py +0 -0
- numpy/testing/_private/__init__.pyi +0 -0
- numpy/testing/_private/extbuild.py +250 -0
- numpy/testing/_private/extbuild.pyi +25 -0
- numpy/testing/_private/utils.py +2752 -0
- numpy/testing/_private/utils.pyi +499 -0
- numpy/testing/overrides.py +84 -0
- numpy/testing/overrides.pyi +11 -0
- numpy/testing/print_coercion_tables.py +207 -0
- numpy/testing/print_coercion_tables.pyi +27 -0
- numpy/testing/tests/__init__.py +0 -0
- numpy/testing/tests/test_utils.py +1917 -0
- numpy/tests/__init__.py +0 -0
- numpy/tests/test__all__.py +10 -0
- numpy/tests/test_configtool.py +48 -0
- numpy/tests/test_ctypeslib.py +377 -0
- numpy/tests/test_lazyloading.py +38 -0
- numpy/tests/test_matlib.py +59 -0
- numpy/tests/test_numpy_config.py +46 -0
- numpy/tests/test_numpy_version.py +54 -0
- numpy/tests/test_public_api.py +806 -0
- numpy/tests/test_reloading.py +74 -0
- numpy/tests/test_scripts.py +49 -0
- numpy/tests/test_warnings.py +78 -0
- numpy/typing/__init__.py +201 -0
- numpy/typing/mypy_plugin.py +195 -0
- numpy/typing/tests/__init__.py +0 -0
- numpy/typing/tests/data/fail/arithmetic.pyi +126 -0
- numpy/typing/tests/data/fail/array_constructors.pyi +34 -0
- numpy/typing/tests/data/fail/array_like.pyi +15 -0
- numpy/typing/tests/data/fail/array_pad.pyi +6 -0
- numpy/typing/tests/data/fail/arrayprint.pyi +16 -0
- numpy/typing/tests/data/fail/arrayterator.pyi +14 -0
- numpy/typing/tests/data/fail/bitwise_ops.pyi +17 -0
- numpy/typing/tests/data/fail/char.pyi +65 -0
- numpy/typing/tests/data/fail/chararray.pyi +62 -0
- numpy/typing/tests/data/fail/comparisons.pyi +27 -0
- numpy/typing/tests/data/fail/constants.pyi +3 -0
- numpy/typing/tests/data/fail/datasource.pyi +15 -0
- numpy/typing/tests/data/fail/dtype.pyi +17 -0
- numpy/typing/tests/data/fail/einsumfunc.pyi +12 -0
- numpy/typing/tests/data/fail/flatiter.pyi +20 -0
- numpy/typing/tests/data/fail/fromnumeric.pyi +148 -0
- numpy/typing/tests/data/fail/histograms.pyi +12 -0
- numpy/typing/tests/data/fail/index_tricks.pyi +14 -0
- numpy/typing/tests/data/fail/lib_function_base.pyi +62 -0
- numpy/typing/tests/data/fail/lib_polynomial.pyi +29 -0
- numpy/typing/tests/data/fail/lib_utils.pyi +3 -0
- numpy/typing/tests/data/fail/lib_version.pyi +6 -0
- numpy/typing/tests/data/fail/linalg.pyi +48 -0
- numpy/typing/tests/data/fail/ma.pyi +143 -0
- numpy/typing/tests/data/fail/memmap.pyi +5 -0
- numpy/typing/tests/data/fail/modules.pyi +17 -0
- numpy/typing/tests/data/fail/multiarray.pyi +52 -0
- numpy/typing/tests/data/fail/ndarray.pyi +11 -0
- numpy/typing/tests/data/fail/ndarray_misc.pyi +36 -0
- numpy/typing/tests/data/fail/nditer.pyi +8 -0
- numpy/typing/tests/data/fail/nested_sequence.pyi +16 -0
- numpy/typing/tests/data/fail/npyio.pyi +24 -0
- numpy/typing/tests/data/fail/numerictypes.pyi +5 -0
- numpy/typing/tests/data/fail/random.pyi +62 -0
- numpy/typing/tests/data/fail/rec.pyi +17 -0
- numpy/typing/tests/data/fail/scalars.pyi +87 -0
- numpy/typing/tests/data/fail/shape.pyi +6 -0
- numpy/typing/tests/data/fail/shape_base.pyi +8 -0
- numpy/typing/tests/data/fail/stride_tricks.pyi +9 -0
- numpy/typing/tests/data/fail/strings.pyi +52 -0
- numpy/typing/tests/data/fail/testing.pyi +28 -0
- numpy/typing/tests/data/fail/twodim_base.pyi +32 -0
- numpy/typing/tests/data/fail/type_check.pyi +13 -0
- numpy/typing/tests/data/fail/ufunc_config.pyi +21 -0
- numpy/typing/tests/data/fail/ufunclike.pyi +21 -0
- numpy/typing/tests/data/fail/ufuncs.pyi +17 -0
- numpy/typing/tests/data/fail/warnings_and_errors.pyi +5 -0
- numpy/typing/tests/data/misc/extended_precision.pyi +9 -0
- numpy/typing/tests/data/mypy.ini +9 -0
- numpy/typing/tests/data/pass/arithmetic.py +612 -0
- numpy/typing/tests/data/pass/array_constructors.py +137 -0
- numpy/typing/tests/data/pass/array_like.py +43 -0
- numpy/typing/tests/data/pass/arrayprint.py +37 -0
- numpy/typing/tests/data/pass/arrayterator.py +27 -0
- numpy/typing/tests/data/pass/bitwise_ops.py +131 -0
- numpy/typing/tests/data/pass/comparisons.py +315 -0
- numpy/typing/tests/data/pass/dtype.py +57 -0
- numpy/typing/tests/data/pass/einsumfunc.py +36 -0
- numpy/typing/tests/data/pass/flatiter.py +19 -0
- numpy/typing/tests/data/pass/fromnumeric.py +272 -0
- numpy/typing/tests/data/pass/index_tricks.py +60 -0
- numpy/typing/tests/data/pass/lib_user_array.py +22 -0
- numpy/typing/tests/data/pass/lib_utils.py +19 -0
- numpy/typing/tests/data/pass/lib_version.py +18 -0
- numpy/typing/tests/data/pass/literal.py +51 -0
- numpy/typing/tests/data/pass/ma.py +174 -0
- numpy/typing/tests/data/pass/mod.py +149 -0
- numpy/typing/tests/data/pass/modules.py +45 -0
- numpy/typing/tests/data/pass/multiarray.py +76 -0
- numpy/typing/tests/data/pass/ndarray_conversion.py +87 -0
- numpy/typing/tests/data/pass/ndarray_misc.py +203 -0
- numpy/typing/tests/data/pass/ndarray_shape_manipulation.py +47 -0
- numpy/typing/tests/data/pass/nditer.py +4 -0
- numpy/typing/tests/data/pass/numeric.py +95 -0
- numpy/typing/tests/data/pass/numerictypes.py +17 -0
- numpy/typing/tests/data/pass/random.py +1497 -0
- numpy/typing/tests/data/pass/recfunctions.py +161 -0
- numpy/typing/tests/data/pass/scalars.py +248 -0
- numpy/typing/tests/data/pass/shape.py +19 -0
- numpy/typing/tests/data/pass/simple.py +168 -0
- numpy/typing/tests/data/pass/simple_py3.py +6 -0
- numpy/typing/tests/data/pass/ufunc_config.py +64 -0
- numpy/typing/tests/data/pass/ufunclike.py +47 -0
- numpy/typing/tests/data/pass/ufuncs.py +16 -0
- numpy/typing/tests/data/pass/warnings_and_errors.py +6 -0
- numpy/typing/tests/data/reveal/arithmetic.pyi +720 -0
- numpy/typing/tests/data/reveal/array_api_info.pyi +70 -0
- numpy/typing/tests/data/reveal/array_constructors.pyi +249 -0
- numpy/typing/tests/data/reveal/arraypad.pyi +22 -0
- numpy/typing/tests/data/reveal/arrayprint.pyi +25 -0
- numpy/typing/tests/data/reveal/arraysetops.pyi +74 -0
- numpy/typing/tests/data/reveal/arrayterator.pyi +27 -0
- numpy/typing/tests/data/reveal/bitwise_ops.pyi +167 -0
- numpy/typing/tests/data/reveal/char.pyi +224 -0
- numpy/typing/tests/data/reveal/chararray.pyi +137 -0
- numpy/typing/tests/data/reveal/comparisons.pyi +264 -0
- numpy/typing/tests/data/reveal/constants.pyi +14 -0
- numpy/typing/tests/data/reveal/ctypeslib.pyi +81 -0
- numpy/typing/tests/data/reveal/datasource.pyi +23 -0
- numpy/typing/tests/data/reveal/dtype.pyi +136 -0
- numpy/typing/tests/data/reveal/einsumfunc.pyi +39 -0
- numpy/typing/tests/data/reveal/emath.pyi +54 -0
- numpy/typing/tests/data/reveal/fft.pyi +37 -0
- numpy/typing/tests/data/reveal/flatiter.pyi +47 -0
- numpy/typing/tests/data/reveal/fromnumeric.pyi +347 -0
- numpy/typing/tests/data/reveal/getlimits.pyi +51 -0
- numpy/typing/tests/data/reveal/histograms.pyi +25 -0
- numpy/typing/tests/data/reveal/index_tricks.pyi +70 -0
- numpy/typing/tests/data/reveal/lib_function_base.pyi +213 -0
- numpy/typing/tests/data/reveal/lib_polynomial.pyi +144 -0
- numpy/typing/tests/data/reveal/lib_utils.pyi +17 -0
- numpy/typing/tests/data/reveal/lib_version.pyi +20 -0
- numpy/typing/tests/data/reveal/linalg.pyi +132 -0
- numpy/typing/tests/data/reveal/ma.pyi +369 -0
- numpy/typing/tests/data/reveal/matrix.pyi +73 -0
- numpy/typing/tests/data/reveal/memmap.pyi +19 -0
- numpy/typing/tests/data/reveal/mod.pyi +179 -0
- numpy/typing/tests/data/reveal/modules.pyi +51 -0
- numpy/typing/tests/data/reveal/multiarray.pyi +194 -0
- numpy/typing/tests/data/reveal/nbit_base_example.pyi +21 -0
- numpy/typing/tests/data/reveal/ndarray_assignability.pyi +77 -0
- numpy/typing/tests/data/reveal/ndarray_conversion.pyi +85 -0
- numpy/typing/tests/data/reveal/ndarray_misc.pyi +247 -0
- numpy/typing/tests/data/reveal/ndarray_shape_manipulation.pyi +39 -0
- numpy/typing/tests/data/reveal/nditer.pyi +49 -0
- numpy/typing/tests/data/reveal/nested_sequence.pyi +25 -0
- numpy/typing/tests/data/reveal/npyio.pyi +83 -0
- numpy/typing/tests/data/reveal/numeric.pyi +134 -0
- numpy/typing/tests/data/reveal/numerictypes.pyi +16 -0
- numpy/typing/tests/data/reveal/polynomial_polybase.pyi +220 -0
- numpy/typing/tests/data/reveal/polynomial_polyutils.pyi +219 -0
- numpy/typing/tests/data/reveal/polynomial_series.pyi +138 -0
- numpy/typing/tests/data/reveal/random.pyi +1546 -0
- numpy/typing/tests/data/reveal/rec.pyi +171 -0
- numpy/typing/tests/data/reveal/scalars.pyi +191 -0
- numpy/typing/tests/data/reveal/shape.pyi +13 -0
- numpy/typing/tests/data/reveal/shape_base.pyi +52 -0
- numpy/typing/tests/data/reveal/stride_tricks.pyi +27 -0
- numpy/typing/tests/data/reveal/strings.pyi +196 -0
- numpy/typing/tests/data/reveal/testing.pyi +198 -0
- numpy/typing/tests/data/reveal/twodim_base.pyi +145 -0
- numpy/typing/tests/data/reveal/type_check.pyi +67 -0
- numpy/typing/tests/data/reveal/ufunc_config.pyi +30 -0
- numpy/typing/tests/data/reveal/ufunclike.pyi +31 -0
- numpy/typing/tests/data/reveal/ufuncs.pyi +123 -0
- numpy/typing/tests/data/reveal/warnings_and_errors.pyi +11 -0
- numpy/typing/tests/test_isfile.py +32 -0
- numpy/typing/tests/test_runtime.py +102 -0
- numpy/typing/tests/test_typing.py +205 -0
- numpy/version.py +11 -0
- numpy/version.pyi +18 -0
- numpy-2.3.5.dist-info/LICENSE.txt +971 -0
- numpy-2.3.5.dist-info/METADATA +1093 -0
- numpy-2.3.5.dist-info/RECORD +897 -0
- numpy-2.3.5.dist-info/WHEEL +6 -0
- numpy-2.3.5.dist-info/entry_points.txt +13 -0
|
@@ -0,0 +1,1429 @@
|
|
|
1
|
+
dtype,input,output,ulperrortol
|
|
2
|
+
np.float32,0x80606724,0x80606724,3
|
|
3
|
+
np.float32,0xbf16790f,0xbee38e14,3
|
|
4
|
+
np.float32,0xbf1778a1,0xbee4a97f,3
|
|
5
|
+
np.float32,0x7d4fc610,0x7f800000,3
|
|
6
|
+
np.float32,0xbec30a20,0xbea230d5,3
|
|
7
|
+
np.float32,0x3eae8a36,0x3ecffac5,3
|
|
8
|
+
np.float32,0xbf1f08f1,0xbeece93c,3
|
|
9
|
+
np.float32,0x80374376,0x80374376,3
|
|
10
|
+
np.float32,0x3f2e04ca,0x3f793115,3
|
|
11
|
+
np.float32,0x7e2c7e36,0x7f800000,3
|
|
12
|
+
np.float32,0xbf686cae,0xbf18bcf0,3
|
|
13
|
+
np.float32,0xbf5518cd,0xbf10a3da,3
|
|
14
|
+
np.float32,0x807e233c,0x807e233c,3
|
|
15
|
+
np.float32,0x7f4edd54,0x7f800000,3
|
|
16
|
+
np.float32,0x7ed70088,0x7f800000,3
|
|
17
|
+
np.float32,0x801675da,0x801675da,3
|
|
18
|
+
np.float32,0x806735d5,0x806735d5,3
|
|
19
|
+
np.float32,0xfe635fec,0xbf800000,3
|
|
20
|
+
np.float32,0xfed88a0a,0xbf800000,3
|
|
21
|
+
np.float32,0xff52c052,0xbf800000,3
|
|
22
|
+
np.float32,0x7fc00000,0x7fc00000,3
|
|
23
|
+
np.float32,0xff4f65f9,0xbf800000,3
|
|
24
|
+
np.float32,0xfe0f6c20,0xbf800000,3
|
|
25
|
+
np.float32,0x80322b30,0x80322b30,3
|
|
26
|
+
np.float32,0xfb757000,0xbf800000,3
|
|
27
|
+
np.float32,0x3c81e0,0x3c81e0,3
|
|
28
|
+
np.float32,0x79d56a,0x79d56a,3
|
|
29
|
+
np.float32,0x8029d7af,0x8029d7af,3
|
|
30
|
+
np.float32,0x8058a593,0x8058a593,3
|
|
31
|
+
np.float32,0x3f3a13c7,0x3f88c75c,3
|
|
32
|
+
np.float32,0x2a6b05,0x2a6b05,3
|
|
33
|
+
np.float32,0xbd64c960,0xbd5e83ae,3
|
|
34
|
+
np.float32,0x80471052,0x80471052,3
|
|
35
|
+
np.float32,0xbe5dd950,0xbe47766c,3
|
|
36
|
+
np.float32,0xfd8f88f0,0xbf800000,3
|
|
37
|
+
np.float32,0x75a4b7,0x75a4b7,3
|
|
38
|
+
np.float32,0x3f726f2e,0x3fc9fb7d,3
|
|
39
|
+
np.float32,0x3ed6795c,0x3f053115,3
|
|
40
|
+
np.float32,0x17d7f5,0x17d7f5,3
|
|
41
|
+
np.float32,0xbf4cf19b,0xbf0d094f,3
|
|
42
|
+
np.float32,0x3e0ec532,0x3e1933c6,3
|
|
43
|
+
np.float32,0xff084016,0xbf800000,3
|
|
44
|
+
np.float32,0x800829aa,0x800829aa,3
|
|
45
|
+
np.float32,0x806d7302,0x806d7302,3
|
|
46
|
+
np.float32,0x7f59d9da,0x7f800000,3
|
|
47
|
+
np.float32,0x15f8b9,0x15f8b9,3
|
|
48
|
+
np.float32,0x803befb3,0x803befb3,3
|
|
49
|
+
np.float32,0x525043,0x525043,3
|
|
50
|
+
np.float32,0x51a647,0x51a647,3
|
|
51
|
+
np.float32,0xbf1cfce4,0xbeeab3d9,3
|
|
52
|
+
np.float32,0x3f1f27a4,0x3f5cb1d2,3
|
|
53
|
+
np.float32,0xbebc3a04,0xbe9d8142,3
|
|
54
|
+
np.float32,0xbeea548c,0xbebc07e5,3
|
|
55
|
+
np.float32,0x3f47401c,0x3f96c2a3,3
|
|
56
|
+
np.float32,0x806b1ea3,0x806b1ea3,3
|
|
57
|
+
np.float32,0x3ea56bb8,0x3ec3450c,3
|
|
58
|
+
np.float32,0x3f7b4963,0x3fd597b5,3
|
|
59
|
+
np.float32,0x7f051fa0,0x7f800000,3
|
|
60
|
+
np.float32,0x1d411c,0x1d411c,3
|
|
61
|
+
np.float32,0xff0b6a35,0xbf800000,3
|
|
62
|
+
np.float32,0xbead63c0,0xbe9314f7,3
|
|
63
|
+
np.float32,0x3738be,0x3738be,3
|
|
64
|
+
np.float32,0x3f138cc8,0x3f479155,3
|
|
65
|
+
np.float32,0x800a539f,0x800a539f,3
|
|
66
|
+
np.float32,0x801b0ebd,0x801b0ebd,3
|
|
67
|
+
np.float32,0x318fcd,0x318fcd,3
|
|
68
|
+
np.float32,0x3ed67556,0x3f052e06,3
|
|
69
|
+
np.float32,0x702886,0x702886,3
|
|
70
|
+
np.float32,0x80000001,0x80000001,3
|
|
71
|
+
np.float32,0x70a174,0x70a174,3
|
|
72
|
+
np.float32,0x4f9c66,0x4f9c66,3
|
|
73
|
+
np.float32,0x3e3e1927,0x3e50e351,3
|
|
74
|
+
np.float32,0x7eac9a4d,0x7f800000,3
|
|
75
|
+
np.float32,0x4b7407,0x4b7407,3
|
|
76
|
+
np.float32,0x7f5bd2fd,0x7f800000,3
|
|
77
|
+
np.float32,0x3eaafc58,0x3ecaffbd,3
|
|
78
|
+
np.float32,0xbc989360,0xbc9729e2,3
|
|
79
|
+
np.float32,0x3f470e5c,0x3f968c7b,3
|
|
80
|
+
np.float32,0x4c5672,0x4c5672,3
|
|
81
|
+
np.float32,0xff2b2ee2,0xbf800000,3
|
|
82
|
+
np.float32,0xbf28a104,0xbef7079b,3
|
|
83
|
+
np.float32,0x2c6175,0x2c6175,3
|
|
84
|
+
np.float32,0x3d7e4fb0,0x3d832f9f,3
|
|
85
|
+
np.float32,0x763276,0x763276,3
|
|
86
|
+
np.float32,0x3cf364,0x3cf364,3
|
|
87
|
+
np.float32,0xbf7ace75,0xbf1fe48c,3
|
|
88
|
+
np.float32,0xff19e858,0xbf800000,3
|
|
89
|
+
np.float32,0x80504c70,0x80504c70,3
|
|
90
|
+
np.float32,0xff390210,0xbf800000,3
|
|
91
|
+
np.float32,0x8046a743,0x8046a743,3
|
|
92
|
+
np.float32,0x80000000,0x80000000,3
|
|
93
|
+
np.float32,0x806c51da,0x806c51da,3
|
|
94
|
+
np.float32,0x806ab38f,0x806ab38f,3
|
|
95
|
+
np.float32,0x3f3de863,0x3f8cc538,3
|
|
96
|
+
np.float32,0x7f6d45bb,0x7f800000,3
|
|
97
|
+
np.float32,0xfd16ec60,0xbf800000,3
|
|
98
|
+
np.float32,0x80513cba,0x80513cba,3
|
|
99
|
+
np.float32,0xbf68996b,0xbf18cefa,3
|
|
100
|
+
np.float32,0xfe039f2c,0xbf800000,3
|
|
101
|
+
np.float32,0x3f013207,0x3f280c55,3
|
|
102
|
+
np.float32,0x7ef4bc07,0x7f800000,3
|
|
103
|
+
np.float32,0xbe8b65ac,0xbe741069,3
|
|
104
|
+
np.float32,0xbf7a8186,0xbf1fc7a6,3
|
|
105
|
+
np.float32,0x802532e5,0x802532e5,3
|
|
106
|
+
np.float32,0x32c7df,0x32c7df,3
|
|
107
|
+
np.float32,0x3ce4dceb,0x3ce81701,3
|
|
108
|
+
np.float32,0xfe801118,0xbf800000,3
|
|
109
|
+
np.float32,0x3d905f20,0x3d9594fb,3
|
|
110
|
+
np.float32,0xbe11ed28,0xbe080168,3
|
|
111
|
+
np.float32,0x59e773,0x59e773,3
|
|
112
|
+
np.float32,0x3e9a2547,0x3eb3dd57,3
|
|
113
|
+
np.float32,0x7ecb7c67,0x7f800000,3
|
|
114
|
+
np.float32,0x7f69a67e,0x7f800000,3
|
|
115
|
+
np.float32,0xff121e11,0xbf800000,3
|
|
116
|
+
np.float32,0x3f7917cb,0x3fd2ad8c,3
|
|
117
|
+
np.float32,0xbf1a7da8,0xbee7fc0c,3
|
|
118
|
+
np.float32,0x3f077e66,0x3f329c40,3
|
|
119
|
+
np.float32,0x3ce8e040,0x3cec37b3,3
|
|
120
|
+
np.float32,0xbf3f0b8e,0xbf069f4d,3
|
|
121
|
+
np.float32,0x3f52f194,0x3fa3c9d6,3
|
|
122
|
+
np.float32,0xbf0e7422,0xbeda80f2,3
|
|
123
|
+
np.float32,0xfd67e230,0xbf800000,3
|
|
124
|
+
np.float32,0xff14d9a9,0xbf800000,3
|
|
125
|
+
np.float32,0x3f3546e3,0x3f83dc2b,3
|
|
126
|
+
np.float32,0x3e152e3a,0x3e20983d,3
|
|
127
|
+
np.float32,0x4a89a3,0x4a89a3,3
|
|
128
|
+
np.float32,0x63217,0x63217,3
|
|
129
|
+
np.float32,0xbeb9e2a8,0xbe9be153,3
|
|
130
|
+
np.float32,0x7e9fa049,0x7f800000,3
|
|
131
|
+
np.float32,0x7f58110c,0x7f800000,3
|
|
132
|
+
np.float32,0x3e88290c,0x3e9bfba9,3
|
|
133
|
+
np.float32,0xbf2cb206,0xbefb3494,3
|
|
134
|
+
np.float32,0xff5880c4,0xbf800000,3
|
|
135
|
+
np.float32,0x7ecff3ac,0x7f800000,3
|
|
136
|
+
np.float32,0x3f4b3de6,0x3f9b23fd,3
|
|
137
|
+
np.float32,0xbebd2048,0xbe9e208c,3
|
|
138
|
+
np.float32,0xff08f7a2,0xbf800000,3
|
|
139
|
+
np.float32,0xff473330,0xbf800000,3
|
|
140
|
+
np.float32,0x1,0x1,3
|
|
141
|
+
np.float32,0xbf5dc239,0xbf14584b,3
|
|
142
|
+
np.float32,0x458e3f,0x458e3f,3
|
|
143
|
+
np.float32,0xbdb8a650,0xbdb091f8,3
|
|
144
|
+
np.float32,0xff336ffc,0xbf800000,3
|
|
145
|
+
np.float32,0x3c60bd00,0x3c624966,3
|
|
146
|
+
np.float32,0xbe16a4f8,0xbe0c1664,3
|
|
147
|
+
np.float32,0x3f214246,0x3f60a0f0,3
|
|
148
|
+
np.float32,0x7fa00000,0x7fe00000,3
|
|
149
|
+
np.float32,0x7e08737e,0x7f800000,3
|
|
150
|
+
np.float32,0x3f70574c,0x3fc74b8e,3
|
|
151
|
+
np.float32,0xbed5745c,0xbeae8c77,3
|
|
152
|
+
np.float32,0x361752,0x361752,3
|
|
153
|
+
np.float32,0x3eb276d6,0x3ed584ea,3
|
|
154
|
+
np.float32,0x3f03fc1e,0x3f2cb1a5,3
|
|
155
|
+
np.float32,0x3fafd1,0x3fafd1,3
|
|
156
|
+
np.float32,0x7e50d74c,0x7f800000,3
|
|
157
|
+
np.float32,0x3eeca5,0x3eeca5,3
|
|
158
|
+
np.float32,0x5dc963,0x5dc963,3
|
|
159
|
+
np.float32,0x7f0e63ae,0x7f800000,3
|
|
160
|
+
np.float32,0x8021745f,0x8021745f,3
|
|
161
|
+
np.float32,0xbf5881a9,0xbf121d07,3
|
|
162
|
+
np.float32,0x7dadc7fd,0x7f800000,3
|
|
163
|
+
np.float32,0xbf2c0798,0xbefa86bb,3
|
|
164
|
+
np.float32,0x3e635f50,0x3e7e97a9,3
|
|
165
|
+
np.float32,0xbf2053fa,0xbeee4c0e,3
|
|
166
|
+
np.float32,0x3e8eee2b,0x3ea4dfcc,3
|
|
167
|
+
np.float32,0xfc8a03c0,0xbf800000,3
|
|
168
|
+
np.float32,0xfd9e4948,0xbf800000,3
|
|
169
|
+
np.float32,0x801e817e,0x801e817e,3
|
|
170
|
+
np.float32,0xbf603a27,0xbf1560c3,3
|
|
171
|
+
np.float32,0x7f729809,0x7f800000,3
|
|
172
|
+
np.float32,0x3f5a1864,0x3fac0e04,3
|
|
173
|
+
np.float32,0x3e7648b8,0x3e8b3677,3
|
|
174
|
+
np.float32,0x3edade24,0x3f088bc1,3
|
|
175
|
+
np.float32,0x65e16e,0x65e16e,3
|
|
176
|
+
np.float32,0x3f24aa50,0x3f671117,3
|
|
177
|
+
np.float32,0x803cb1d0,0x803cb1d0,3
|
|
178
|
+
np.float32,0xbe7b1858,0xbe5eadcc,3
|
|
179
|
+
np.float32,0xbf19bb27,0xbee726fb,3
|
|
180
|
+
np.float32,0xfd1f6e60,0xbf800000,3
|
|
181
|
+
np.float32,0xfeb0de60,0xbf800000,3
|
|
182
|
+
np.float32,0xff511a52,0xbf800000,3
|
|
183
|
+
np.float32,0xff7757f7,0xbf800000,3
|
|
184
|
+
np.float32,0x463ff5,0x463ff5,3
|
|
185
|
+
np.float32,0x3f770d12,0x3fcffcc2,3
|
|
186
|
+
np.float32,0xbf208562,0xbeee80dc,3
|
|
187
|
+
np.float32,0x6df204,0x6df204,3
|
|
188
|
+
np.float32,0xbf62d24f,0xbf1673fb,3
|
|
189
|
+
np.float32,0x3dfcf210,0x3e069d5f,3
|
|
190
|
+
np.float32,0xbef26002,0xbec114d7,3
|
|
191
|
+
np.float32,0x7f800000,0x7f800000,3
|
|
192
|
+
np.float32,0x7f30fb85,0x7f800000,3
|
|
193
|
+
np.float32,0x7ee5dfef,0x7f800000,3
|
|
194
|
+
np.float32,0x3f317829,0x3f800611,3
|
|
195
|
+
np.float32,0x3f4b0bbd,0x3f9aec88,3
|
|
196
|
+
np.float32,0x7edf708c,0x7f800000,3
|
|
197
|
+
np.float32,0xff071260,0xbf800000,3
|
|
198
|
+
np.float32,0x3e7b8c30,0x3e8e9198,3
|
|
199
|
+
np.float32,0x3f33778b,0x3f82077f,3
|
|
200
|
+
np.float32,0x3e8cd11d,0x3ea215fd,3
|
|
201
|
+
np.float32,0x8004483d,0x8004483d,3
|
|
202
|
+
np.float32,0x801633e3,0x801633e3,3
|
|
203
|
+
np.float32,0x7e76eb15,0x7f800000,3
|
|
204
|
+
np.float32,0x3c1571,0x3c1571,3
|
|
205
|
+
np.float32,0x7de3de52,0x7f800000,3
|
|
206
|
+
np.float32,0x804ae906,0x804ae906,3
|
|
207
|
+
np.float32,0x7f3a2616,0x7f800000,3
|
|
208
|
+
np.float32,0xff7fffff,0xbf800000,3
|
|
209
|
+
np.float32,0xff5d17e4,0xbf800000,3
|
|
210
|
+
np.float32,0xbeaa6704,0xbe90f252,3
|
|
211
|
+
np.float32,0x7e6a43af,0x7f800000,3
|
|
212
|
+
np.float32,0x2a0f35,0x2a0f35,3
|
|
213
|
+
np.float32,0xfd8fece0,0xbf800000,3
|
|
214
|
+
np.float32,0xfeef2e2a,0xbf800000,3
|
|
215
|
+
np.float32,0xff800000,0xbf800000,3
|
|
216
|
+
np.float32,0xbeefcc52,0xbebf78e4,3
|
|
217
|
+
np.float32,0x3db6c490,0x3dbf2bd5,3
|
|
218
|
+
np.float32,0x8290f,0x8290f,3
|
|
219
|
+
np.float32,0xbeace648,0xbe92bb7f,3
|
|
220
|
+
np.float32,0x801fea79,0x801fea79,3
|
|
221
|
+
np.float32,0x3ea6c230,0x3ec51ebf,3
|
|
222
|
+
np.float32,0x3e5f2ca3,0x3e795c8a,3
|
|
223
|
+
np.float32,0x3eb6f634,0x3edbeb9f,3
|
|
224
|
+
np.float32,0xff790b45,0xbf800000,3
|
|
225
|
+
np.float32,0x3d82e240,0x3d872816,3
|
|
226
|
+
np.float32,0x3f0d6a57,0x3f3cc7db,3
|
|
227
|
+
np.float32,0x7f08531a,0x7f800000,3
|
|
228
|
+
np.float32,0x702b6d,0x702b6d,3
|
|
229
|
+
np.float32,0x7d3a3c38,0x7f800000,3
|
|
230
|
+
np.float32,0x3d0a7fb3,0x3d0cddf3,3
|
|
231
|
+
np.float32,0xff28084c,0xbf800000,3
|
|
232
|
+
np.float32,0xfeee8804,0xbf800000,3
|
|
233
|
+
np.float32,0x804094eb,0x804094eb,3
|
|
234
|
+
np.float32,0x7acb39,0x7acb39,3
|
|
235
|
+
np.float32,0x3f01c07a,0x3f28f88c,3
|
|
236
|
+
np.float32,0x3e05c500,0x3e0ee674,3
|
|
237
|
+
np.float32,0xbe6f7c38,0xbe558ac1,3
|
|
238
|
+
np.float32,0x803b1f4b,0x803b1f4b,3
|
|
239
|
+
np.float32,0xbf76561f,0xbf1e332b,3
|
|
240
|
+
np.float32,0xff30d368,0xbf800000,3
|
|
241
|
+
np.float32,0x7e2e1f38,0x7f800000,3
|
|
242
|
+
np.float32,0x3ee085b8,0x3f0ce7c0,3
|
|
243
|
+
np.float32,0x8064c4a7,0x8064c4a7,3
|
|
244
|
+
np.float32,0xa7c1d,0xa7c1d,3
|
|
245
|
+
np.float32,0x3f27498a,0x3f6c14bc,3
|
|
246
|
+
np.float32,0x137ca,0x137ca,3
|
|
247
|
+
np.float32,0x3d0a5c60,0x3d0cb969,3
|
|
248
|
+
np.float32,0x80765f1f,0x80765f1f,3
|
|
249
|
+
np.float32,0x80230a71,0x80230a71,3
|
|
250
|
+
np.float32,0x3f321ed2,0x3f80acf4,3
|
|
251
|
+
np.float32,0x7d61e7f4,0x7f800000,3
|
|
252
|
+
np.float32,0xbf39f7f2,0xbf0430f7,3
|
|
253
|
+
np.float32,0xbe2503f8,0xbe1867e8,3
|
|
254
|
+
np.float32,0x29333d,0x29333d,3
|
|
255
|
+
np.float32,0x7edc5a0e,0x7f800000,3
|
|
256
|
+
np.float32,0xbe81a8a2,0xbe651663,3
|
|
257
|
+
np.float32,0x7f76ab6d,0x7f800000,3
|
|
258
|
+
np.float32,0x7f46111f,0x7f800000,3
|
|
259
|
+
np.float32,0xff0fc888,0xbf800000,3
|
|
260
|
+
np.float32,0x805ece89,0x805ece89,3
|
|
261
|
+
np.float32,0xc390b,0xc390b,3
|
|
262
|
+
np.float32,0xff64bdee,0xbf800000,3
|
|
263
|
+
np.float32,0x3dd07e4e,0x3ddb79bd,3
|
|
264
|
+
np.float32,0xfecc1f10,0xbf800000,3
|
|
265
|
+
np.float32,0x803f5177,0x803f5177,3
|
|
266
|
+
np.float32,0x802a24d2,0x802a24d2,3
|
|
267
|
+
np.float32,0x7f27d0cc,0x7f800000,3
|
|
268
|
+
np.float32,0x3ef57c98,0x3f1d7e88,3
|
|
269
|
+
np.float32,0x7b848d,0x7b848d,3
|
|
270
|
+
np.float32,0x7f7fffff,0x7f800000,3
|
|
271
|
+
np.float32,0xfe889c46,0xbf800000,3
|
|
272
|
+
np.float32,0xff2d6dc5,0xbf800000,3
|
|
273
|
+
np.float32,0x3f53a186,0x3fa492a6,3
|
|
274
|
+
np.float32,0xbf239c94,0xbef1c90c,3
|
|
275
|
+
np.float32,0xff7c0f4e,0xbf800000,3
|
|
276
|
+
np.float32,0x3e7c69a9,0x3e8f1f3a,3
|
|
277
|
+
np.float32,0xbf47c9e9,0xbf0ab2a9,3
|
|
278
|
+
np.float32,0xbc1eaf00,0xbc1deae9,3
|
|
279
|
+
np.float32,0x3f4a6d39,0x3f9a3d8e,3
|
|
280
|
+
np.float32,0x3f677930,0x3fbc26eb,3
|
|
281
|
+
np.float32,0x3f45eea1,0x3f955418,3
|
|
282
|
+
np.float32,0x7f61a1f8,0x7f800000,3
|
|
283
|
+
np.float32,0xff58c7c6,0xbf800000,3
|
|
284
|
+
np.float32,0x80239801,0x80239801,3
|
|
285
|
+
np.float32,0xff56e616,0xbf800000,3
|
|
286
|
+
np.float32,0xff62052c,0xbf800000,3
|
|
287
|
+
np.float32,0x8009b615,0x8009b615,3
|
|
288
|
+
np.float32,0x293d6b,0x293d6b,3
|
|
289
|
+
np.float32,0xfe9e585c,0xbf800000,3
|
|
290
|
+
np.float32,0x7f58ff4b,0x7f800000,3
|
|
291
|
+
np.float32,0x10937c,0x10937c,3
|
|
292
|
+
np.float32,0x7f5cc13f,0x7f800000,3
|
|
293
|
+
np.float32,0x110c5d,0x110c5d,3
|
|
294
|
+
np.float32,0x805e51fc,0x805e51fc,3
|
|
295
|
+
np.float32,0xbedcf70a,0xbeb3766c,3
|
|
296
|
+
np.float32,0x3f4d5e42,0x3f9d8091,3
|
|
297
|
+
np.float32,0xff5925a0,0xbf800000,3
|
|
298
|
+
np.float32,0x7e87cafa,0x7f800000,3
|
|
299
|
+
np.float32,0xbf6474b2,0xbf171fee,3
|
|
300
|
+
np.float32,0x4b39b2,0x4b39b2,3
|
|
301
|
+
np.float32,0x8020cc28,0x8020cc28,3
|
|
302
|
+
np.float32,0xff004ed8,0xbf800000,3
|
|
303
|
+
np.float32,0xbf204cf5,0xbeee448d,3
|
|
304
|
+
np.float32,0x3e30cf10,0x3e40fdb1,3
|
|
305
|
+
np.float32,0x80202bee,0x80202bee,3
|
|
306
|
+
np.float32,0xbf55a985,0xbf10e2bc,3
|
|
307
|
+
np.float32,0xbe297dd8,0xbe1c351c,3
|
|
308
|
+
np.float32,0x5780d9,0x5780d9,3
|
|
309
|
+
np.float32,0x7ef729fa,0x7f800000,3
|
|
310
|
+
np.float32,0x8039a3b5,0x8039a3b5,3
|
|
311
|
+
np.float32,0x7cdd3f,0x7cdd3f,3
|
|
312
|
+
np.float32,0x7ef0145a,0x7f800000,3
|
|
313
|
+
np.float32,0x807ad7ae,0x807ad7ae,3
|
|
314
|
+
np.float32,0x7f6c2643,0x7f800000,3
|
|
315
|
+
np.float32,0xbec56124,0xbea3c929,3
|
|
316
|
+
np.float32,0x512c3b,0x512c3b,3
|
|
317
|
+
np.float32,0xbed3effe,0xbead8c1e,3
|
|
318
|
+
np.float32,0x7f5e0a4d,0x7f800000,3
|
|
319
|
+
np.float32,0x3f315316,0x3f7fc200,3
|
|
320
|
+
np.float32,0x7eca5727,0x7f800000,3
|
|
321
|
+
np.float32,0x7f4834f3,0x7f800000,3
|
|
322
|
+
np.float32,0x8004af6d,0x8004af6d,3
|
|
323
|
+
np.float32,0x3f223ca4,0x3f6277e3,3
|
|
324
|
+
np.float32,0x7eea4fdd,0x7f800000,3
|
|
325
|
+
np.float32,0x3e7143e8,0x3e880763,3
|
|
326
|
+
np.float32,0xbf737008,0xbf1d160e,3
|
|
327
|
+
np.float32,0xfc408b00,0xbf800000,3
|
|
328
|
+
np.float32,0x803912ca,0x803912ca,3
|
|
329
|
+
np.float32,0x7db31f4e,0x7f800000,3
|
|
330
|
+
np.float32,0xff578b54,0xbf800000,3
|
|
331
|
+
np.float32,0x3f068ec4,0x3f31062b,3
|
|
332
|
+
np.float32,0x35f64f,0x35f64f,3
|
|
333
|
+
np.float32,0x80437df4,0x80437df4,3
|
|
334
|
+
np.float32,0x568059,0x568059,3
|
|
335
|
+
np.float32,0x8005f8ba,0x8005f8ba,3
|
|
336
|
+
np.float32,0x6824ad,0x6824ad,3
|
|
337
|
+
np.float32,0xff3fdf30,0xbf800000,3
|
|
338
|
+
np.float32,0xbf6f7682,0xbf1b89d6,3
|
|
339
|
+
np.float32,0x3dcea8a0,0x3dd971f5,3
|
|
340
|
+
np.float32,0x3ee32a62,0x3f0ef5a9,3
|
|
341
|
+
np.float32,0xbf735bcd,0xbf1d0e3d,3
|
|
342
|
+
np.float32,0x7e8c7c28,0x7f800000,3
|
|
343
|
+
np.float32,0x3ed552bc,0x3f045161,3
|
|
344
|
+
np.float32,0xfed90a8a,0xbf800000,3
|
|
345
|
+
np.float32,0xbe454368,0xbe336d2a,3
|
|
346
|
+
np.float32,0xbf171d26,0xbee4442d,3
|
|
347
|
+
np.float32,0x80652bf9,0x80652bf9,3
|
|
348
|
+
np.float32,0xbdbaaa20,0xbdb26914,3
|
|
349
|
+
np.float32,0x3f56063d,0x3fa7522e,3
|
|
350
|
+
np.float32,0x3d3d4fd3,0x3d41c13f,3
|
|
351
|
+
np.float32,0x80456040,0x80456040,3
|
|
352
|
+
np.float32,0x3dc15586,0x3dcac0ef,3
|
|
353
|
+
np.float32,0x7f753060,0x7f800000,3
|
|
354
|
+
np.float32,0x7f7d8039,0x7f800000,3
|
|
355
|
+
np.float32,0xfdebf280,0xbf800000,3
|
|
356
|
+
np.float32,0xbf1892c3,0xbee5e116,3
|
|
357
|
+
np.float32,0xbf0f1468,0xbedb3878,3
|
|
358
|
+
np.float32,0x40d85c,0x40d85c,3
|
|
359
|
+
np.float32,0x3f93dd,0x3f93dd,3
|
|
360
|
+
np.float32,0xbf5730fd,0xbf118c24,3
|
|
361
|
+
np.float32,0xfe17aa44,0xbf800000,3
|
|
362
|
+
np.float32,0x3dc0baf4,0x3dca1716,3
|
|
363
|
+
np.float32,0xbf3433d8,0xbf015efb,3
|
|
364
|
+
np.float32,0x1c59f5,0x1c59f5,3
|
|
365
|
+
np.float32,0x802b1540,0x802b1540,3
|
|
366
|
+
np.float32,0xbe47df6c,0xbe35936e,3
|
|
367
|
+
np.float32,0xbe8e7070,0xbe78af32,3
|
|
368
|
+
np.float32,0xfe7057f4,0xbf800000,3
|
|
369
|
+
np.float32,0x80668b69,0x80668b69,3
|
|
370
|
+
np.float32,0xbe677810,0xbe4f2c2d,3
|
|
371
|
+
np.float32,0xbe7a2f1c,0xbe5df733,3
|
|
372
|
+
np.float32,0xfeb79e3c,0xbf800000,3
|
|
373
|
+
np.float32,0xbeb6e320,0xbe99c9e8,3
|
|
374
|
+
np.float32,0xfea188f2,0xbf800000,3
|
|
375
|
+
np.float32,0x7dcaeb15,0x7f800000,3
|
|
376
|
+
np.float32,0x1be567,0x1be567,3
|
|
377
|
+
np.float32,0xbf4041cc,0xbf07320d,3
|
|
378
|
+
np.float32,0x3f721aa7,0x3fc98e9a,3
|
|
379
|
+
np.float32,0x7f5aa835,0x7f800000,3
|
|
380
|
+
np.float32,0x15180e,0x15180e,3
|
|
381
|
+
np.float32,0x3f73d739,0x3fcbccdb,3
|
|
382
|
+
np.float32,0xbeecd380,0xbebd9b36,3
|
|
383
|
+
np.float32,0x3f2caec7,0x3f768fea,3
|
|
384
|
+
np.float32,0xbeaf65f2,0xbe9482bb,3
|
|
385
|
+
np.float32,0xfe6aa384,0xbf800000,3
|
|
386
|
+
np.float32,0xbf4f2c0a,0xbf0e085e,3
|
|
387
|
+
np.float32,0xbf2b5907,0xbef9d431,3
|
|
388
|
+
np.float32,0x3e855e0d,0x3e985960,3
|
|
389
|
+
np.float32,0x8056cc64,0x8056cc64,3
|
|
390
|
+
np.float32,0xff746bb5,0xbf800000,3
|
|
391
|
+
np.float32,0x3e0332f6,0x3e0bf986,3
|
|
392
|
+
np.float32,0xff637720,0xbf800000,3
|
|
393
|
+
np.float32,0xbf330676,0xbf00c990,3
|
|
394
|
+
np.float32,0x3ec449a1,0x3eef3862,3
|
|
395
|
+
np.float32,0x766541,0x766541,3
|
|
396
|
+
np.float32,0xfe2edf6c,0xbf800000,3
|
|
397
|
+
np.float32,0xbebb28ca,0xbe9cc3e2,3
|
|
398
|
+
np.float32,0x3f16c930,0x3f4d5ce4,3
|
|
399
|
+
np.float32,0x7f1a9a4a,0x7f800000,3
|
|
400
|
+
np.float32,0x3e9ba1,0x3e9ba1,3
|
|
401
|
+
np.float32,0xbf73d5f6,0xbf1d3d69,3
|
|
402
|
+
np.float32,0xfdc8a8b0,0xbf800000,3
|
|
403
|
+
np.float32,0x50f051,0x50f051,3
|
|
404
|
+
np.float32,0xff0add02,0xbf800000,3
|
|
405
|
+
np.float32,0x1e50bf,0x1e50bf,3
|
|
406
|
+
np.float32,0x3f04d287,0x3f2e1948,3
|
|
407
|
+
np.float32,0x7f1e50,0x7f1e50,3
|
|
408
|
+
np.float32,0x2affb3,0x2affb3,3
|
|
409
|
+
np.float32,0x80039f07,0x80039f07,3
|
|
410
|
+
np.float32,0x804ba79e,0x804ba79e,3
|
|
411
|
+
np.float32,0x7b5a8eed,0x7f800000,3
|
|
412
|
+
np.float32,0x3e1a8b28,0x3e26d0a7,3
|
|
413
|
+
np.float32,0x3ea95f29,0x3ec8bfa4,3
|
|
414
|
+
np.float32,0x7e09fa55,0x7f800000,3
|
|
415
|
+
np.float32,0x7eacb1b3,0x7f800000,3
|
|
416
|
+
np.float32,0x3e8ad7c0,0x3e9f7dec,3
|
|
417
|
+
np.float32,0x7e0e997c,0x7f800000,3
|
|
418
|
+
np.float32,0x3f4422b4,0x3f936398,3
|
|
419
|
+
np.float32,0x806bd222,0x806bd222,3
|
|
420
|
+
np.float32,0x677ae6,0x677ae6,3
|
|
421
|
+
np.float32,0x62cf68,0x62cf68,3
|
|
422
|
+
np.float32,0x7e4e594e,0x7f800000,3
|
|
423
|
+
np.float32,0x80445fd1,0x80445fd1,3
|
|
424
|
+
np.float32,0xff3a0d04,0xbf800000,3
|
|
425
|
+
np.float32,0x8052b256,0x8052b256,3
|
|
426
|
+
np.float32,0x3cb34440,0x3cb53e11,3
|
|
427
|
+
np.float32,0xbf0e3865,0xbeda3c6d,3
|
|
428
|
+
np.float32,0x3f49f5df,0x3f99ba17,3
|
|
429
|
+
np.float32,0xbed75a22,0xbeafcc09,3
|
|
430
|
+
np.float32,0xbf7aec64,0xbf1fefc8,3
|
|
431
|
+
np.float32,0x7f35a62d,0x7f800000,3
|
|
432
|
+
np.float32,0xbf787b03,0xbf1f03fc,3
|
|
433
|
+
np.float32,0x8006a62a,0x8006a62a,3
|
|
434
|
+
np.float32,0x3f6419e7,0x3fb803c7,3
|
|
435
|
+
np.float32,0x3ecea2e5,0x3efe8f01,3
|
|
436
|
+
np.float32,0x80603577,0x80603577,3
|
|
437
|
+
np.float32,0xff73198c,0xbf800000,3
|
|
438
|
+
np.float32,0x7def110a,0x7f800000,3
|
|
439
|
+
np.float32,0x544efd,0x544efd,3
|
|
440
|
+
np.float32,0x3f052340,0x3f2ea0fc,3
|
|
441
|
+
np.float32,0xff306666,0xbf800000,3
|
|
442
|
+
np.float32,0xbf800000,0xbf21d2a7,3
|
|
443
|
+
np.float32,0xbed3e150,0xbead826a,3
|
|
444
|
+
np.float32,0x3f430c99,0x3f92390f,3
|
|
445
|
+
np.float32,0xbf4bffa4,0xbf0c9c73,3
|
|
446
|
+
np.float32,0xfd97a710,0xbf800000,3
|
|
447
|
+
np.float32,0x3cadf0fe,0x3cafcd1a,3
|
|
448
|
+
np.float32,0x807af7b4,0x807af7b4,3
|
|
449
|
+
np.float32,0xbc508600,0xbc4f33bc,3
|
|
450
|
+
np.float32,0x7f3e0ec7,0x7f800000,3
|
|
451
|
+
np.float32,0xbe51334c,0xbe3d36f7,3
|
|
452
|
+
np.float32,0xfe7b7fb4,0xbf800000,3
|
|
453
|
+
np.float32,0xfed9c45e,0xbf800000,3
|
|
454
|
+
np.float32,0x3da024eb,0x3da6926a,3
|
|
455
|
+
np.float32,0x7eed9e76,0x7f800000,3
|
|
456
|
+
np.float32,0xbf2b8f1f,0xbefa0b91,3
|
|
457
|
+
np.float32,0x3f2b9286,0x3f746318,3
|
|
458
|
+
np.float32,0xfe8af49c,0xbf800000,3
|
|
459
|
+
np.float32,0x9c4f7,0x9c4f7,3
|
|
460
|
+
np.float32,0x801d7543,0x801d7543,3
|
|
461
|
+
np.float32,0xbf66474a,0xbf17de66,3
|
|
462
|
+
np.float32,0xbf562155,0xbf1116b1,3
|
|
463
|
+
np.float32,0x46a8de,0x46a8de,3
|
|
464
|
+
np.float32,0x8053fe6b,0x8053fe6b,3
|
|
465
|
+
np.float32,0xbf6ee842,0xbf1b51f3,3
|
|
466
|
+
np.float32,0xbf6ad78e,0xbf19b565,3
|
|
467
|
+
np.float32,0xbf012574,0xbecad7ff,3
|
|
468
|
+
np.float32,0x748364,0x748364,3
|
|
469
|
+
np.float32,0x8073f59b,0x8073f59b,3
|
|
470
|
+
np.float32,0xff526825,0xbf800000,3
|
|
471
|
+
np.float32,0xfeb02dc4,0xbf800000,3
|
|
472
|
+
np.float32,0x8033eb1c,0x8033eb1c,3
|
|
473
|
+
np.float32,0x3f3685ea,0x3f8520cc,3
|
|
474
|
+
np.float32,0x7f657902,0x7f800000,3
|
|
475
|
+
np.float32,0xbf75eac4,0xbf1e0a1f,3
|
|
476
|
+
np.float32,0xfe67f384,0xbf800000,3
|
|
477
|
+
np.float32,0x3f56d3cc,0x3fa83faf,3
|
|
478
|
+
np.float32,0x44a4ce,0x44a4ce,3
|
|
479
|
+
np.float32,0x1dc4b3,0x1dc4b3,3
|
|
480
|
+
np.float32,0x4fb3b2,0x4fb3b2,3
|
|
481
|
+
np.float32,0xbea904a4,0xbe8ff3ed,3
|
|
482
|
+
np.float32,0x7e668f16,0x7f800000,3
|
|
483
|
+
np.float32,0x7f538378,0x7f800000,3
|
|
484
|
+
np.float32,0x80541709,0x80541709,3
|
|
485
|
+
np.float32,0x80228040,0x80228040,3
|
|
486
|
+
np.float32,0x7ef9694e,0x7f800000,3
|
|
487
|
+
np.float32,0x3f5fca9b,0x3fb2ce54,3
|
|
488
|
+
np.float32,0xbe9c43c2,0xbe86ab84,3
|
|
489
|
+
np.float32,0xfecee000,0xbf800000,3
|
|
490
|
+
np.float32,0x5a65c2,0x5a65c2,3
|
|
491
|
+
np.float32,0x3f736572,0x3fcb3985,3
|
|
492
|
+
np.float32,0xbf2a03f7,0xbef87600,3
|
|
493
|
+
np.float32,0xfe96b488,0xbf800000,3
|
|
494
|
+
np.float32,0xfedd8800,0xbf800000,3
|
|
495
|
+
np.float32,0x80411804,0x80411804,3
|
|
496
|
+
np.float32,0x7edcb0a6,0x7f800000,3
|
|
497
|
+
np.float32,0x2bb882,0x2bb882,3
|
|
498
|
+
np.float32,0x3f800000,0x3fdbf0a9,3
|
|
499
|
+
np.float32,0x764b27,0x764b27,3
|
|
500
|
+
np.float32,0x7e92035d,0x7f800000,3
|
|
501
|
+
np.float32,0x3e80facb,0x3e92ae1d,3
|
|
502
|
+
np.float32,0x8040b81a,0x8040b81a,3
|
|
503
|
+
np.float32,0x7f487fe4,0x7f800000,3
|
|
504
|
+
np.float32,0xbc641780,0xbc6282ed,3
|
|
505
|
+
np.float32,0x804b0bb9,0x804b0bb9,3
|
|
506
|
+
np.float32,0x7d0b7c39,0x7f800000,3
|
|
507
|
+
np.float32,0xff072080,0xbf800000,3
|
|
508
|
+
np.float32,0xbed7aff8,0xbeb00462,3
|
|
509
|
+
np.float32,0x35e247,0x35e247,3
|
|
510
|
+
np.float32,0xbf7edd19,0xbf216766,3
|
|
511
|
+
np.float32,0x8004a539,0x8004a539,3
|
|
512
|
+
np.float32,0xfdfc1790,0xbf800000,3
|
|
513
|
+
np.float32,0x8037a841,0x8037a841,3
|
|
514
|
+
np.float32,0xfed0a8a8,0xbf800000,3
|
|
515
|
+
np.float32,0x7f1f1697,0x7f800000,3
|
|
516
|
+
np.float32,0x3f2ccc6e,0x3f76ca23,3
|
|
517
|
+
np.float32,0x35eada,0x35eada,3
|
|
518
|
+
np.float32,0xff111f42,0xbf800000,3
|
|
519
|
+
np.float32,0x3ee1ab7f,0x3f0dcbbe,3
|
|
520
|
+
np.float32,0xbf6e89ee,0xbf1b2cd4,3
|
|
521
|
+
np.float32,0x3f58611c,0x3faa0cdc,3
|
|
522
|
+
np.float32,0x1ac6a6,0x1ac6a6,3
|
|
523
|
+
np.float32,0xbf1286fa,0xbedf2312,3
|
|
524
|
+
np.float32,0x7e451137,0x7f800000,3
|
|
525
|
+
np.float32,0xbe92c326,0xbe7f3405,3
|
|
526
|
+
np.float32,0x3f2fdd16,0x3f7cd87b,3
|
|
527
|
+
np.float32,0xbe5c0ea0,0xbe4604c2,3
|
|
528
|
+
np.float32,0xbdb29968,0xbdab0883,3
|
|
529
|
+
np.float32,0x3964,0x3964,3
|
|
530
|
+
np.float32,0x3f0dc236,0x3f3d60a0,3
|
|
531
|
+
np.float32,0x7c3faf06,0x7f800000,3
|
|
532
|
+
np.float32,0xbef41f7a,0xbec22b16,3
|
|
533
|
+
np.float32,0x3f4c0289,0x3f9bfdcc,3
|
|
534
|
+
np.float32,0x806084e9,0x806084e9,3
|
|
535
|
+
np.float32,0x3ed1d8dd,0x3f01b0c1,3
|
|
536
|
+
np.float32,0x806d8d8b,0x806d8d8b,3
|
|
537
|
+
np.float32,0x3f052180,0x3f2e9e0a,3
|
|
538
|
+
np.float32,0x803d85d5,0x803d85d5,3
|
|
539
|
+
np.float32,0x3e0afd70,0x3e14dd48,3
|
|
540
|
+
np.float32,0x2fbc63,0x2fbc63,3
|
|
541
|
+
np.float32,0x2e436f,0x2e436f,3
|
|
542
|
+
np.float32,0xbf7b19e6,0xbf2000da,3
|
|
543
|
+
np.float32,0x3f34022e,0x3f829362,3
|
|
544
|
+
np.float32,0x3d2b40e0,0x3d2ee246,3
|
|
545
|
+
np.float32,0x3f5298b4,0x3fa3649b,3
|
|
546
|
+
np.float32,0xbdb01328,0xbda8b7de,3
|
|
547
|
+
np.float32,0x7f693c81,0x7f800000,3
|
|
548
|
+
np.float32,0xbeb1abc0,0xbe961edc,3
|
|
549
|
+
np.float32,0x801d9b5d,0x801d9b5d,3
|
|
550
|
+
np.float32,0x80628668,0x80628668,3
|
|
551
|
+
np.float32,0x800f57dd,0x800f57dd,3
|
|
552
|
+
np.float32,0x8017c94f,0x8017c94f,3
|
|
553
|
+
np.float32,0xbf16f5f4,0xbee418b8,3
|
|
554
|
+
np.float32,0x3e686476,0x3e827022,3
|
|
555
|
+
np.float32,0xbf256796,0xbef3abd9,3
|
|
556
|
+
np.float32,0x7f1b4485,0x7f800000,3
|
|
557
|
+
np.float32,0xbea0b3cc,0xbe89ed21,3
|
|
558
|
+
np.float32,0xfee08b2e,0xbf800000,3
|
|
559
|
+
np.float32,0x523cb4,0x523cb4,3
|
|
560
|
+
np.float32,0x3daf2cb2,0x3db6e273,3
|
|
561
|
+
np.float32,0xbd531c40,0xbd4dc323,3
|
|
562
|
+
np.float32,0x80078fe5,0x80078fe5,3
|
|
563
|
+
np.float32,0x80800000,0x80800000,3
|
|
564
|
+
np.float32,0x3f232438,0x3f642d1a,3
|
|
565
|
+
np.float32,0x3ec29446,0x3eecb7c0,3
|
|
566
|
+
np.float32,0x3dbcd2a4,0x3dc5cd1d,3
|
|
567
|
+
np.float32,0x7f045b0d,0x7f800000,3
|
|
568
|
+
np.float32,0x7f22e6d1,0x7f800000,3
|
|
569
|
+
np.float32,0xbf5d3430,0xbf141c80,3
|
|
570
|
+
np.float32,0xbe03ec70,0xbdf78ee6,3
|
|
571
|
+
np.float32,0x3e93ec9a,0x3eab822f,3
|
|
572
|
+
np.float32,0x7f3b9262,0x7f800000,3
|
|
573
|
+
np.float32,0x65ac6a,0x65ac6a,3
|
|
574
|
+
np.float32,0x3db9a8,0x3db9a8,3
|
|
575
|
+
np.float32,0xbf37ab59,0xbf031306,3
|
|
576
|
+
np.float32,0x33c40e,0x33c40e,3
|
|
577
|
+
np.float32,0x7f7a478f,0x7f800000,3
|
|
578
|
+
np.float32,0xbe8532d0,0xbe6a906f,3
|
|
579
|
+
np.float32,0x801c081d,0x801c081d,3
|
|
580
|
+
np.float32,0xbe4212a0,0xbe30ca73,3
|
|
581
|
+
np.float32,0xff0b603e,0xbf800000,3
|
|
582
|
+
np.float32,0x4554dc,0x4554dc,3
|
|
583
|
+
np.float32,0x3dd324be,0x3dde695e,3
|
|
584
|
+
np.float32,0x3f224c44,0x3f629557,3
|
|
585
|
+
np.float32,0x8003cd79,0x8003cd79,3
|
|
586
|
+
np.float32,0xbf31351c,0xbeffc2fd,3
|
|
587
|
+
np.float32,0x8034603a,0x8034603a,3
|
|
588
|
+
np.float32,0xbf6fcb70,0xbf1bab24,3
|
|
589
|
+
np.float32,0x804eb67e,0x804eb67e,3
|
|
590
|
+
np.float32,0xff05c00e,0xbf800000,3
|
|
591
|
+
np.float32,0x3eb5b36f,0x3eda1ec7,3
|
|
592
|
+
np.float32,0x3f1ed7f9,0x3f5c1d90,3
|
|
593
|
+
np.float32,0x3f052d8a,0x3f2eb24b,3
|
|
594
|
+
np.float32,0x5ddf51,0x5ddf51,3
|
|
595
|
+
np.float32,0x7e50c11c,0x7f800000,3
|
|
596
|
+
np.float32,0xff74f55a,0xbf800000,3
|
|
597
|
+
np.float32,0x4322d,0x4322d,3
|
|
598
|
+
np.float32,0x3f16f8a9,0x3f4db27a,3
|
|
599
|
+
np.float32,0x3f4f23d6,0x3f9f7c2c,3
|
|
600
|
+
np.float32,0xbf706c1e,0xbf1bea0a,3
|
|
601
|
+
np.float32,0x3f2cbd52,0x3f76ac77,3
|
|
602
|
+
np.float32,0xf3043,0xf3043,3
|
|
603
|
+
np.float32,0xfee79de0,0xbf800000,3
|
|
604
|
+
np.float32,0x7e942f69,0x7f800000,3
|
|
605
|
+
np.float32,0x180139,0x180139,3
|
|
606
|
+
np.float32,0xff69c678,0xbf800000,3
|
|
607
|
+
np.float32,0x3f46773f,0x3f95e840,3
|
|
608
|
+
np.float32,0x804aae1c,0x804aae1c,3
|
|
609
|
+
np.float32,0x3eb383b4,0x3ed7024c,3
|
|
610
|
+
np.float32,0x8032624e,0x8032624e,3
|
|
611
|
+
np.float32,0xbd0a0f80,0xbd07c27d,3
|
|
612
|
+
np.float32,0xbf1c9b98,0xbeea4a61,3
|
|
613
|
+
np.float32,0x7f370999,0x7f800000,3
|
|
614
|
+
np.float32,0x801931f9,0x801931f9,3
|
|
615
|
+
np.float32,0x3f6f45ce,0x3fc5eea0,3
|
|
616
|
+
np.float32,0xff0ab4cc,0xbf800000,3
|
|
617
|
+
np.float32,0x4c043d,0x4c043d,3
|
|
618
|
+
np.float32,0x8002a599,0x8002a599,3
|
|
619
|
+
np.float32,0xbc4a6080,0xbc4921d7,3
|
|
620
|
+
np.float32,0x3f008d14,0x3f26fb72,3
|
|
621
|
+
np.float32,0x7f48b3d9,0x7f800000,3
|
|
622
|
+
np.float32,0x7cb2ec7e,0x7f800000,3
|
|
623
|
+
np.float32,0xbf1338bd,0xbedfeb61,3
|
|
624
|
+
np.float32,0x0,0x0,3
|
|
625
|
+
np.float32,0xbf2f5b64,0xbefde71c,3
|
|
626
|
+
np.float32,0xbe422974,0xbe30dd56,3
|
|
627
|
+
np.float32,0x3f776be8,0x3fd07950,3
|
|
628
|
+
np.float32,0xbf3e97a1,0xbf06684a,3
|
|
629
|
+
np.float32,0x7d28cb26,0x7f800000,3
|
|
630
|
+
np.float32,0x801618d2,0x801618d2,3
|
|
631
|
+
np.float32,0x807e4f83,0x807e4f83,3
|
|
632
|
+
np.float32,0x8006b07d,0x8006b07d,3
|
|
633
|
+
np.float32,0xfea1c042,0xbf800000,3
|
|
634
|
+
np.float32,0xff24ef74,0xbf800000,3
|
|
635
|
+
np.float32,0xfef7ab16,0xbf800000,3
|
|
636
|
+
np.float32,0x70b771,0x70b771,3
|
|
637
|
+
np.float32,0x7daeb64e,0x7f800000,3
|
|
638
|
+
np.float32,0xbe66e378,0xbe4eb59c,3
|
|
639
|
+
np.float32,0xbead1534,0xbe92dcf7,3
|
|
640
|
+
np.float32,0x7e6769b8,0x7f800000,3
|
|
641
|
+
np.float32,0x7ecd0890,0x7f800000,3
|
|
642
|
+
np.float32,0xbe7380d8,0xbe58b747,3
|
|
643
|
+
np.float32,0x3efa6f2f,0x3f218265,3
|
|
644
|
+
np.float32,0x3f59dada,0x3fabc5eb,3
|
|
645
|
+
np.float32,0xff0f2d20,0xbf800000,3
|
|
646
|
+
np.float32,0x8060210e,0x8060210e,3
|
|
647
|
+
np.float32,0x3ef681e8,0x3f1e51c8,3
|
|
648
|
+
np.float32,0x77a6dd,0x77a6dd,3
|
|
649
|
+
np.float32,0xbebfdd0e,0xbea00399,3
|
|
650
|
+
np.float32,0xfe889b72,0xbf800000,3
|
|
651
|
+
np.float32,0x8049ed2c,0x8049ed2c,3
|
|
652
|
+
np.float32,0x3b089dc4,0x3b08c23e,3
|
|
653
|
+
np.float32,0xbf13c7c4,0xbee08c28,3
|
|
654
|
+
np.float32,0x3efa13b9,0x3f2137d7,3
|
|
655
|
+
np.float32,0x3e9385dc,0x3eaaf914,3
|
|
656
|
+
np.float32,0x7e0e6a43,0x7f800000,3
|
|
657
|
+
np.float32,0x7df6d63f,0x7f800000,3
|
|
658
|
+
np.float32,0x3f3efead,0x3f8dea03,3
|
|
659
|
+
np.float32,0xff52548c,0xbf800000,3
|
|
660
|
+
np.float32,0x803ff9d8,0x803ff9d8,3
|
|
661
|
+
np.float32,0x3c825823,0x3c836303,3
|
|
662
|
+
np.float32,0xfc9e97a0,0xbf800000,3
|
|
663
|
+
np.float32,0xfe644f48,0xbf800000,3
|
|
664
|
+
np.float32,0x802f5017,0x802f5017,3
|
|
665
|
+
np.float32,0x3d5753b9,0x3d5d1661,3
|
|
666
|
+
np.float32,0x7f2a55d2,0x7f800000,3
|
|
667
|
+
np.float32,0x7f4dabfe,0x7f800000,3
|
|
668
|
+
np.float32,0x3f49492a,0x3f98fc47,3
|
|
669
|
+
np.float32,0x3f4d1589,0x3f9d2f82,3
|
|
670
|
+
np.float32,0xff016208,0xbf800000,3
|
|
671
|
+
np.float32,0xbf571cb7,0xbf118365,3
|
|
672
|
+
np.float32,0xbf1ef297,0xbeecd136,3
|
|
673
|
+
np.float32,0x36266b,0x36266b,3
|
|
674
|
+
np.float32,0xbed07b0e,0xbeab4129,3
|
|
675
|
+
np.float32,0x7f553365,0x7f800000,3
|
|
676
|
+
np.float32,0xfe9bb8c6,0xbf800000,3
|
|
677
|
+
np.float32,0xbeb497d6,0xbe982e19,3
|
|
678
|
+
np.float32,0xbf27af6c,0xbef60d16,3
|
|
679
|
+
np.float32,0x55cf51,0x55cf51,3
|
|
680
|
+
np.float32,0x3eab1db0,0x3ecb2e4f,3
|
|
681
|
+
np.float32,0x3e777603,0x3e8bf62f,3
|
|
682
|
+
np.float32,0x7f10e374,0x7f800000,3
|
|
683
|
+
np.float32,0xbf1f6480,0xbeed4b8d,3
|
|
684
|
+
np.float32,0x40479d,0x40479d,3
|
|
685
|
+
np.float32,0x156259,0x156259,3
|
|
686
|
+
np.float32,0x3d852e30,0x3d899b2d,3
|
|
687
|
+
np.float32,0x80014ff3,0x80014ff3,3
|
|
688
|
+
np.float32,0xbd812fa8,0xbd7a645c,3
|
|
689
|
+
np.float32,0x800ab780,0x800ab780,3
|
|
690
|
+
np.float32,0x3ea02ff4,0x3ebc13bd,3
|
|
691
|
+
np.float32,0x7e858b8e,0x7f800000,3
|
|
692
|
+
np.float32,0x75d63b,0x75d63b,3
|
|
693
|
+
np.float32,0xbeb15c94,0xbe95e6e3,3
|
|
694
|
+
np.float32,0x3da0cee0,0x3da74a39,3
|
|
695
|
+
np.float32,0xff21c01c,0xbf800000,3
|
|
696
|
+
np.float32,0x8049b5eb,0x8049b5eb,3
|
|
697
|
+
np.float32,0x80177ab0,0x80177ab0,3
|
|
698
|
+
np.float32,0xff137a50,0xbf800000,3
|
|
699
|
+
np.float32,0x3f7febba,0x3fdbd51c,3
|
|
700
|
+
np.float32,0x8041e4dd,0x8041e4dd,3
|
|
701
|
+
np.float32,0x99b8c,0x99b8c,3
|
|
702
|
+
np.float32,0x5621ba,0x5621ba,3
|
|
703
|
+
np.float32,0x14b534,0x14b534,3
|
|
704
|
+
np.float32,0xbe2eb3a8,0xbe209c95,3
|
|
705
|
+
np.float32,0x7e510c28,0x7f800000,3
|
|
706
|
+
np.float32,0x804ec2f2,0x804ec2f2,3
|
|
707
|
+
np.float32,0x3f662406,0x3fba82b0,3
|
|
708
|
+
np.float32,0x800000,0x800000,3
|
|
709
|
+
np.float32,0x3f3120d6,0x3f7f5d96,3
|
|
710
|
+
np.float32,0x7f179b8e,0x7f800000,3
|
|
711
|
+
np.float32,0x7f65278e,0x7f800000,3
|
|
712
|
+
np.float32,0xfeb50f52,0xbf800000,3
|
|
713
|
+
np.float32,0x7f051bd1,0x7f800000,3
|
|
714
|
+
np.float32,0x7ea0558d,0x7f800000,3
|
|
715
|
+
np.float32,0xbd0a96c0,0xbd08453f,3
|
|
716
|
+
np.float64,0xee82da5ddd05c,0xee82da5ddd05c,1
|
|
717
|
+
np.float64,0x800c3a22d7f87446,0x800c3a22d7f87446,1
|
|
718
|
+
np.float64,0xbfd34b20eaa69642,0xbfd0a825e7688d3e,1
|
|
719
|
+
np.float64,0x3fd6a0f2492d41e5,0x3fdb253b906057b3,1
|
|
720
|
+
np.float64,0xbfda13d8783427b0,0xbfd56b1d76684332,1
|
|
721
|
+
np.float64,0xbfe50b5a99ea16b5,0xbfded7dd82c6f746,1
|
|
722
|
+
np.float64,0x3f82468fc0248d20,0x3f825b7fa9378ee9,1
|
|
723
|
+
np.float64,0x7ff0000000000000,0x7ff0000000000000,1
|
|
724
|
+
np.float64,0x856e50290adca,0x856e50290adca,1
|
|
725
|
+
np.float64,0x7fde55a5fa3cab4b,0x7ff0000000000000,1
|
|
726
|
+
np.float64,0x7fcf2c8dd93e591b,0x7ff0000000000000,1
|
|
727
|
+
np.float64,0x8001b3a0e3236743,0x8001b3a0e3236743,1
|
|
728
|
+
np.float64,0x8000fdb14821fb63,0x8000fdb14821fb63,1
|
|
729
|
+
np.float64,0xbfe3645e08e6c8bc,0xbfdd161362a5e9ef,1
|
|
730
|
+
np.float64,0x7feb34d28b3669a4,0x7ff0000000000000,1
|
|
731
|
+
np.float64,0x80099dd810933bb1,0x80099dd810933bb1,1
|
|
732
|
+
np.float64,0xbfedbcc1097b7982,0xbfe35d86414d53dc,1
|
|
733
|
+
np.float64,0x7fdc406fbdb880de,0x7ff0000000000000,1
|
|
734
|
+
np.float64,0x800c4bf85ab897f1,0x800c4bf85ab897f1,1
|
|
735
|
+
np.float64,0x3fd8f7b0e0b1ef60,0x3fde89b497ae20d8,1
|
|
736
|
+
np.float64,0xffe4fced5c69f9da,0xbff0000000000000,1
|
|
737
|
+
np.float64,0xbfe54d421fea9a84,0xbfdf1be0cbfbfcba,1
|
|
738
|
+
np.float64,0x800af72f3535ee5f,0x800af72f3535ee5f,1
|
|
739
|
+
np.float64,0x3fe24e6570e49ccb,0x3fe8b3a86d970411,1
|
|
740
|
+
np.float64,0xbfdd7b22d0baf646,0xbfd79fac2e4f7558,1
|
|
741
|
+
np.float64,0xbfe6a7654c6d4eca,0xbfe03c1f13f3b409,1
|
|
742
|
+
np.float64,0x3fe2c3eb662587d7,0x3fe98566e625d4f5,1
|
|
743
|
+
np.float64,0x3b1ef71e763e0,0x3b1ef71e763e0,1
|
|
744
|
+
np.float64,0xffed03c6baba078d,0xbff0000000000000,1
|
|
745
|
+
np.float64,0x3febac19d0b75834,0x3ff5fdacc9d51bcd,1
|
|
746
|
+
np.float64,0x800635d6794c6bae,0x800635d6794c6bae,1
|
|
747
|
+
np.float64,0xbfe8cafc827195f9,0xbfe1411438608ae1,1
|
|
748
|
+
np.float64,0x7feeb616a83d6c2c,0x7ff0000000000000,1
|
|
749
|
+
np.float64,0x3fd52d62a2aa5ac5,0x3fd91a07a7f18f44,1
|
|
750
|
+
np.float64,0x80036996b8a6d32e,0x80036996b8a6d32e,1
|
|
751
|
+
np.float64,0x2b1945965632a,0x2b1945965632a,1
|
|
752
|
+
np.float64,0xbfecb5e8c9796bd2,0xbfe2f40fca276aa2,1
|
|
753
|
+
np.float64,0x3fe8669ed4f0cd3e,0x3ff24c89fc9cdbff,1
|
|
754
|
+
np.float64,0x71e9f65ee3d3f,0x71e9f65ee3d3f,1
|
|
755
|
+
np.float64,0xbfd5ab262bab564c,0xbfd261ae108ef79e,1
|
|
756
|
+
np.float64,0xbfe7091342ee1226,0xbfe06bf5622d75f6,1
|
|
757
|
+
np.float64,0x49e888d093d12,0x49e888d093d12,1
|
|
758
|
+
np.float64,0x2272f3dc44e5f,0x2272f3dc44e5f,1
|
|
759
|
+
np.float64,0x7fe98736e0b30e6d,0x7ff0000000000000,1
|
|
760
|
+
np.float64,0x30fa9cde61f54,0x30fa9cde61f54,1
|
|
761
|
+
np.float64,0x7fdc163fc0382c7f,0x7ff0000000000000,1
|
|
762
|
+
np.float64,0xffb40d04ee281a08,0xbff0000000000000,1
|
|
763
|
+
np.float64,0xffe624617f2c48c2,0xbff0000000000000,1
|
|
764
|
+
np.float64,0x3febb582bd376b05,0x3ff608da584d1716,1
|
|
765
|
+
np.float64,0xfc30a5a5f8615,0xfc30a5a5f8615,1
|
|
766
|
+
np.float64,0x3fef202efd7e405e,0x3ffa52009319b069,1
|
|
767
|
+
np.float64,0x8004d0259829a04c,0x8004d0259829a04c,1
|
|
768
|
+
np.float64,0x800622dc71ec45ba,0x800622dc71ec45ba,1
|
|
769
|
+
np.float64,0xffefffffffffffff,0xbff0000000000000,1
|
|
770
|
+
np.float64,0x800e89113c9d1223,0x800e89113c9d1223,1
|
|
771
|
+
np.float64,0x7fba7fde3034ffbb,0x7ff0000000000000,1
|
|
772
|
+
np.float64,0xbfeea31e807d463d,0xbfe3b7369b725915,1
|
|
773
|
+
np.float64,0x3feb7c9589f6f92c,0x3ff5c56cf71b0dff,1
|
|
774
|
+
np.float64,0x3fd52d3b59aa5a77,0x3fd919d0f683fd07,1
|
|
775
|
+
np.float64,0x800de90a43fbd215,0x800de90a43fbd215,1
|
|
776
|
+
np.float64,0x3fe7eb35a9efd66b,0x3ff1c940dbfc6ef9,1
|
|
777
|
+
np.float64,0xbda0adcb7b416,0xbda0adcb7b416,1
|
|
778
|
+
np.float64,0x7fc5753e3a2aea7b,0x7ff0000000000000,1
|
|
779
|
+
np.float64,0xffdd101d103a203a,0xbff0000000000000,1
|
|
780
|
+
np.float64,0x7fcb54f56836a9ea,0x7ff0000000000000,1
|
|
781
|
+
np.float64,0xbfd61c8d6eac391a,0xbfd2b23bc0a2cef4,1
|
|
782
|
+
np.float64,0x3feef55de37deabc,0x3ffa198639a0161d,1
|
|
783
|
+
np.float64,0x7fe4ffbfaea9ff7e,0x7ff0000000000000,1
|
|
784
|
+
np.float64,0x9d1071873a20e,0x9d1071873a20e,1
|
|
785
|
+
np.float64,0x3fef1ecb863e3d97,0x3ffa502a81e09cfc,1
|
|
786
|
+
np.float64,0xad2da12b5a5b4,0xad2da12b5a5b4,1
|
|
787
|
+
np.float64,0xffe614b74c6c296e,0xbff0000000000000,1
|
|
788
|
+
np.float64,0xffe60d3f286c1a7e,0xbff0000000000000,1
|
|
789
|
+
np.float64,0x7fda7d91f4b4fb23,0x7ff0000000000000,1
|
|
790
|
+
np.float64,0x800023f266a047e6,0x800023f266a047e6,1
|
|
791
|
+
np.float64,0x7fdf5f9ad23ebf35,0x7ff0000000000000,1
|
|
792
|
+
np.float64,0x3fa7459f002e8b3e,0x3fa7cf178dcf0af6,1
|
|
793
|
+
np.float64,0x3fe9938d61f3271b,0x3ff39516a13caec3,1
|
|
794
|
+
np.float64,0xbfd59314c3ab262a,0xbfd250830f73efd2,1
|
|
795
|
+
np.float64,0xbfc7e193f72fc328,0xbfc5c924339dd7a8,1
|
|
796
|
+
np.float64,0x7fec1965f17832cb,0x7ff0000000000000,1
|
|
797
|
+
np.float64,0xbfd932908eb26522,0xbfd4d4312d272580,1
|
|
798
|
+
np.float64,0xbfdf2d08e2be5a12,0xbfd8add1413b0b1b,1
|
|
799
|
+
np.float64,0x7fdcf7cc74b9ef98,0x7ff0000000000000,1
|
|
800
|
+
np.float64,0x7fc79300912f2600,0x7ff0000000000000,1
|
|
801
|
+
np.float64,0xffd4bd8f23297b1e,0xbff0000000000000,1
|
|
802
|
+
np.float64,0x41869ce0830e,0x41869ce0830e,1
|
|
803
|
+
np.float64,0x3fe5dcec91ebb9da,0x3fef5e213598cbd4,1
|
|
804
|
+
np.float64,0x800815d9c2902bb4,0x800815d9c2902bb4,1
|
|
805
|
+
np.float64,0x800ba1a4b877434a,0x800ba1a4b877434a,1
|
|
806
|
+
np.float64,0x80069d7bdc4d3af8,0x80069d7bdc4d3af8,1
|
|
807
|
+
np.float64,0xcf00d4339e01b,0xcf00d4339e01b,1
|
|
808
|
+
np.float64,0x80072b71bd4e56e4,0x80072b71bd4e56e4,1
|
|
809
|
+
np.float64,0x80059ca6fbab394f,0x80059ca6fbab394f,1
|
|
810
|
+
np.float64,0x3fe522fc092a45f8,0x3fedf212682bf894,1
|
|
811
|
+
np.float64,0x7fe17f384ea2fe70,0x7ff0000000000000,1
|
|
812
|
+
np.float64,0x0,0x0,1
|
|
813
|
+
np.float64,0x3f72bb4c20257698,0x3f72c64766b52069,1
|
|
814
|
+
np.float64,0x7fbc97c940392f92,0x7ff0000000000000,1
|
|
815
|
+
np.float64,0xffc5904ebd2b209c,0xbff0000000000000,1
|
|
816
|
+
np.float64,0xbfe34fb55b669f6a,0xbfdcff81dd30a49d,1
|
|
817
|
+
np.float64,0x8007ccda006f99b5,0x8007ccda006f99b5,1
|
|
818
|
+
np.float64,0x3fee50e4c8fca1ca,0x3ff9434c7750ad0f,1
|
|
819
|
+
np.float64,0x7fee7b07c67cf60f,0x7ff0000000000000,1
|
|
820
|
+
np.float64,0x3fdcce4a5a399c95,0x3fe230c83f28218a,1
|
|
821
|
+
np.float64,0x7fee5187b37ca30e,0x7ff0000000000000,1
|
|
822
|
+
np.float64,0x3fc48f6a97291ed8,0x3fc64db6200a9833,1
|
|
823
|
+
np.float64,0xc7fec3498ffd9,0xc7fec3498ffd9,1
|
|
824
|
+
np.float64,0x800769c59d2ed38c,0x800769c59d2ed38c,1
|
|
825
|
+
np.float64,0xffe69ede782d3dbc,0xbff0000000000000,1
|
|
826
|
+
np.float64,0x3fecd9770979b2ee,0x3ff76a1f2f0f08f2,1
|
|
827
|
+
np.float64,0x5aa358a8b546c,0x5aa358a8b546c,1
|
|
828
|
+
np.float64,0xbfe795a0506f2b40,0xbfe0afcc52c0166b,1
|
|
829
|
+
np.float64,0xffd4ada1e8a95b44,0xbff0000000000000,1
|
|
830
|
+
np.float64,0xffcac1dc213583b8,0xbff0000000000000,1
|
|
831
|
+
np.float64,0xffe393c15fa72782,0xbff0000000000000,1
|
|
832
|
+
np.float64,0xbfcd6a3c113ad478,0xbfca47a2157b9cdd,1
|
|
833
|
+
np.float64,0xffedde20647bbc40,0xbff0000000000000,1
|
|
834
|
+
np.float64,0x3fd0d011b1a1a024,0x3fd33a57945559f4,1
|
|
835
|
+
np.float64,0x3fef27e29f7e4fc6,0x3ffa5c314e0e3d69,1
|
|
836
|
+
np.float64,0xffe96ff71f72dfee,0xbff0000000000000,1
|
|
837
|
+
np.float64,0xffe762414f2ec482,0xbff0000000000000,1
|
|
838
|
+
np.float64,0x3fc2dcfd3d25b9fa,0x3fc452f41682a12e,1
|
|
839
|
+
np.float64,0xbfbdb125b63b6248,0xbfbc08e6553296d4,1
|
|
840
|
+
np.float64,0x7b915740f724,0x7b915740f724,1
|
|
841
|
+
np.float64,0x60b502b2c16a1,0x60b502b2c16a1,1
|
|
842
|
+
np.float64,0xbfeb38b0be367162,0xbfe254f6782cfc47,1
|
|
843
|
+
np.float64,0x800dc39a3edb8735,0x800dc39a3edb8735,1
|
|
844
|
+
np.float64,0x3fea4fb433349f68,0x3ff468b97cf699f5,1
|
|
845
|
+
np.float64,0xbfd49967962932d0,0xbfd19ceb41ff4cd0,1
|
|
846
|
+
np.float64,0xbfebf75cd377eeba,0xbfe2a576bdbccccc,1
|
|
847
|
+
np.float64,0xbfb653d65c2ca7b0,0xbfb561ab8fcb3f26,1
|
|
848
|
+
np.float64,0xffe3f34b8727e696,0xbff0000000000000,1
|
|
849
|
+
np.float64,0x3fdd798064baf301,0x3fe2b7c130a6fc63,1
|
|
850
|
+
np.float64,0x3febe027e6b7c050,0x3ff63bac1b22e12d,1
|
|
851
|
+
np.float64,0x7fcaa371af3546e2,0x7ff0000000000000,1
|
|
852
|
+
np.float64,0xbfe6ee980a2ddd30,0xbfe05f0bc5dc80d2,1
|
|
853
|
+
np.float64,0xc559c33f8ab39,0xc559c33f8ab39,1
|
|
854
|
+
np.float64,0x84542c2b08a86,0x84542c2b08a86,1
|
|
855
|
+
np.float64,0xbfe5645e046ac8bc,0xbfdf3398dc3cc1bd,1
|
|
856
|
+
np.float64,0x3fee8c48ae7d1892,0x3ff9902899480526,1
|
|
857
|
+
np.float64,0x3fb706471c2e0c8e,0x3fb817787aace8db,1
|
|
858
|
+
np.float64,0x7fefe78f91ffcf1e,0x7ff0000000000000,1
|
|
859
|
+
np.float64,0xbfcf6d560b3edaac,0xbfcbddc72a2130df,1
|
|
860
|
+
np.float64,0x7fd282bfd925057f,0x7ff0000000000000,1
|
|
861
|
+
np.float64,0x3fb973dbee32e7b8,0x3fbac2c87cbd0215,1
|
|
862
|
+
np.float64,0x3fd1ce38ff239c72,0x3fd4876de5164420,1
|
|
863
|
+
np.float64,0x8008ac2e3c31585d,0x8008ac2e3c31585d,1
|
|
864
|
+
np.float64,0x3fa05e06dc20bc00,0x3fa0a1b7de904dce,1
|
|
865
|
+
np.float64,0x7fd925f215324be3,0x7ff0000000000000,1
|
|
866
|
+
np.float64,0x3f949d95d0293b2c,0x3f94d31197d51874,1
|
|
867
|
+
np.float64,0xffdded9e67bbdb3c,0xbff0000000000000,1
|
|
868
|
+
np.float64,0x3fed390dcfba721c,0x3ff7e08c7a709240,1
|
|
869
|
+
np.float64,0x7fe6e62300adcc45,0x7ff0000000000000,1
|
|
870
|
+
np.float64,0xbfd779bc312ef378,0xbfd3a6cb64bb0181,1
|
|
871
|
+
np.float64,0x3fe43e9877287d31,0x3fec3e100ef935fd,1
|
|
872
|
+
np.float64,0x210b68e44216e,0x210b68e44216e,1
|
|
873
|
+
np.float64,0x3fcdffc1e73bff84,0x3fd0e729d02ec539,1
|
|
874
|
+
np.float64,0xcea10c0f9d422,0xcea10c0f9d422,1
|
|
875
|
+
np.float64,0x7feb97a82d772f4f,0x7ff0000000000000,1
|
|
876
|
+
np.float64,0x9b4b4d953696a,0x9b4b4d953696a,1
|
|
877
|
+
np.float64,0x3fd1bd8e95237b1d,0x3fd4716dd34cf828,1
|
|
878
|
+
np.float64,0x800fc273841f84e7,0x800fc273841f84e7,1
|
|
879
|
+
np.float64,0xbfd2aef167255de2,0xbfd0340f30d82f18,1
|
|
880
|
+
np.float64,0x800d021a551a0435,0x800d021a551a0435,1
|
|
881
|
+
np.float64,0xffebf934a8b7f268,0xbff0000000000000,1
|
|
882
|
+
np.float64,0x3fd819849fb03308,0x3fdd43bca0aac749,1
|
|
883
|
+
np.float64,0x7ff8000000000000,0x7ff8000000000000,1
|
|
884
|
+
np.float64,0x27c34b064f86a,0x27c34b064f86a,1
|
|
885
|
+
np.float64,0x7fef4f5a373e9eb3,0x7ff0000000000000,1
|
|
886
|
+
np.float64,0x7fd92fccce325f99,0x7ff0000000000000,1
|
|
887
|
+
np.float64,0x800520869d6a410e,0x800520869d6a410e,1
|
|
888
|
+
np.float64,0x3fccbcaddf397958,0x3fd01bf6b0c4d97f,1
|
|
889
|
+
np.float64,0x80039ebfc4273d80,0x80039ebfc4273d80,1
|
|
890
|
+
np.float64,0xbfed1f0b3c7a3e16,0xbfe31ea6e4c69141,1
|
|
891
|
+
np.float64,0x7fee1bb7c4bc376f,0x7ff0000000000000,1
|
|
892
|
+
np.float64,0xbfa8bee1d8317dc0,0xbfa8283b7dbf95a9,1
|
|
893
|
+
np.float64,0x3fe797db606f2fb6,0x3ff171b1c2bc8fe5,1
|
|
894
|
+
np.float64,0xbfee2ecfdbbc5da0,0xbfe38a3f0a43d14e,1
|
|
895
|
+
np.float64,0x3fe815c7f1302b90,0x3ff1f65165c45d71,1
|
|
896
|
+
np.float64,0xbfbb265c94364cb8,0xbfb9c27ec61a9a1d,1
|
|
897
|
+
np.float64,0x3fcf1cab5d3e3957,0x3fd19c07444642f9,1
|
|
898
|
+
np.float64,0xbfe6ae753f6d5cea,0xbfe03f99666dbe17,1
|
|
899
|
+
np.float64,0xbfd18a2a73a31454,0xbfceaee204aca016,1
|
|
900
|
+
np.float64,0x3fb8a1dffc3143c0,0x3fb9db38341ab1a3,1
|
|
901
|
+
np.float64,0x7fd2a0376025406e,0x7ff0000000000000,1
|
|
902
|
+
np.float64,0x7fe718c0e3ae3181,0x7ff0000000000000,1
|
|
903
|
+
np.float64,0x3fb264d42424c9a8,0x3fb3121f071d4db4,1
|
|
904
|
+
np.float64,0xd27190a7a4e32,0xd27190a7a4e32,1
|
|
905
|
+
np.float64,0xbfe467668c68cecd,0xbfde2c4616738d5e,1
|
|
906
|
+
np.float64,0x800ab9a2b9357346,0x800ab9a2b9357346,1
|
|
907
|
+
np.float64,0x7fcbd108d537a211,0x7ff0000000000000,1
|
|
908
|
+
np.float64,0x3fb79bba6e2f3770,0x3fb8bb2c140d3445,1
|
|
909
|
+
np.float64,0xffefa7165e3f4e2c,0xbff0000000000000,1
|
|
910
|
+
np.float64,0x7fb40185a428030a,0x7ff0000000000000,1
|
|
911
|
+
np.float64,0xbfe9e3d58e73c7ab,0xbfe1c04d51c83d69,1
|
|
912
|
+
np.float64,0x7fef5b97b17eb72e,0x7ff0000000000000,1
|
|
913
|
+
np.float64,0x800a2957683452af,0x800a2957683452af,1
|
|
914
|
+
np.float64,0x800f54f1925ea9e3,0x800f54f1925ea9e3,1
|
|
915
|
+
np.float64,0xeffa4e77dff4a,0xeffa4e77dff4a,1
|
|
916
|
+
np.float64,0xffbe501aa03ca038,0xbff0000000000000,1
|
|
917
|
+
np.float64,0x8006c651bced8ca4,0x8006c651bced8ca4,1
|
|
918
|
+
np.float64,0x3fe159faff22b3f6,0x3fe708f78efbdbed,1
|
|
919
|
+
np.float64,0x800e7d59a31cfab3,0x800e7d59a31cfab3,1
|
|
920
|
+
np.float64,0x3fe6ac2f272d585e,0x3ff07ee5305385c3,1
|
|
921
|
+
np.float64,0x7fd014c054202980,0x7ff0000000000000,1
|
|
922
|
+
np.float64,0xbfe4800b11e90016,0xbfde4648c6f29ce5,1
|
|
923
|
+
np.float64,0xbfe6738470ece709,0xbfe0227b5b42b713,1
|
|
924
|
+
np.float64,0x3fed052add3a0a56,0x3ff7a01819e65c6e,1
|
|
925
|
+
np.float64,0xffe03106f120620e,0xbff0000000000000,1
|
|
926
|
+
np.float64,0x7fe11df4d4e23be9,0x7ff0000000000000,1
|
|
927
|
+
np.float64,0xbfcea25d7b3d44bc,0xbfcb3e808e7ce852,1
|
|
928
|
+
np.float64,0xd0807b03a1010,0xd0807b03a1010,1
|
|
929
|
+
np.float64,0x8004eda4fec9db4b,0x8004eda4fec9db4b,1
|
|
930
|
+
np.float64,0x3fceb5c98d3d6b90,0x3fd15a894b15dd9f,1
|
|
931
|
+
np.float64,0xbfee27228afc4e45,0xbfe38741702f3c0b,1
|
|
932
|
+
np.float64,0xbfe606278c6c0c4f,0xbfdfd7cb6093652d,1
|
|
933
|
+
np.float64,0xbfd66f59bc2cdeb4,0xbfd2ecb2297f6afc,1
|
|
934
|
+
np.float64,0x4aee390095dc8,0x4aee390095dc8,1
|
|
935
|
+
np.float64,0xbfe391355d67226a,0xbfdd46ddc0997014,1
|
|
936
|
+
np.float64,0xffd27765e7a4eecc,0xbff0000000000000,1
|
|
937
|
+
np.float64,0xbfe795e20a2f2bc4,0xbfe0afebc66c4dbd,1
|
|
938
|
+
np.float64,0x7fc9a62e81334c5c,0x7ff0000000000000,1
|
|
939
|
+
np.float64,0xffe4e57e52a9cafc,0xbff0000000000000,1
|
|
940
|
+
np.float64,0x7fac326c8c3864d8,0x7ff0000000000000,1
|
|
941
|
+
np.float64,0x3fe8675f6370cebf,0x3ff24d5863029c15,1
|
|
942
|
+
np.float64,0x7fcf4745e73e8e8b,0x7ff0000000000000,1
|
|
943
|
+
np.float64,0x7fcc9aec9f3935d8,0x7ff0000000000000,1
|
|
944
|
+
np.float64,0x3fec2e8fcab85d20,0x3ff699ccd0b2fed6,1
|
|
945
|
+
np.float64,0x3fd110a968222153,0x3fd38e81a88c2d13,1
|
|
946
|
+
np.float64,0xffb3a68532274d08,0xbff0000000000000,1
|
|
947
|
+
np.float64,0xf0e562bbe1cad,0xf0e562bbe1cad,1
|
|
948
|
+
np.float64,0xbfe815b9e5f02b74,0xbfe0ec9f5023aebc,1
|
|
949
|
+
np.float64,0xbf5151d88022a400,0xbf514f80c465feea,1
|
|
950
|
+
np.float64,0x2547e3144a8fd,0x2547e3144a8fd,1
|
|
951
|
+
np.float64,0x3fedcc0c28fb9818,0x3ff899612fbeb4c5,1
|
|
952
|
+
np.float64,0x3fdc3d1c0f387a38,0x3fe1bf6e2d39bd75,1
|
|
953
|
+
np.float64,0x7fe544dbe62a89b7,0x7ff0000000000000,1
|
|
954
|
+
np.float64,0x8001500e48e2a01d,0x8001500e48e2a01d,1
|
|
955
|
+
np.float64,0xbfed3b2b09fa7656,0xbfe329f3e7bada64,1
|
|
956
|
+
np.float64,0xbfe76a943aeed528,0xbfe09b24e3aa3f79,1
|
|
957
|
+
np.float64,0x3fe944330e328866,0x3ff33d472dee70c5,1
|
|
958
|
+
np.float64,0x8004bbbd6cc9777c,0x8004bbbd6cc9777c,1
|
|
959
|
+
np.float64,0xbfe28133fb650268,0xbfdc1ac230ac4ef5,1
|
|
960
|
+
np.float64,0xc1370af7826e2,0xc1370af7826e2,1
|
|
961
|
+
np.float64,0x7fcfa47f5f3f48fe,0x7ff0000000000000,1
|
|
962
|
+
np.float64,0xbfa3002a04260050,0xbfa2a703a538b54e,1
|
|
963
|
+
np.float64,0xffef44f3903e89e6,0xbff0000000000000,1
|
|
964
|
+
np.float64,0xc32cce298659a,0xc32cce298659a,1
|
|
965
|
+
np.float64,0x7b477cc2f68f0,0x7b477cc2f68f0,1
|
|
966
|
+
np.float64,0x40a7f4ec814ff,0x40a7f4ec814ff,1
|
|
967
|
+
np.float64,0xffee38edf67c71db,0xbff0000000000000,1
|
|
968
|
+
np.float64,0x3fe23f6f1ce47ede,0x3fe8992b8bb03499,1
|
|
969
|
+
np.float64,0x7fc8edfe7f31dbfc,0x7ff0000000000000,1
|
|
970
|
+
np.float64,0x800bb8e6fb3771ce,0x800bb8e6fb3771ce,1
|
|
971
|
+
np.float64,0xbfe11d364ee23a6c,0xbfda82a0c2ef9e46,1
|
|
972
|
+
np.float64,0xbfeb993cb4b7327a,0xbfe27df565da85dc,1
|
|
973
|
+
np.float64,0x10000000000000,0x10000000000000,1
|
|
974
|
+
np.float64,0x3fc1f997d723f330,0x3fc34c5cff060af1,1
|
|
975
|
+
np.float64,0x6e326fa0dc64f,0x6e326fa0dc64f,1
|
|
976
|
+
np.float64,0x800fa30c2c5f4618,0x800fa30c2c5f4618,1
|
|
977
|
+
np.float64,0x7fed16ad603a2d5a,0x7ff0000000000000,1
|
|
978
|
+
np.float64,0x9411cf172823a,0x9411cf172823a,1
|
|
979
|
+
np.float64,0xffece51d4cb9ca3a,0xbff0000000000000,1
|
|
980
|
+
np.float64,0x3fdda3d1453b47a3,0x3fe2d954f7849890,1
|
|
981
|
+
np.float64,0xffd58330172b0660,0xbff0000000000000,1
|
|
982
|
+
np.float64,0xbfc6962ae52d2c54,0xbfc4b4bdf0069f17,1
|
|
983
|
+
np.float64,0xbfb4010a8e280218,0xbfb33e1236f7efa0,1
|
|
984
|
+
np.float64,0x7fd0444909208891,0x7ff0000000000000,1
|
|
985
|
+
np.float64,0xbfe027a24de04f44,0xbfd95e9064101e7c,1
|
|
986
|
+
np.float64,0xa6f3f3214de9,0xa6f3f3214de9,1
|
|
987
|
+
np.float64,0xbfe112eb0fe225d6,0xbfda768f7cbdf346,1
|
|
988
|
+
np.float64,0xbfe99e90d4b33d22,0xbfe1a153e45a382a,1
|
|
989
|
+
np.float64,0xffecb34f8e79669e,0xbff0000000000000,1
|
|
990
|
+
np.float64,0xbfdf32c9653e6592,0xbfd8b159caf5633d,1
|
|
991
|
+
np.float64,0x3fe9519829b2a330,0x3ff34c0a8152e20f,1
|
|
992
|
+
np.float64,0xffd08ec8a7a11d92,0xbff0000000000000,1
|
|
993
|
+
np.float64,0xffd19b71b6a336e4,0xbff0000000000000,1
|
|
994
|
+
np.float64,0x7feda6b9377b4d71,0x7ff0000000000000,1
|
|
995
|
+
np.float64,0x800fda2956bfb453,0x800fda2956bfb453,1
|
|
996
|
+
np.float64,0x3fe54f601bea9ec0,0x3fee483cb03cbde4,1
|
|
997
|
+
np.float64,0xbfe2a8ad5ee5515a,0xbfdc46ee7a10bf0d,1
|
|
998
|
+
np.float64,0xbfd336c8bd266d92,0xbfd09916d432274a,1
|
|
999
|
+
np.float64,0xfff0000000000000,0xbff0000000000000,1
|
|
1000
|
+
np.float64,0x3fd9a811a9b35024,0x3fdf8fa68cc048e3,1
|
|
1001
|
+
np.float64,0x3fe078c68520f18d,0x3fe58aecc1f9649b,1
|
|
1002
|
+
np.float64,0xbfc6d5aa3a2dab54,0xbfc4e9ea84f3d73c,1
|
|
1003
|
+
np.float64,0xf9682007f2d04,0xf9682007f2d04,1
|
|
1004
|
+
np.float64,0x3fee54523dbca8a4,0x3ff947b826de81f4,1
|
|
1005
|
+
np.float64,0x80461e5d008c4,0x80461e5d008c4,1
|
|
1006
|
+
np.float64,0x3fdd6d12d5bada26,0x3fe2ade8dee2fa02,1
|
|
1007
|
+
np.float64,0x3fcd5f0dfd3abe18,0x3fd081d6cd25731d,1
|
|
1008
|
+
np.float64,0x7fa36475c826c8eb,0x7ff0000000000000,1
|
|
1009
|
+
np.float64,0xbfdf3ce052be79c0,0xbfd8b78baccfb908,1
|
|
1010
|
+
np.float64,0x7fcd890dd13b121b,0x7ff0000000000000,1
|
|
1011
|
+
np.float64,0x8000000000000001,0x8000000000000001,1
|
|
1012
|
+
np.float64,0x800ec0f4281d81e8,0x800ec0f4281d81e8,1
|
|
1013
|
+
np.float64,0xbfba960116352c00,0xbfb94085424496d9,1
|
|
1014
|
+
np.float64,0x3fdddedc9bbbbdb8,0x3fe30853fe4ef5ce,1
|
|
1015
|
+
np.float64,0x238092a847013,0x238092a847013,1
|
|
1016
|
+
np.float64,0xbfe38d4803271a90,0xbfdd429a955c46af,1
|
|
1017
|
+
np.float64,0xbfd4c9067329920c,0xbfd1bf6255ed91a4,1
|
|
1018
|
+
np.float64,0xbfbee213923dc428,0xbfbd17ce1bda6088,1
|
|
1019
|
+
np.float64,0xffd5a2d337ab45a6,0xbff0000000000000,1
|
|
1020
|
+
np.float64,0x7fe21bfcf82437f9,0x7ff0000000000000,1
|
|
1021
|
+
np.float64,0x3fe2a2714da544e3,0x3fe949594a74ea25,1
|
|
1022
|
+
np.float64,0x800e05cf8ebc0b9f,0x800e05cf8ebc0b9f,1
|
|
1023
|
+
np.float64,0x559a1526ab343,0x559a1526ab343,1
|
|
1024
|
+
np.float64,0xffe6a1b7906d436e,0xbff0000000000000,1
|
|
1025
|
+
np.float64,0xffef27d6253e4fab,0xbff0000000000000,1
|
|
1026
|
+
np.float64,0xbfe0f90ab0a1f216,0xbfda5828a1edde48,1
|
|
1027
|
+
np.float64,0x9675d2ab2cebb,0x9675d2ab2cebb,1
|
|
1028
|
+
np.float64,0xffee0f7eecfc1efd,0xbff0000000000000,1
|
|
1029
|
+
np.float64,0x2ec005625d801,0x2ec005625d801,1
|
|
1030
|
+
np.float64,0x7fde35ff14bc6bfd,0x7ff0000000000000,1
|
|
1031
|
+
np.float64,0xffe03f36d9e07e6d,0xbff0000000000000,1
|
|
1032
|
+
np.float64,0x7fe09ff7c4213fef,0x7ff0000000000000,1
|
|
1033
|
+
np.float64,0xffeac29dd1b5853b,0xbff0000000000000,1
|
|
1034
|
+
np.float64,0x3fb63120aa2c6241,0x3fb72ea3de98a853,1
|
|
1035
|
+
np.float64,0xffd079eb84a0f3d8,0xbff0000000000000,1
|
|
1036
|
+
np.float64,0xbfd3c2cc75a78598,0xbfd1005996880b3f,1
|
|
1037
|
+
np.float64,0x7fb80507ee300a0f,0x7ff0000000000000,1
|
|
1038
|
+
np.float64,0xffe8006105f000c1,0xbff0000000000000,1
|
|
1039
|
+
np.float64,0x8009138b0ab22716,0x8009138b0ab22716,1
|
|
1040
|
+
np.float64,0xbfd6dfb40b2dbf68,0xbfd33b8e4008e3b0,1
|
|
1041
|
+
np.float64,0xbfe7c2cf9bef859f,0xbfe0c55c807460df,1
|
|
1042
|
+
np.float64,0xbfe75fe4da6ebfca,0xbfe09600256d3b81,1
|
|
1043
|
+
np.float64,0xffd662fc73acc5f8,0xbff0000000000000,1
|
|
1044
|
+
np.float64,0x20b99dbc41735,0x20b99dbc41735,1
|
|
1045
|
+
np.float64,0x3fe10b38ade21671,0x3fe68229a9bbeefc,1
|
|
1046
|
+
np.float64,0x3743b99c6e878,0x3743b99c6e878,1
|
|
1047
|
+
np.float64,0xff9eb5ed903d6be0,0xbff0000000000000,1
|
|
1048
|
+
np.float64,0x3ff0000000000000,0x3ffb7e151628aed3,1
|
|
1049
|
+
np.float64,0xffb9e0569e33c0b0,0xbff0000000000000,1
|
|
1050
|
+
np.float64,0x7fd39c804fa73900,0x7ff0000000000000,1
|
|
1051
|
+
np.float64,0x3fe881ef67f103df,0x3ff269dd704b7129,1
|
|
1052
|
+
np.float64,0x1b6eb40236dd7,0x1b6eb40236dd7,1
|
|
1053
|
+
np.float64,0xbfe734ea432e69d4,0xbfe0813e6355d02f,1
|
|
1054
|
+
np.float64,0xffcf48f3743e91e8,0xbff0000000000000,1
|
|
1055
|
+
np.float64,0xffed10bcf6fa2179,0xbff0000000000000,1
|
|
1056
|
+
np.float64,0x3fef07723b7e0ee4,0x3ffa3156123f3c15,1
|
|
1057
|
+
np.float64,0xffe45c704aa8b8e0,0xbff0000000000000,1
|
|
1058
|
+
np.float64,0xb7b818d96f703,0xb7b818d96f703,1
|
|
1059
|
+
np.float64,0x42fcc04085f99,0x42fcc04085f99,1
|
|
1060
|
+
np.float64,0xbfda7ced01b4f9da,0xbfd5b0ce1e5524ae,1
|
|
1061
|
+
np.float64,0xbfe1e5963d63cb2c,0xbfdb6a87b6c09185,1
|
|
1062
|
+
np.float64,0x7fdfa18003bf42ff,0x7ff0000000000000,1
|
|
1063
|
+
np.float64,0xbfe3790a43e6f214,0xbfdd2c9a38b4f089,1
|
|
1064
|
+
np.float64,0xffe0ff5b9ae1feb6,0xbff0000000000000,1
|
|
1065
|
+
np.float64,0x80085a7d3110b4fb,0x80085a7d3110b4fb,1
|
|
1066
|
+
np.float64,0xffd6bfa6622d7f4c,0xbff0000000000000,1
|
|
1067
|
+
np.float64,0xbfef5ddc7cfebbb9,0xbfe3fe170521593e,1
|
|
1068
|
+
np.float64,0x3fc21773fa242ee8,0x3fc36ebda1f91a72,1
|
|
1069
|
+
np.float64,0x7fc04d98da209b31,0x7ff0000000000000,1
|
|
1070
|
+
np.float64,0xbfeba3b535b7476a,0xbfe282602e3c322e,1
|
|
1071
|
+
np.float64,0xffd41fb5c1a83f6c,0xbff0000000000000,1
|
|
1072
|
+
np.float64,0xf87d206df0fa4,0xf87d206df0fa4,1
|
|
1073
|
+
np.float64,0x800060946fc0c12a,0x800060946fc0c12a,1
|
|
1074
|
+
np.float64,0x3fe69d5f166d3abe,0x3ff06fdddcf4ca93,1
|
|
1075
|
+
np.float64,0x7fe9b5793b336af1,0x7ff0000000000000,1
|
|
1076
|
+
np.float64,0x7fe0dd4143e1ba82,0x7ff0000000000000,1
|
|
1077
|
+
np.float64,0xbfa8eaea3c31d5d0,0xbfa8522e397da3bd,1
|
|
1078
|
+
np.float64,0x119f0078233e1,0x119f0078233e1,1
|
|
1079
|
+
np.float64,0xbfd78a207aaf1440,0xbfd3b225bbf2ab4f,1
|
|
1080
|
+
np.float64,0xc66a6d4d8cd4e,0xc66a6d4d8cd4e,1
|
|
1081
|
+
np.float64,0xe7fc4b57cff8a,0xe7fc4b57cff8a,1
|
|
1082
|
+
np.float64,0x800883e8091107d0,0x800883e8091107d0,1
|
|
1083
|
+
np.float64,0x3fa6520c842ca419,0x3fa6d06e1041743a,1
|
|
1084
|
+
np.float64,0x3fa563182c2ac630,0x3fa5d70e27a84c97,1
|
|
1085
|
+
np.float64,0xe6a30b61cd462,0xe6a30b61cd462,1
|
|
1086
|
+
np.float64,0x3fee85dac37d0bb6,0x3ff987cfa41a9778,1
|
|
1087
|
+
np.float64,0x3fe8f621db71ec44,0x3ff2e7b768a2e9d0,1
|
|
1088
|
+
np.float64,0x800f231d861e463b,0x800f231d861e463b,1
|
|
1089
|
+
np.float64,0xbfe22eb07c645d61,0xbfdbbdbb853ab4c6,1
|
|
1090
|
+
np.float64,0x7fd2dda2dea5bb45,0x7ff0000000000000,1
|
|
1091
|
+
np.float64,0xbfd09b79a0a136f4,0xbfcd4147606ffd27,1
|
|
1092
|
+
np.float64,0xca039cc394074,0xca039cc394074,1
|
|
1093
|
+
np.float64,0x8000000000000000,0x8000000000000000,1
|
|
1094
|
+
np.float64,0xcb34575d9668b,0xcb34575d9668b,1
|
|
1095
|
+
np.float64,0x3fea62c1f3f4c584,0x3ff47e6dc67ec89f,1
|
|
1096
|
+
np.float64,0x7fe544c8606a8990,0x7ff0000000000000,1
|
|
1097
|
+
np.float64,0xffe0a980c4615301,0xbff0000000000000,1
|
|
1098
|
+
np.float64,0x3fdd67d5f8bacfac,0x3fe2a9c3421830f1,1
|
|
1099
|
+
np.float64,0xffe41d3dda283a7b,0xbff0000000000000,1
|
|
1100
|
+
np.float64,0xffeed59e5ffdab3c,0xbff0000000000000,1
|
|
1101
|
+
np.float64,0xffeeae8326fd5d05,0xbff0000000000000,1
|
|
1102
|
+
np.float64,0x800d70b4fa7ae16a,0x800d70b4fa7ae16a,1
|
|
1103
|
+
np.float64,0xffec932e6839265c,0xbff0000000000000,1
|
|
1104
|
+
np.float64,0xee30b185dc616,0xee30b185dc616,1
|
|
1105
|
+
np.float64,0x7fc3cf4397279e86,0x7ff0000000000000,1
|
|
1106
|
+
np.float64,0xbfeab34f1875669e,0xbfe21b868229de7d,1
|
|
1107
|
+
np.float64,0xf45f5f7de8bec,0xf45f5f7de8bec,1
|
|
1108
|
+
np.float64,0x3fad2c4b203a5896,0x3fae0528b568f3cf,1
|
|
1109
|
+
np.float64,0xbfe2479543e48f2a,0xbfdbd9e57cf64028,1
|
|
1110
|
+
np.float64,0x3fd41a1473283429,0x3fd79df2bc60debb,1
|
|
1111
|
+
np.float64,0x3febb5155ef76a2a,0x3ff608585afd698b,1
|
|
1112
|
+
np.float64,0xffe21f5303e43ea6,0xbff0000000000000,1
|
|
1113
|
+
np.float64,0x7fe9ef390833de71,0x7ff0000000000000,1
|
|
1114
|
+
np.float64,0xffe8ee873d71dd0e,0xbff0000000000000,1
|
|
1115
|
+
np.float64,0x7fd7cbc55e2f978a,0x7ff0000000000000,1
|
|
1116
|
+
np.float64,0x80081f9080d03f21,0x80081f9080d03f21,1
|
|
1117
|
+
np.float64,0x7fecbafc8b3975f8,0x7ff0000000000000,1
|
|
1118
|
+
np.float64,0x800b6c4b0b16d896,0x800b6c4b0b16d896,1
|
|
1119
|
+
np.float64,0xbfaa0fc2d4341f80,0xbfa968cdf32b98ad,1
|
|
1120
|
+
np.float64,0x3fec79fe4078f3fc,0x3ff6f5361a4a5d93,1
|
|
1121
|
+
np.float64,0xbfb14b79de2296f0,0xbfb0b93b75ecec11,1
|
|
1122
|
+
np.float64,0x800009d084c013a2,0x800009d084c013a2,1
|
|
1123
|
+
np.float64,0x4a4cdfe29499d,0x4a4cdfe29499d,1
|
|
1124
|
+
np.float64,0xbfe721c2d56e4386,0xbfe077f541987d76,1
|
|
1125
|
+
np.float64,0x3e5f539e7cbeb,0x3e5f539e7cbeb,1
|
|
1126
|
+
np.float64,0x3fd23f044c247e09,0x3fd51ceafcdd64aa,1
|
|
1127
|
+
np.float64,0x3fc70785b02e0f0b,0x3fc93b2a37eb342a,1
|
|
1128
|
+
np.float64,0xbfe7ab4ec7af569e,0xbfe0ba28eecbf6b0,1
|
|
1129
|
+
np.float64,0x800c1d4134583a83,0x800c1d4134583a83,1
|
|
1130
|
+
np.float64,0xffd9a73070334e60,0xbff0000000000000,1
|
|
1131
|
+
np.float64,0x68a4bf24d1499,0x68a4bf24d1499,1
|
|
1132
|
+
np.float64,0x7feba9d9507753b2,0x7ff0000000000000,1
|
|
1133
|
+
np.float64,0xbfe9d747db73ae90,0xbfe1bab53d932010,1
|
|
1134
|
+
np.float64,0x800a9a4aed953496,0x800a9a4aed953496,1
|
|
1135
|
+
np.float64,0xffcb89b0ad371360,0xbff0000000000000,1
|
|
1136
|
+
np.float64,0xbfc62388b82c4710,0xbfc4547be442a38c,1
|
|
1137
|
+
np.float64,0x800a006d187400db,0x800a006d187400db,1
|
|
1138
|
+
np.float64,0x3fcef2fbd33de5f8,0x3fd18177b2150148,1
|
|
1139
|
+
np.float64,0x8000b74e3da16e9d,0x8000b74e3da16e9d,1
|
|
1140
|
+
np.float64,0x25be536e4b7cb,0x25be536e4b7cb,1
|
|
1141
|
+
np.float64,0x3fa86e189430dc31,0x3fa905b4684c9f01,1
|
|
1142
|
+
np.float64,0xa7584b114eb0a,0xa7584b114eb0a,1
|
|
1143
|
+
np.float64,0x800331133c866227,0x800331133c866227,1
|
|
1144
|
+
np.float64,0x3fb52b48142a5690,0x3fb611a6f6e7c664,1
|
|
1145
|
+
np.float64,0x3fe825797cf04af2,0x3ff206fd60e98116,1
|
|
1146
|
+
np.float64,0x3fd0bec4e5217d8a,0x3fd323db3ffd59b2,1
|
|
1147
|
+
np.float64,0x907b43a120f7,0x907b43a120f7,1
|
|
1148
|
+
np.float64,0x3fed31eb1d3a63d6,0x3ff7d7a91c6930a4,1
|
|
1149
|
+
np.float64,0x7f97a13d782f427a,0x7ff0000000000000,1
|
|
1150
|
+
np.float64,0xffc7121a702e2434,0xbff0000000000000,1
|
|
1151
|
+
np.float64,0xbfe8bb4cbbf1769a,0xbfe139d7f46f1fb1,1
|
|
1152
|
+
np.float64,0xbfe3593cc5a6b27a,0xbfdd09ec91d6cd48,1
|
|
1153
|
+
np.float64,0x7fcff218ff9ff,0x7fcff218ff9ff,1
|
|
1154
|
+
np.float64,0x3fe73651d4ae6ca4,0x3ff10c5c1d21d127,1
|
|
1155
|
+
np.float64,0x80054e396eaa9c74,0x80054e396eaa9c74,1
|
|
1156
|
+
np.float64,0x3fe527d5f9aa4fac,0x3fedfb7743db9b53,1
|
|
1157
|
+
np.float64,0x7fec6f28c5f8de51,0x7ff0000000000000,1
|
|
1158
|
+
np.float64,0x3fcd2bbff53a5780,0x3fd061987416b49b,1
|
|
1159
|
+
np.float64,0xffd1f0046423e008,0xbff0000000000000,1
|
|
1160
|
+
np.float64,0x80034d97fac69b31,0x80034d97fac69b31,1
|
|
1161
|
+
np.float64,0x3faa803f14350080,0x3fab32e3f8073be4,1
|
|
1162
|
+
np.float64,0x3fcf8da0163f1b40,0x3fd1e42ba2354c8e,1
|
|
1163
|
+
np.float64,0x3fd573c2632ae785,0x3fd97c37609d18d7,1
|
|
1164
|
+
np.float64,0x7f922960482452c0,0x7ff0000000000000,1
|
|
1165
|
+
np.float64,0x800ebd0c5d3d7a19,0x800ebd0c5d3d7a19,1
|
|
1166
|
+
np.float64,0xbfee63b7807cc76f,0xbfe39ec7981035db,1
|
|
1167
|
+
np.float64,0xffdc023f8e380480,0xbff0000000000000,1
|
|
1168
|
+
np.float64,0x3fe3ffa02c67ff40,0x3febc7f8b900ceba,1
|
|
1169
|
+
np.float64,0x36c508b86d8a2,0x36c508b86d8a2,1
|
|
1170
|
+
np.float64,0x3fc9fbb0f133f760,0x3fcccee9f6ba801c,1
|
|
1171
|
+
np.float64,0x3fd75c1d5faeb83b,0x3fdc3150f9eff99e,1
|
|
1172
|
+
np.float64,0x3fe9a8d907b351b2,0x3ff3accc78a31df8,1
|
|
1173
|
+
np.float64,0x3fdd8fdcafbb1fb8,0x3fe2c97c97757994,1
|
|
1174
|
+
np.float64,0x3fb10c34ca22186a,0x3fb1a0cc42c76b86,1
|
|
1175
|
+
np.float64,0xbff0000000000000,0xbfe43a54e4e98864,1
|
|
1176
|
+
np.float64,0xffd046aefda08d5e,0xbff0000000000000,1
|
|
1177
|
+
np.float64,0x80067989758cf314,0x80067989758cf314,1
|
|
1178
|
+
np.float64,0x3fee9d77763d3aef,0x3ff9a67ff0841ba5,1
|
|
1179
|
+
np.float64,0xffe4d3cbf8e9a798,0xbff0000000000000,1
|
|
1180
|
+
np.float64,0x800f9cab273f3956,0x800f9cab273f3956,1
|
|
1181
|
+
np.float64,0x800a5c84f9f4b90a,0x800a5c84f9f4b90a,1
|
|
1182
|
+
np.float64,0x4fd377009fa8,0x4fd377009fa8,1
|
|
1183
|
+
np.float64,0xbfe7ba26af6f744e,0xbfe0c13ce45d6f95,1
|
|
1184
|
+
np.float64,0x609c8a86c1392,0x609c8a86c1392,1
|
|
1185
|
+
np.float64,0x7fe4d0296ea9a052,0x7ff0000000000000,1
|
|
1186
|
+
np.float64,0x59847bccb3090,0x59847bccb3090,1
|
|
1187
|
+
np.float64,0xbfdf944157bf2882,0xbfd8ed092bacad43,1
|
|
1188
|
+
np.float64,0xbfe7560a632eac15,0xbfe091405ec34973,1
|
|
1189
|
+
np.float64,0x3fea0699f4340d34,0x3ff415eb72089230,1
|
|
1190
|
+
np.float64,0x800a5533f374aa68,0x800a5533f374aa68,1
|
|
1191
|
+
np.float64,0xbf8e8cdb103d19c0,0xbf8e52cffcb83774,1
|
|
1192
|
+
np.float64,0x3fe87d9e52f0fb3d,0x3ff2653952344b81,1
|
|
1193
|
+
np.float64,0x7fca3950f73472a1,0x7ff0000000000000,1
|
|
1194
|
+
np.float64,0xffd5d1068aaba20e,0xbff0000000000000,1
|
|
1195
|
+
np.float64,0x3fd1a5f169a34be4,0x3fd4524b6ef17f91,1
|
|
1196
|
+
np.float64,0x3fdc4b95a8b8972c,0x3fe1caafd8652bf7,1
|
|
1197
|
+
np.float64,0x3fe333f65a6667ed,0x3fea502fb1f8a578,1
|
|
1198
|
+
np.float64,0xbfc117aaac222f54,0xbfc00018a4b84b6e,1
|
|
1199
|
+
np.float64,0x7fecf2efdf39e5df,0x7ff0000000000000,1
|
|
1200
|
+
np.float64,0x4e99d83e9d33c,0x4e99d83e9d33c,1
|
|
1201
|
+
np.float64,0x800d18937bda3127,0x800d18937bda3127,1
|
|
1202
|
+
np.float64,0x3fd6c67778ad8cef,0x3fdb5aba70a3ea9e,1
|
|
1203
|
+
np.float64,0x3fdbb71770b76e2f,0x3fe157ae8da20bc5,1
|
|
1204
|
+
np.float64,0xbfe9faf6ebf3f5ee,0xbfe1ca963d83f17f,1
|
|
1205
|
+
np.float64,0x80038850ac0710a2,0x80038850ac0710a2,1
|
|
1206
|
+
np.float64,0x8006beb72f8d7d6f,0x8006beb72f8d7d6f,1
|
|
1207
|
+
np.float64,0x3feead67bffd5acf,0x3ff9bb43e8b15e2f,1
|
|
1208
|
+
np.float64,0xbfd1174b89222e98,0xbfcdff9972799907,1
|
|
1209
|
+
np.float64,0x7fee2c077cfc580e,0x7ff0000000000000,1
|
|
1210
|
+
np.float64,0xbfbdbd904e3b7b20,0xbfbc13f4916ed466,1
|
|
1211
|
+
np.float64,0xffee47b8fe3c8f71,0xbff0000000000000,1
|
|
1212
|
+
np.float64,0xffd161884222c310,0xbff0000000000000,1
|
|
1213
|
+
np.float64,0xbfd42f27c4a85e50,0xbfd14fa8d67ba5ee,1
|
|
1214
|
+
np.float64,0x7fefffffffffffff,0x7ff0000000000000,1
|
|
1215
|
+
np.float64,0x8008151791b02a30,0x8008151791b02a30,1
|
|
1216
|
+
np.float64,0xbfba79029234f208,0xbfb926616cf41755,1
|
|
1217
|
+
np.float64,0x8004c486be29890e,0x8004c486be29890e,1
|
|
1218
|
+
np.float64,0x7fe5325a252a64b3,0x7ff0000000000000,1
|
|
1219
|
+
np.float64,0x5a880f04b5103,0x5a880f04b5103,1
|
|
1220
|
+
np.float64,0xbfe6f4b7702de96f,0xbfe06209002dd72c,1
|
|
1221
|
+
np.float64,0xbfdf8b3739bf166e,0xbfd8e783efe3c30f,1
|
|
1222
|
+
np.float64,0xbfe32571c8e64ae4,0xbfdcd128b9aa49a1,1
|
|
1223
|
+
np.float64,0xbfe97c98c172f932,0xbfe1920ac0fc040f,1
|
|
1224
|
+
np.float64,0x3fd0b513a2a16a28,0x3fd31744e3a1bf0a,1
|
|
1225
|
+
np.float64,0xffe3ab70832756e0,0xbff0000000000000,1
|
|
1226
|
+
np.float64,0x80030f055ce61e0b,0x80030f055ce61e0b,1
|
|
1227
|
+
np.float64,0xffd5f3b21b2be764,0xbff0000000000000,1
|
|
1228
|
+
np.float64,0x800c1f2d6c783e5b,0x800c1f2d6c783e5b,1
|
|
1229
|
+
np.float64,0x80075f4f148ebe9f,0x80075f4f148ebe9f,1
|
|
1230
|
+
np.float64,0xbfa5a046f42b4090,0xbfa52cfbf8992256,1
|
|
1231
|
+
np.float64,0xffd6702583ace04c,0xbff0000000000000,1
|
|
1232
|
+
np.float64,0x800dc0a5cf1b814c,0x800dc0a5cf1b814c,1
|
|
1233
|
+
np.float64,0x14f2203a29e45,0x14f2203a29e45,1
|
|
1234
|
+
np.float64,0x800421a40ee84349,0x800421a40ee84349,1
|
|
1235
|
+
np.float64,0xbfea7c279df4f84f,0xbfe2037fff3ed877,1
|
|
1236
|
+
np.float64,0xbfe9b41ddcf3683c,0xbfe1aafe18a44bf8,1
|
|
1237
|
+
np.float64,0xffe7b037022f606e,0xbff0000000000000,1
|
|
1238
|
+
np.float64,0x800bafb648775f6d,0x800bafb648775f6d,1
|
|
1239
|
+
np.float64,0x800b81681d5702d1,0x800b81681d5702d1,1
|
|
1240
|
+
np.float64,0x3fe29f8dc8653f1c,0x3fe9442da1c32c6b,1
|
|
1241
|
+
np.float64,0xffef9a05dc7f340b,0xbff0000000000000,1
|
|
1242
|
+
np.float64,0x800c8c65a65918cb,0x800c8c65a65918cb,1
|
|
1243
|
+
np.float64,0xffe99df0d5f33be1,0xbff0000000000000,1
|
|
1244
|
+
np.float64,0x9afeb22535fd7,0x9afeb22535fd7,1
|
|
1245
|
+
np.float64,0x7fc620dd822c41ba,0x7ff0000000000000,1
|
|
1246
|
+
np.float64,0x29c2cdf25385b,0x29c2cdf25385b,1
|
|
1247
|
+
np.float64,0x2d92284e5b246,0x2d92284e5b246,1
|
|
1248
|
+
np.float64,0xffc794aa942f2954,0xbff0000000000000,1
|
|
1249
|
+
np.float64,0xbfe7ed907eafdb21,0xbfe0d9a7b1442497,1
|
|
1250
|
+
np.float64,0xbfd4e0d4aea9c1aa,0xbfd1d09366dba2a7,1
|
|
1251
|
+
np.float64,0xa70412c34e083,0xa70412c34e083,1
|
|
1252
|
+
np.float64,0x41dc0ee083b9,0x41dc0ee083b9,1
|
|
1253
|
+
np.float64,0x8000ece20da1d9c5,0x8000ece20da1d9c5,1
|
|
1254
|
+
np.float64,0x3fdf3dae103e7b5c,0x3fe42314bf826bc5,1
|
|
1255
|
+
np.float64,0x3fe972533c72e4a6,0x3ff3703761e70f04,1
|
|
1256
|
+
np.float64,0xffba1d2b82343a58,0xbff0000000000000,1
|
|
1257
|
+
np.float64,0xe0086c83c010e,0xe0086c83c010e,1
|
|
1258
|
+
np.float64,0x3fe6fb0dde6df61c,0x3ff0cf5fae01aa08,1
|
|
1259
|
+
np.float64,0x3fcfaf057e3f5e0b,0x3fd1f98c1fd20139,1
|
|
1260
|
+
np.float64,0xbfdca19d9239433c,0xbfd7158745192ca9,1
|
|
1261
|
+
np.float64,0xffb17f394e22fe70,0xbff0000000000000,1
|
|
1262
|
+
np.float64,0x7fe40f05c7681e0b,0x7ff0000000000000,1
|
|
1263
|
+
np.float64,0x800b3c575d5678af,0x800b3c575d5678af,1
|
|
1264
|
+
np.float64,0x7fa4ab20ac295640,0x7ff0000000000000,1
|
|
1265
|
+
np.float64,0xbfd2fff4f6a5ffea,0xbfd07069bb50e1a6,1
|
|
1266
|
+
np.float64,0xbfef81b9147f0372,0xbfe40b845a749787,1
|
|
1267
|
+
np.float64,0x7fd7400e54ae801c,0x7ff0000000000000,1
|
|
1268
|
+
np.float64,0x3fd4401a17a88034,0x3fd7d20fb76a4f3d,1
|
|
1269
|
+
np.float64,0xbfd3e907fd27d210,0xbfd11c64b7577fc5,1
|
|
1270
|
+
np.float64,0x7fe34bed9ae697da,0x7ff0000000000000,1
|
|
1271
|
+
np.float64,0x80039119c0472234,0x80039119c0472234,1
|
|
1272
|
+
np.float64,0xbfe2e36ac565c6d6,0xbfdc88454ee997b3,1
|
|
1273
|
+
np.float64,0xbfec57204478ae40,0xbfe2cd3183de1d2d,1
|
|
1274
|
+
np.float64,0x7fed7e2a12fafc53,0x7ff0000000000000,1
|
|
1275
|
+
np.float64,0x7fd5c5fa7d2b8bf4,0x7ff0000000000000,1
|
|
1276
|
+
np.float64,0x3fdcf368d6b9e6d0,0x3fe24decce1ebd35,1
|
|
1277
|
+
np.float64,0xbfe0ebfcf2e1d7fa,0xbfda48c9247ae8cf,1
|
|
1278
|
+
np.float64,0xbfe10dbea2e21b7e,0xbfda707d68b59674,1
|
|
1279
|
+
np.float64,0xbfdf201b6ebe4036,0xbfd8a5df27742fdf,1
|
|
1280
|
+
np.float64,0xffe16555be62caab,0xbff0000000000000,1
|
|
1281
|
+
np.float64,0xffc23a5db22474bc,0xbff0000000000000,1
|
|
1282
|
+
np.float64,0xffe1cbb3f8a39768,0xbff0000000000000,1
|
|
1283
|
+
np.float64,0x8007b823be0f7048,0x8007b823be0f7048,1
|
|
1284
|
+
np.float64,0xbfa5d1f3042ba3e0,0xbfa55c97cd77bf6e,1
|
|
1285
|
+
np.float64,0xbfe316a074662d41,0xbfdcc0da4e7334d0,1
|
|
1286
|
+
np.float64,0xbfdfab2bf2bf5658,0xbfd8fb046b88b51f,1
|
|
1287
|
+
np.float64,0xfacc9dabf5994,0xfacc9dabf5994,1
|
|
1288
|
+
np.float64,0xffe7e420a4efc841,0xbff0000000000000,1
|
|
1289
|
+
np.float64,0x800bb986cd57730e,0x800bb986cd57730e,1
|
|
1290
|
+
np.float64,0xbfe314fa38e629f4,0xbfdcbf09302c3bf5,1
|
|
1291
|
+
np.float64,0x7fc56b17772ad62e,0x7ff0000000000000,1
|
|
1292
|
+
np.float64,0x8006a87d54ad50fb,0x8006a87d54ad50fb,1
|
|
1293
|
+
np.float64,0xbfe6633e4a6cc67c,0xbfe01a67c3b3ff32,1
|
|
1294
|
+
np.float64,0x3fe0ff56eb21feae,0x3fe66df01defb0fb,1
|
|
1295
|
+
np.float64,0xffc369cfc126d3a0,0xbff0000000000000,1
|
|
1296
|
+
np.float64,0x7fe8775d9a30eeba,0x7ff0000000000000,1
|
|
1297
|
+
np.float64,0x3fb53db13e2a7b60,0x3fb625a7279cdac3,1
|
|
1298
|
+
np.float64,0xffee76e7e6fcedcf,0xbff0000000000000,1
|
|
1299
|
+
np.float64,0xb45595b568ab3,0xb45595b568ab3,1
|
|
1300
|
+
np.float64,0xffa09a1d50213440,0xbff0000000000000,1
|
|
1301
|
+
np.float64,0x7d11dc16fa23c,0x7d11dc16fa23c,1
|
|
1302
|
+
np.float64,0x7fd4cc2928299851,0x7ff0000000000000,1
|
|
1303
|
+
np.float64,0x6a30e0ead461d,0x6a30e0ead461d,1
|
|
1304
|
+
np.float64,0x7fd3ee735a27dce6,0x7ff0000000000000,1
|
|
1305
|
+
np.float64,0x8008d7084b31ae11,0x8008d7084b31ae11,1
|
|
1306
|
+
np.float64,0x3fe469353fe8d26a,0x3fec8e7e2df38590,1
|
|
1307
|
+
np.float64,0x3fcecef2743d9de5,0x3fd16a888b715dfd,1
|
|
1308
|
+
np.float64,0x460130d68c027,0x460130d68c027,1
|
|
1309
|
+
np.float64,0xbfd76510c62eca22,0xbfd398766b741d6e,1
|
|
1310
|
+
np.float64,0x800ec88c2a5d9118,0x800ec88c2a5d9118,1
|
|
1311
|
+
np.float64,0x3fac969c6c392d40,0x3fad66ca6a1e583c,1
|
|
1312
|
+
np.float64,0x3fe5c616bf6b8c2e,0x3fef30f931e8dde5,1
|
|
1313
|
+
np.float64,0xb4cb6cd56996e,0xb4cb6cd56996e,1
|
|
1314
|
+
np.float64,0xffc3eacf8827d5a0,0xbff0000000000000,1
|
|
1315
|
+
np.float64,0x3fe1ceaf60e39d5f,0x3fe7d31e0a627cf9,1
|
|
1316
|
+
np.float64,0xffea69b42ff4d368,0xbff0000000000000,1
|
|
1317
|
+
np.float64,0x800ff8aef99ff15e,0x800ff8aef99ff15e,1
|
|
1318
|
+
np.float64,0x6c3953f0d872b,0x6c3953f0d872b,1
|
|
1319
|
+
np.float64,0x8007ca5a0d0f94b5,0x8007ca5a0d0f94b5,1
|
|
1320
|
+
np.float64,0x800993ce3ad3279d,0x800993ce3ad3279d,1
|
|
1321
|
+
np.float64,0x3fe5a4d1516b49a2,0x3feeef67b22ac65b,1
|
|
1322
|
+
np.float64,0x8003d7512a67aea3,0x8003d7512a67aea3,1
|
|
1323
|
+
np.float64,0x33864430670c9,0x33864430670c9,1
|
|
1324
|
+
np.float64,0xbfdbf477e3b7e8f0,0xbfd6a63f1b36f424,1
|
|
1325
|
+
np.float64,0x3fb5da92582bb525,0x3fb6d04ef1a1d31a,1
|
|
1326
|
+
np.float64,0xe38aae71c7156,0xe38aae71c7156,1
|
|
1327
|
+
np.float64,0x3fcaf5590a35eab2,0x3fce01ed6eb6188e,1
|
|
1328
|
+
np.float64,0x800deba9b05bd754,0x800deba9b05bd754,1
|
|
1329
|
+
np.float64,0x7fee0cde287c19bb,0x7ff0000000000000,1
|
|
1330
|
+
np.float64,0xbfe0c2ae70e1855d,0xbfda17fa64d84fcf,1
|
|
1331
|
+
np.float64,0x518618faa30c4,0x518618faa30c4,1
|
|
1332
|
+
np.float64,0xbfeb4c49b8769894,0xbfe25d52cd7e529f,1
|
|
1333
|
+
np.float64,0xbfeb3aa21b367544,0xbfe255cae1df4cfd,1
|
|
1334
|
+
np.float64,0xffd23f1c5d247e38,0xbff0000000000000,1
|
|
1335
|
+
np.float64,0xff9a75132034ea20,0xbff0000000000000,1
|
|
1336
|
+
np.float64,0xbfef9d96307f3b2c,0xbfe415e8b6ce0e50,1
|
|
1337
|
+
np.float64,0x8004046f2f0808df,0x8004046f2f0808df,1
|
|
1338
|
+
np.float64,0x3fe15871aea2b0e3,0x3fe706532ea5c770,1
|
|
1339
|
+
np.float64,0x7fd86b1576b0d62a,0x7ff0000000000000,1
|
|
1340
|
+
np.float64,0xbfc240a5c724814c,0xbfc102c7971ca455,1
|
|
1341
|
+
np.float64,0xffd8ea670bb1d4ce,0xbff0000000000000,1
|
|
1342
|
+
np.float64,0xbfeb1ddd1ff63bba,0xbfe2497c4e27bb8e,1
|
|
1343
|
+
np.float64,0x3fcd47e0a33a8fc1,0x3fd0734444150d83,1
|
|
1344
|
+
np.float64,0xe00b6a65c016e,0xe00b6a65c016e,1
|
|
1345
|
+
np.float64,0xbfc7d582142fab04,0xbfc5bf1fbe755a4c,1
|
|
1346
|
+
np.float64,0x8cc91ca11993,0x8cc91ca11993,1
|
|
1347
|
+
np.float64,0x7fdbc530e3b78a61,0x7ff0000000000000,1
|
|
1348
|
+
np.float64,0x7fee437522bc86e9,0x7ff0000000000000,1
|
|
1349
|
+
np.float64,0xffe9e09ae2b3c135,0xbff0000000000000,1
|
|
1350
|
+
np.float64,0x8002841cada5083a,0x8002841cada5083a,1
|
|
1351
|
+
np.float64,0x3fd6b485f8ad690c,0x3fdb412135932699,1
|
|
1352
|
+
np.float64,0x80070e8d0b0e1d1b,0x80070e8d0b0e1d1b,1
|
|
1353
|
+
np.float64,0x7fed5df165babbe2,0x7ff0000000000000,1
|
|
1354
|
+
np.float64,0x7ff4000000000000,0x7ffc000000000000,1
|
|
1355
|
+
np.float64,0x7fe99d08cd333a11,0x7ff0000000000000,1
|
|
1356
|
+
np.float64,0xdfff4201bfff,0xdfff4201bfff,1
|
|
1357
|
+
np.float64,0x800ccf7aaf999ef6,0x800ccf7aaf999ef6,1
|
|
1358
|
+
np.float64,0x3fddb05aad3b60b5,0x3fe2e34bdd1dd9d5,1
|
|
1359
|
+
np.float64,0xbfe5e1c60e6bc38c,0xbfdfb3275cc1675f,1
|
|
1360
|
+
np.float64,0x8004fe674269fccf,0x8004fe674269fccf,1
|
|
1361
|
+
np.float64,0x7fe9280363325006,0x7ff0000000000000,1
|
|
1362
|
+
np.float64,0xf605b9f1ec0b7,0xf605b9f1ec0b7,1
|
|
1363
|
+
np.float64,0x800c7c214018f843,0x800c7c214018f843,1
|
|
1364
|
+
np.float64,0x7fd97eb6b9b2fd6c,0x7ff0000000000000,1
|
|
1365
|
+
np.float64,0x7fd03f8fb6207f1e,0x7ff0000000000000,1
|
|
1366
|
+
np.float64,0x7fc526b64d2a4d6c,0x7ff0000000000000,1
|
|
1367
|
+
np.float64,0xbfef1a7c42fe34f9,0xbfe3e4b4399e0fcf,1
|
|
1368
|
+
np.float64,0xffdde10a2fbbc214,0xbff0000000000000,1
|
|
1369
|
+
np.float64,0xbfdd274f72ba4e9e,0xbfd76aa73788863c,1
|
|
1370
|
+
np.float64,0xbfecf7f77af9efef,0xbfe30ee2ae03fed1,1
|
|
1371
|
+
np.float64,0xffde709322bce126,0xbff0000000000000,1
|
|
1372
|
+
np.float64,0x268b5dac4d16d,0x268b5dac4d16d,1
|
|
1373
|
+
np.float64,0x8005c099606b8134,0x8005c099606b8134,1
|
|
1374
|
+
np.float64,0xffcf54c1593ea984,0xbff0000000000000,1
|
|
1375
|
+
np.float64,0xbfee9b8ebabd371d,0xbfe3b44f2663139d,1
|
|
1376
|
+
np.float64,0x3faf0330643e0661,0x3faff88fab74b447,1
|
|
1377
|
+
np.float64,0x7fe1c6011be38c01,0x7ff0000000000000,1
|
|
1378
|
+
np.float64,0xbfe9d58053b3ab01,0xbfe1b9ea12242485,1
|
|
1379
|
+
np.float64,0xbfe15a80fee2b502,0xbfdaca2aa7d1231a,1
|
|
1380
|
+
np.float64,0x7fe0d766d8a1aecd,0x7ff0000000000000,1
|
|
1381
|
+
np.float64,0x800f65e6a21ecbcd,0x800f65e6a21ecbcd,1
|
|
1382
|
+
np.float64,0x7fc85e45a530bc8a,0x7ff0000000000000,1
|
|
1383
|
+
np.float64,0x3fcc240e5438481d,0x3fcf7954fc080ac3,1
|
|
1384
|
+
np.float64,0xffddd49da2bba93c,0xbff0000000000000,1
|
|
1385
|
+
np.float64,0x1376f36c26edf,0x1376f36c26edf,1
|
|
1386
|
+
np.float64,0x3feffb7af17ff6f6,0x3ffb77f0ead2f881,1
|
|
1387
|
+
np.float64,0x3fd9354ea9b26a9d,0x3fdee4e4c8db8239,1
|
|
1388
|
+
np.float64,0xffdf7beed4bef7de,0xbff0000000000000,1
|
|
1389
|
+
np.float64,0xbfdef256ecbde4ae,0xbfd889b0e213a019,1
|
|
1390
|
+
np.float64,0x800d78bd1e7af17a,0x800d78bd1e7af17a,1
|
|
1391
|
+
np.float64,0xb66d66276cdad,0xb66d66276cdad,1
|
|
1392
|
+
np.float64,0x7fd8f51138b1ea21,0x7ff0000000000000,1
|
|
1393
|
+
np.float64,0xffe8c9c302b19385,0xbff0000000000000,1
|
|
1394
|
+
np.float64,0x8000be4cf5417c9b,0x8000be4cf5417c9b,1
|
|
1395
|
+
np.float64,0xbfe2293a25645274,0xbfdbb78a8c547c68,1
|
|
1396
|
+
np.float64,0xce8392c19d08,0xce8392c19d08,1
|
|
1397
|
+
np.float64,0xbfe075736b60eae7,0xbfd9bc0f6e34a283,1
|
|
1398
|
+
np.float64,0xbfe8d6fe6a71adfd,0xbfe1469ba80b4915,1
|
|
1399
|
+
np.float64,0xffe0c7993fa18f32,0xbff0000000000000,1
|
|
1400
|
+
np.float64,0x3fce5210fd3ca422,0x3fd11b40a1270a95,1
|
|
1401
|
+
np.float64,0x6c0534a8d80a7,0x6c0534a8d80a7,1
|
|
1402
|
+
np.float64,0x23c1823647831,0x23c1823647831,1
|
|
1403
|
+
np.float64,0x3fc901253732024a,0x3fcb9d264accb07c,1
|
|
1404
|
+
np.float64,0x3fe42b8997685714,0x3fec1a39e207b6e4,1
|
|
1405
|
+
np.float64,0x3fec4fd00fb89fa0,0x3ff6c1fdd0c262c8,1
|
|
1406
|
+
np.float64,0x8007b333caaf6668,0x8007b333caaf6668,1
|
|
1407
|
+
np.float64,0x800f9275141f24ea,0x800f9275141f24ea,1
|
|
1408
|
+
np.float64,0xffbba361a23746c0,0xbff0000000000000,1
|
|
1409
|
+
np.float64,0xbfee4effa9fc9dff,0xbfe396c11d0cd524,1
|
|
1410
|
+
np.float64,0x3e47e84c7c8fe,0x3e47e84c7c8fe,1
|
|
1411
|
+
np.float64,0x3fe80eb7b1301d6f,0x3ff1eed318a00153,1
|
|
1412
|
+
np.float64,0x7fd3f4c5b4a7e98a,0x7ff0000000000000,1
|
|
1413
|
+
np.float64,0x158abab02b158,0x158abab02b158,1
|
|
1414
|
+
np.float64,0x1,0x1,1
|
|
1415
|
+
np.float64,0x1f1797883e2f4,0x1f1797883e2f4,1
|
|
1416
|
+
np.float64,0x3feec055d03d80ac,0x3ff9d3fb0394de33,1
|
|
1417
|
+
np.float64,0x8010000000000000,0x8010000000000000,1
|
|
1418
|
+
np.float64,0xbfd070860ea0e10c,0xbfccfeec2828efef,1
|
|
1419
|
+
np.float64,0x80015c8b3e82b917,0x80015c8b3e82b917,1
|
|
1420
|
+
np.float64,0xffef9956d9ff32ad,0xbff0000000000000,1
|
|
1421
|
+
np.float64,0x7fe7f087dd2fe10f,0x7ff0000000000000,1
|
|
1422
|
+
np.float64,0x8002e7718665cee4,0x8002e7718665cee4,1
|
|
1423
|
+
np.float64,0x3fdfb9adb2bf735c,0x3fe4887a86214c1e,1
|
|
1424
|
+
np.float64,0xffc7747dfb2ee8fc,0xbff0000000000000,1
|
|
1425
|
+
np.float64,0x3fec309bb5386137,0x3ff69c44e1738547,1
|
|
1426
|
+
np.float64,0xffdbe2bf9ab7c580,0xbff0000000000000,1
|
|
1427
|
+
np.float64,0xbfe6a274daed44ea,0xbfe039aff2be9d48,1
|
|
1428
|
+
np.float64,0x7fd5a4e4efab49c9,0x7ff0000000000000,1
|
|
1429
|
+
np.float64,0xffbe6aaeb03cd560,0xbff0000000000000,1
|