numpy 2.4.0__cp313-cp313t-musllinux_1_2_aarch64.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.
- numpy/__config__.py +170 -0
- numpy/__config__.pyi +108 -0
- numpy/__init__.cython-30.pxd +1242 -0
- numpy/__init__.pxd +1155 -0
- numpy/__init__.py +942 -0
- numpy/__init__.pyi +6202 -0
- numpy/_array_api_info.py +346 -0
- numpy/_array_api_info.pyi +206 -0
- numpy/_configtool.py +39 -0
- numpy/_configtool.pyi +1 -0
- numpy/_core/__init__.py +201 -0
- numpy/_core/__init__.pyi +666 -0
- numpy/_core/_add_newdocs.py +7151 -0
- numpy/_core/_add_newdocs.pyi +2 -0
- numpy/_core/_add_newdocs_scalars.py +381 -0
- numpy/_core/_add_newdocs_scalars.pyi +16 -0
- numpy/_core/_asarray.py +130 -0
- numpy/_core/_asarray.pyi +43 -0
- numpy/_core/_dtype.py +366 -0
- numpy/_core/_dtype.pyi +56 -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 +54 -0
- numpy/_core/_internal.py +968 -0
- numpy/_core/_internal.pyi +61 -0
- numpy/_core/_methods.py +252 -0
- numpy/_core/_methods.pyi +22 -0
- numpy/_core/_multiarray_tests.cpython-313t-aarch64-linux-musl.so +0 -0
- numpy/_core/_multiarray_umath.cpython-313t-aarch64-linux-musl.so +0 -0
- numpy/_core/_operand_flag_tests.cpython-313t-aarch64-linux-musl.so +0 -0
- numpy/_core/_rational_tests.cpython-313t-aarch64-linux-musl.so +0 -0
- numpy/_core/_simd.cpython-313t-aarch64-linux-musl.so +0 -0
- numpy/_core/_simd.pyi +35 -0
- numpy/_core/_string_helpers.py +100 -0
- numpy/_core/_string_helpers.pyi +12 -0
- numpy/_core/_struct_ufunc_tests.cpython-313t-aarch64-linux-musl.so +0 -0
- numpy/_core/_type_aliases.py +131 -0
- numpy/_core/_type_aliases.pyi +86 -0
- numpy/_core/_ufunc_config.py +515 -0
- numpy/_core/_ufunc_config.pyi +69 -0
- numpy/_core/_umath_tests.cpython-313t-aarch64-linux-musl.so +0 -0
- numpy/_core/_umath_tests.pyi +47 -0
- numpy/_core/arrayprint.py +1779 -0
- numpy/_core/arrayprint.pyi +158 -0
- numpy/_core/cversions.py +13 -0
- numpy/_core/defchararray.py +1414 -0
- numpy/_core/defchararray.pyi +1150 -0
- numpy/_core/einsumfunc.py +1650 -0
- numpy/_core/einsumfunc.pyi +184 -0
- numpy/_core/fromnumeric.py +4233 -0
- numpy/_core/fromnumeric.pyi +1735 -0
- numpy/_core/function_base.py +547 -0
- numpy/_core/function_base.pyi +276 -0
- numpy/_core/getlimits.py +462 -0
- numpy/_core/getlimits.pyi +124 -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 +55 -0
- numpy/_core/include/numpy/__ufunc_api.h +349 -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 +198 -0
- numpy/_core/include/numpy/dtype_api.h +547 -0
- numpy/_core/include/numpy/halffloat.h +70 -0
- numpy/_core/include/numpy/ndarrayobject.h +304 -0
- numpy/_core/include/numpy/ndarraytypes.h +1982 -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 +989 -0
- numpy/_core/include/numpy/npy_cpu.h +126 -0
- numpy/_core/include/numpy/npy_endian.h +79 -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 +185 -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 +1740 -0
- numpy/_core/multiarray.pyi +1316 -0
- numpy/_core/numeric.py +2758 -0
- numpy/_core/numeric.pyi +1276 -0
- numpy/_core/numerictypes.py +633 -0
- numpy/_core/numerictypes.pyi +196 -0
- numpy/_core/overrides.py +188 -0
- numpy/_core/overrides.pyi +47 -0
- numpy/_core/printoptions.py +32 -0
- numpy/_core/printoptions.pyi +28 -0
- numpy/_core/records.py +1088 -0
- numpy/_core/records.pyi +340 -0
- numpy/_core/shape_base.py +996 -0
- numpy/_core/shape_base.pyi +182 -0
- numpy/_core/strings.py +1813 -0
- numpy/_core/strings.pyi +536 -0
- numpy/_core/tests/_locales.py +72 -0
- numpy/_core/tests/_natype.py +144 -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 +655 -0
- numpy/_core/tests/test_argparse.py +90 -0
- numpy/_core/tests/test_array_api_info.py +113 -0
- numpy/_core/tests/test_array_coercion.py +928 -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 +1324 -0
- numpy/_core/tests/test_casting_floatingpoint_errors.py +154 -0
- numpy/_core/tests/test_casting_unittests.py +955 -0
- numpy/_core/tests/test_conversion_utils.py +209 -0
- numpy/_core/tests/test_cpu_dispatcher.py +48 -0
- numpy/_core/tests/test_cpu_features.py +450 -0
- numpy/_core/tests/test_custom_dtypes.py +393 -0
- numpy/_core/tests/test_cython.py +352 -0
- numpy/_core/tests/test_datetime.py +2792 -0
- numpy/_core/tests/test_defchararray.py +858 -0
- numpy/_core/tests/test_deprecations.py +460 -0
- numpy/_core/tests/test_dlpack.py +190 -0
- numpy/_core/tests/test_dtype.py +2110 -0
- numpy/_core/tests/test_einsum.py +1351 -0
- numpy/_core/tests/test_errstate.py +131 -0
- numpy/_core/tests/test_extint128.py +217 -0
- numpy/_core/tests/test_finfo.py +86 -0
- numpy/_core/tests/test_function_base.py +504 -0
- numpy/_core/tests/test_getlimits.py +171 -0
- numpy/_core/tests/test_half.py +593 -0
- numpy/_core/tests/test_hashtable.py +36 -0
- numpy/_core/tests/test_indexerrors.py +122 -0
- numpy/_core/tests/test_indexing.py +1692 -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 +370 -0
- numpy/_core/tests/test_mem_overlap.py +933 -0
- numpy/_core/tests/test_mem_policy.py +453 -0
- numpy/_core/tests/test_memmap.py +248 -0
- numpy/_core/tests/test_multiarray.py +11008 -0
- numpy/_core/tests/test_multiprocessing.py +55 -0
- numpy/_core/tests/test_multithreading.py +353 -0
- numpy/_core/tests/test_nditer.py +3533 -0
- numpy/_core/tests/test_nep50_promotions.py +287 -0
- numpy/_core/tests/test_numeric.py +4295 -0
- numpy/_core/tests/test_numerictypes.py +650 -0
- numpy/_core/tests/test_overrides.py +800 -0
- numpy/_core/tests/test_print.py +202 -0
- numpy/_core/tests/test_protocols.py +46 -0
- numpy/_core/tests/test_records.py +544 -0
- numpy/_core/tests/test_regression.py +2677 -0
- numpy/_core/tests/test_scalar_ctors.py +203 -0
- numpy/_core/tests/test_scalar_methods.py +328 -0
- numpy/_core/tests/test_scalarbuffer.py +153 -0
- numpy/_core/tests/test_scalarinherit.py +105 -0
- numpy/_core/tests/test_scalarmath.py +1168 -0
- numpy/_core/tests/test_scalarprint.py +403 -0
- numpy/_core/tests/test_shape_base.py +904 -0
- numpy/_core/tests/test_simd.py +1345 -0
- numpy/_core/tests/test_simd_module.py +105 -0
- numpy/_core/tests/test_stringdtype.py +1855 -0
- numpy/_core/tests/test_strings.py +1515 -0
- numpy/_core/tests/test_ufunc.py +3405 -0
- numpy/_core/tests/test_umath.py +4962 -0
- numpy/_core/tests/test_umath_accuracy.py +132 -0
- numpy/_core/tests/test_umath_complex.py +631 -0
- numpy/_core/tests/test_unicode.py +369 -0
- numpy/_core/umath.py +60 -0
- numpy/_core/umath.pyi +232 -0
- numpy/_distributor_init.py +15 -0
- numpy/_distributor_init.pyi +1 -0
- numpy/_expired_attrs_2_0.py +78 -0
- numpy/_expired_attrs_2_0.pyi +61 -0
- numpy/_globals.py +121 -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 +6 -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 +173 -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 +39 -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 +975 -0
- numpy/_utils/__init__.py +95 -0
- numpy/_utils/__init__.pyi +28 -0
- numpy/_utils/_convertions.py +18 -0
- numpy/_utils/_convertions.pyi +4 -0
- numpy/_utils/_inspect.py +192 -0
- numpy/_utils/_inspect.pyi +70 -0
- numpy/_utils/_pep440.py +486 -0
- numpy/_utils/_pep440.pyi +118 -0
- numpy/char/__init__.py +2 -0
- numpy/char/__init__.pyi +111 -0
- numpy/conftest.py +248 -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 +15 -0
- numpy/ctypeslib/_ctypeslib.py +603 -0
- numpy/ctypeslib/_ctypeslib.pyi +236 -0
- numpy/doc/ufuncs.py +138 -0
- numpy/dtypes.py +41 -0
- numpy/dtypes.pyi +630 -0
- numpy/exceptions.py +246 -0
- numpy/exceptions.pyi +27 -0
- numpy/f2py/__init__.py +86 -0
- numpy/f2py/__init__.pyi +5 -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 +244 -0
- numpy/f2py/_backends/_meson.pyi +62 -0
- numpy/f2py/_backends/meson.build.template +58 -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 +28 -0
- numpy/f2py/auxfuncs.py +1004 -0
- numpy/f2py/auxfuncs.pyi +262 -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 +266 -0
- numpy/f2py/diagnose.py +149 -0
- numpy/f2py/diagnose.pyi +1 -0
- numpy/f2py/f2py2e.py +788 -0
- numpy/f2py/f2py2e.pyi +74 -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 +41 -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 +1518 -0
- numpy/f2py/symbolic.pyi +219 -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 +66 -0
- numpy/f2py/tests/test_f2cmap.py +17 -0
- numpy/f2py/tests/test_f2py2e.py +983 -0
- numpy/f2py/tests/test_isoc.py +56 -0
- numpy/f2py/tests/test_kind.py +52 -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 +500 -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 +213 -0
- numpy/fft/__init__.pyi +38 -0
- numpy/fft/_helper.py +235 -0
- numpy/fft/_helper.pyi +44 -0
- numpy/fft/_pocketfft.py +1693 -0
- numpy/fft/_pocketfft.pyi +137 -0
- numpy/fft/_pocketfft_umath.cpython-313t-aarch64-linux-musl.so +0 -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 +52 -0
- numpy/lib/_array_utils_impl.py +62 -0
- numpy/lib/_array_utils_impl.pyi +10 -0
- numpy/lib/_arraypad_impl.py +926 -0
- numpy/lib/_arraypad_impl.pyi +88 -0
- numpy/lib/_arraysetops_impl.py +1158 -0
- numpy/lib/_arraysetops_impl.pyi +462 -0
- numpy/lib/_arrayterator_impl.py +224 -0
- numpy/lib/_arrayterator_impl.pyi +45 -0
- numpy/lib/_datasource.py +700 -0
- numpy/lib/_datasource.pyi +30 -0
- numpy/lib/_format_impl.py +1036 -0
- numpy/lib/_format_impl.pyi +56 -0
- numpy/lib/_function_base_impl.py +5758 -0
- numpy/lib/_function_base_impl.pyi +2324 -0
- numpy/lib/_histograms_impl.py +1085 -0
- numpy/lib/_histograms_impl.pyi +40 -0
- numpy/lib/_index_tricks_impl.py +1048 -0
- numpy/lib/_index_tricks_impl.pyi +267 -0
- numpy/lib/_iotools.py +900 -0
- numpy/lib/_iotools.pyi +116 -0
- numpy/lib/_nanfunctions_impl.py +2001 -0
- numpy/lib/_nanfunctions_impl.pyi +48 -0
- numpy/lib/_npyio_impl.py +2583 -0
- numpy/lib/_npyio_impl.pyi +299 -0
- numpy/lib/_polynomial_impl.py +1465 -0
- numpy/lib/_polynomial_impl.pyi +338 -0
- numpy/lib/_scimath_impl.py +642 -0
- numpy/lib/_scimath_impl.pyi +93 -0
- numpy/lib/_shape_base_impl.py +1289 -0
- numpy/lib/_shape_base_impl.pyi +236 -0
- numpy/lib/_stride_tricks_impl.py +582 -0
- numpy/lib/_stride_tricks_impl.pyi +73 -0
- numpy/lib/_twodim_base_impl.py +1201 -0
- numpy/lib/_twodim_base_impl.pyi +408 -0
- numpy/lib/_type_check_impl.py +710 -0
- numpy/lib/_type_check_impl.pyi +348 -0
- numpy/lib/_ufunclike_impl.py +199 -0
- numpy/lib/_ufunclike_impl.pyi +60 -0
- numpy/lib/_user_array_impl.py +310 -0
- numpy/lib/_user_array_impl.pyi +226 -0
- numpy/lib/_utils_impl.py +784 -0
- numpy/lib/_utils_impl.pyi +22 -0
- numpy/lib/_version.py +153 -0
- numpy/lib/_version.pyi +17 -0
- numpy/lib/array_utils.py +7 -0
- numpy/lib/array_utils.pyi +6 -0
- numpy/lib/format.py +24 -0
- numpy/lib/format.pyi +24 -0
- numpy/lib/introspect.py +94 -0
- numpy/lib/introspect.pyi +3 -0
- numpy/lib/mixins.py +180 -0
- numpy/lib/mixins.pyi +78 -0
- numpy/lib/npyio.py +1 -0
- numpy/lib/npyio.pyi +5 -0
- numpy/lib/recfunctions.py +1681 -0
- numpy/lib/recfunctions.pyi +444 -0
- numpy/lib/scimath.py +13 -0
- numpy/lib/scimath.pyi +12 -0
- numpy/lib/stride_tricks.py +1 -0
- numpy/lib/stride_tricks.pyi +4 -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 +328 -0
- numpy/lib/tests/test__iotools.py +358 -0
- numpy/lib/tests/test__version.py +64 -0
- numpy/lib/tests/test_array_utils.py +32 -0
- numpy/lib/tests/test_arraypad.py +1427 -0
- numpy/lib/tests/test_arraysetops.py +1302 -0
- numpy/lib/tests/test_arrayterator.py +45 -0
- numpy/lib/tests/test_format.py +1054 -0
- numpy/lib/tests/test_function_base.py +4705 -0
- numpy/lib/tests/test_histograms.py +855 -0
- numpy/lib/tests/test_index_tricks.py +693 -0
- numpy/lib/tests/test_io.py +2857 -0
- numpy/lib/tests/test_loadtxt.py +1099 -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 +325 -0
- numpy/lib/tests/test_recfunctions.py +1042 -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 +655 -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 +95 -0
- numpy/linalg/__init__.pyi +71 -0
- numpy/linalg/_linalg.py +3657 -0
- numpy/linalg/_linalg.pyi +548 -0
- numpy/linalg/_umath_linalg.cpython-313t-aarch64-linux-musl.so +0 -0
- numpy/linalg/_umath_linalg.pyi +60 -0
- numpy/linalg/lapack_lite.cpython-313t-aarch64-linux-musl.so +0 -0
- numpy/linalg/lapack_lite.pyi +143 -0
- numpy/linalg/tests/__init__.py +0 -0
- numpy/linalg/tests/test_deprecations.py +21 -0
- numpy/linalg/tests/test_linalg.py +2442 -0
- numpy/linalg/tests/test_regression.py +182 -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 +8929 -0
- numpy/ma/core.pyi +3720 -0
- numpy/ma/extras.py +2266 -0
- numpy/ma/extras.pyi +297 -0
- numpy/ma/mrecords.py +762 -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 +6008 -0
- numpy/ma/tests/test_deprecations.py +65 -0
- numpy/ma/tests/test_extras.py +1945 -0
- numpy/ma/tests/test_mrecords.py +495 -0
- numpy/ma/tests/test_old_ma.py +939 -0
- numpy/ma/tests/test_regression.py +83 -0
- numpy/ma/tests/test_subclassing.py +469 -0
- numpy/ma/testutils.py +294 -0
- numpy/ma/testutils.pyi +69 -0
- numpy/matlib.py +380 -0
- numpy/matlib.pyi +580 -0
- numpy/matrixlib/__init__.py +12 -0
- numpy/matrixlib/__init__.pyi +3 -0
- numpy/matrixlib/defmatrix.py +1119 -0
- numpy/matrixlib/defmatrix.pyi +218 -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 +110 -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 +31 -0
- numpy/polynomial/_polybase.py +1191 -0
- numpy/polynomial/_polybase.pyi +262 -0
- numpy/polynomial/_polytypes.pyi +501 -0
- numpy/polynomial/chebyshev.py +2001 -0
- numpy/polynomial/chebyshev.pyi +180 -0
- numpy/polynomial/hermite.py +1738 -0
- numpy/polynomial/hermite.pyi +106 -0
- numpy/polynomial/hermite_e.py +1640 -0
- numpy/polynomial/hermite_e.pyi +106 -0
- numpy/polynomial/laguerre.py +1673 -0
- numpy/polynomial/laguerre.pyi +100 -0
- numpy/polynomial/legendre.py +1603 -0
- numpy/polynomial/legendre.pyi +100 -0
- numpy/polynomial/polynomial.py +1625 -0
- numpy/polynomial/polynomial.pyi +109 -0
- numpy/polynomial/polyutils.py +759 -0
- numpy/polynomial/polyutils.pyi +307 -0
- numpy/polynomial/tests/__init__.py +0 -0
- numpy/polynomial/tests/test_chebyshev.py +618 -0
- numpy/polynomial/tests/test_classes.py +613 -0
- numpy/polynomial/tests/test_hermite.py +553 -0
- numpy/polynomial/tests/test_hermite_e.py +554 -0
- numpy/polynomial/tests/test_laguerre.py +535 -0
- numpy/polynomial/tests/test_legendre.py +566 -0
- numpy/polynomial/tests/test_polynomial.py +691 -0
- numpy/polynomial/tests/test_polyutils.py +123 -0
- numpy/polynomial/tests/test_printing.py +557 -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-313t-aarch64-linux-musl.so +0 -0
- numpy/random/_bounded_integers.pxd +29 -0
- numpy/random/_bounded_integers.pyi +1 -0
- numpy/random/_common.cpython-313t-aarch64-linux-musl.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 +117 -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-313t-aarch64-linux-musl.so +0 -0
- numpy/random/_generator.pyi +862 -0
- numpy/random/_mt19937.cpython-313t-aarch64-linux-musl.so +0 -0
- numpy/random/_mt19937.pyi +27 -0
- numpy/random/_pcg64.cpython-313t-aarch64-linux-musl.so +0 -0
- numpy/random/_pcg64.pyi +41 -0
- numpy/random/_philox.cpython-313t-aarch64-linux-musl.so +0 -0
- numpy/random/_philox.pyi +36 -0
- numpy/random/_pickle.py +88 -0
- numpy/random/_pickle.pyi +43 -0
- numpy/random/_sfc64.cpython-313t-aarch64-linux-musl.so +0 -0
- numpy/random/_sfc64.pyi +25 -0
- numpy/random/bit_generator.cpython-313t-aarch64-linux-musl.so +0 -0
- numpy/random/bit_generator.pxd +35 -0
- numpy/random/bit_generator.pyi +123 -0
- numpy/random/c_distributions.pxd +119 -0
- numpy/random/lib/libnpyrandom.a +0 -0
- numpy/random/mtrand.cpython-313t-aarch64-linux-musl.so +0 -0
- numpy/random/mtrand.pyi +759 -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 +595 -0
- numpy/random/tests/test_extending.py +131 -0
- numpy/random/tests/test_generator_mt19937.py +2825 -0
- numpy/random/tests/test_generator_mt19937_regressions.py +221 -0
- numpy/random/tests/test_random.py +1724 -0
- numpy/random/tests/test_randomstate.py +2099 -0
- numpy/random/tests/test_randomstate_regression.py +213 -0
- numpy/random/tests/test_regression.py +175 -0
- numpy/random/tests/test_seed_sequence.py +79 -0
- numpy/random/tests/test_smoke.py +882 -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 +107 -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 +2830 -0
- numpy/testing/_private/utils.pyi +505 -0
- numpy/testing/overrides.py +84 -0
- numpy/testing/overrides.pyi +10 -0
- numpy/testing/print_coercion_tables.py +207 -0
- numpy/testing/print_coercion_tables.pyi +26 -0
- numpy/testing/tests/__init__.py +0 -0
- numpy/testing/tests/test_utils.py +2123 -0
- numpy/tests/__init__.py +0 -0
- numpy/tests/test__all__.py +10 -0
- numpy/tests/test_configtool.py +51 -0
- numpy/tests/test_ctypeslib.py +383 -0
- numpy/tests/test_lazyloading.py +42 -0
- numpy/tests/test_matlib.py +59 -0
- numpy/tests/test_numpy_config.py +47 -0
- numpy/tests/test_numpy_version.py +54 -0
- numpy/tests/test_public_api.py +804 -0
- numpy/tests/test_reloading.py +76 -0
- numpy/tests/test_scripts.py +48 -0
- numpy/tests/test_warnings.py +79 -0
- numpy/typing/__init__.py +233 -0
- numpy/typing/__init__.pyi +3 -0
- numpy/typing/mypy_plugin.py +200 -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 +15 -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 +63 -0
- numpy/typing/tests/data/fail/chararray.pyi +61 -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 +16 -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 +38 -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 +60 -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 +52 -0
- numpy/typing/tests/data/fail/ma.pyi +155 -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 +49 -0
- numpy/typing/tests/data/fail/nditer.pyi +8 -0
- numpy/typing/tests/data/fail/nested_sequence.pyi +17 -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 +86 -0
- numpy/typing/tests/data/fail/shape.pyi +7 -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 +39 -0
- numpy/typing/tests/data/fail/type_check.pyi +12 -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 +8 -0
- numpy/typing/tests/data/pass/arithmetic.py +614 -0
- numpy/typing/tests/data/pass/array_constructors.py +138 -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 +28 -0
- numpy/typing/tests/data/pass/bitwise_ops.py +131 -0
- numpy/typing/tests/data/pass/comparisons.py +316 -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 +26 -0
- numpy/typing/tests/data/pass/fromnumeric.py +272 -0
- numpy/typing/tests/data/pass/index_tricks.py +62 -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 +52 -0
- numpy/typing/tests/data/pass/ma.py +199 -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 +77 -0
- numpy/typing/tests/data/pass/ndarray_conversion.py +81 -0
- numpy/typing/tests/data/pass/ndarray_misc.py +199 -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 +90 -0
- numpy/typing/tests/data/pass/numerictypes.py +17 -0
- numpy/typing/tests/data/pass/random.py +1498 -0
- numpy/typing/tests/data/pass/recfunctions.py +164 -0
- numpy/typing/tests/data/pass/scalars.py +249 -0
- numpy/typing/tests/data/pass/shape.py +19 -0
- numpy/typing/tests/data/pass/simple.py +170 -0
- numpy/typing/tests/data/pass/ufunc_config.py +64 -0
- numpy/typing/tests/data/pass/ufunclike.py +52 -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 +719 -0
- numpy/typing/tests/data/reveal/array_api_info.pyi +70 -0
- numpy/typing/tests/data/reveal/array_constructors.pyi +277 -0
- numpy/typing/tests/data/reveal/arraypad.pyi +27 -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 +166 -0
- numpy/typing/tests/data/reveal/char.pyi +225 -0
- numpy/typing/tests/data/reveal/chararray.pyi +138 -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 +132 -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 +86 -0
- numpy/typing/tests/data/reveal/fromnumeric.pyi +347 -0
- numpy/typing/tests/data/reveal/getlimits.pyi +53 -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 +409 -0
- numpy/typing/tests/data/reveal/lib_polynomial.pyi +147 -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 +154 -0
- numpy/typing/tests/data/reveal/ma.pyi +1098 -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 +178 -0
- numpy/typing/tests/data/reveal/modules.pyi +51 -0
- numpy/typing/tests/data/reveal/multiarray.pyi +197 -0
- numpy/typing/tests/data/reveal/nbit_base_example.pyi +20 -0
- numpy/typing/tests/data/reveal/ndarray_assignability.pyi +82 -0
- numpy/typing/tests/data/reveal/ndarray_conversion.pyi +83 -0
- numpy/typing/tests/data/reveal/ndarray_misc.pyi +246 -0
- numpy/typing/tests/data/reveal/ndarray_shape_manipulation.pyi +47 -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 +170 -0
- numpy/typing/tests/data/reveal/numerictypes.pyi +16 -0
- numpy/typing/tests/data/reveal/polynomial_polybase.pyi +217 -0
- numpy/typing/tests/data/reveal/polynomial_polyutils.pyi +218 -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 +225 -0
- numpy/typing/tests/data/reveal/type_check.pyi +67 -0
- numpy/typing/tests/data/reveal/ufunc_config.pyi +29 -0
- numpy/typing/tests/data/reveal/ufunclike.pyi +31 -0
- numpy/typing/tests/data/reveal/ufuncs.pyi +142 -0
- numpy/typing/tests/data/reveal/warnings_and_errors.pyi +11 -0
- numpy/typing/tests/test_isfile.py +38 -0
- numpy/typing/tests/test_runtime.py +110 -0
- numpy/typing/tests/test_typing.py +205 -0
- numpy/version.py +11 -0
- numpy/version.pyi +9 -0
- numpy-2.4.0.dist-info/METADATA +139 -0
- numpy-2.4.0.dist-info/RECORD +915 -0
- numpy-2.4.0.dist-info/WHEEL +5 -0
- numpy-2.4.0.dist-info/entry_points.txt +13 -0
- numpy-2.4.0.dist-info/licenses/LICENSE.txt +935 -0
- numpy-2.4.0.dist-info/licenses/numpy/_core/include/numpy/libdivide/LICENSE.txt +21 -0
- numpy-2.4.0.dist-info/licenses/numpy/_core/src/common/pythoncapi-compat/COPYING +14 -0
- numpy-2.4.0.dist-info/licenses/numpy/_core/src/highway/LICENSE +371 -0
- numpy-2.4.0.dist-info/licenses/numpy/_core/src/multiarray/dragon4_LICENSE.txt +27 -0
- numpy-2.4.0.dist-info/licenses/numpy/_core/src/npysort/x86-simd-sort/LICENSE.md +28 -0
- numpy-2.4.0.dist-info/licenses/numpy/_core/src/umath/svml/LICENSE +30 -0
- numpy-2.4.0.dist-info/licenses/numpy/fft/pocketfft/LICENSE.md +25 -0
- numpy-2.4.0.dist-info/licenses/numpy/linalg/lapack_lite/LICENSE.txt +48 -0
- numpy-2.4.0.dist-info/licenses/numpy/ma/LICENSE +24 -0
- numpy-2.4.0.dist-info/licenses/numpy/random/LICENSE.md +71 -0
- numpy-2.4.0.dist-info/licenses/numpy/random/src/distributions/LICENSE.md +61 -0
- numpy-2.4.0.dist-info/licenses/numpy/random/src/mt19937/LICENSE.md +61 -0
- numpy-2.4.0.dist-info/licenses/numpy/random/src/pcg64/LICENSE.md +22 -0
- numpy-2.4.0.dist-info/licenses/numpy/random/src/philox/LICENSE.md +31 -0
- numpy-2.4.0.dist-info/licenses/numpy/random/src/sfc64/LICENSE.md +27 -0
- numpy-2.4.0.dist-info/licenses/numpy/random/src/splitmix64/LICENSE.md +9 -0
- numpy.libs/libgcc_s-2d945d6c-767fb991.so.1 +0 -0
- numpy.libs/libgcc_s-2d945d6c.so.1 +0 -0
- numpy.libs/libgfortran-67378ab2-e7e7cfab.so.5.0.0 +0 -0
- numpy.libs/libscipy_openblas64_-1fc386ee.so +0 -0
- numpy.libs/libstdc++-85f2cd6d.so.6.0.33 +0 -0
|
@@ -0,0 +1,1429 @@
|
|
|
1
|
+
dtype,input,output,ulperrortol
|
|
2
|
+
np.float32,0xfee27582,0xff800000,2
|
|
3
|
+
np.float32,0xff19f092,0xff800000,2
|
|
4
|
+
np.float32,0xbf393576,0xbf49cb31,2
|
|
5
|
+
np.float32,0x8020fdea,0x8020fdea,2
|
|
6
|
+
np.float32,0x455f4e,0x455f4e,2
|
|
7
|
+
np.float32,0xff718c35,0xff800000,2
|
|
8
|
+
np.float32,0x3f3215e3,0x3f40cce5,2
|
|
9
|
+
np.float32,0x19e833,0x19e833,2
|
|
10
|
+
np.float32,0xff2dcd49,0xff800000,2
|
|
11
|
+
np.float32,0x7e8f6c95,0x7f800000,2
|
|
12
|
+
np.float32,0xbf159dac,0xbf1e47a5,2
|
|
13
|
+
np.float32,0x100d3d,0x100d3d,2
|
|
14
|
+
np.float32,0xff673441,0xff800000,2
|
|
15
|
+
np.float32,0x80275355,0x80275355,2
|
|
16
|
+
np.float32,0x4812d0,0x4812d0,2
|
|
17
|
+
np.float32,0x8072b956,0x8072b956,2
|
|
18
|
+
np.float32,0xff3bb918,0xff800000,2
|
|
19
|
+
np.float32,0x0,0x0,2
|
|
20
|
+
np.float32,0xfe327798,0xff800000,2
|
|
21
|
+
np.float32,0x41d4e2,0x41d4e2,2
|
|
22
|
+
np.float32,0xfe34b1b8,0xff800000,2
|
|
23
|
+
np.float32,0x80199f72,0x80199f72,2
|
|
24
|
+
np.float32,0x807242ce,0x807242ce,2
|
|
25
|
+
np.float32,0x3ef4202d,0x3efd7b48,2
|
|
26
|
+
np.float32,0x763529,0x763529,2
|
|
27
|
+
np.float32,0x4f6662,0x4f6662,2
|
|
28
|
+
np.float32,0x3f18efe9,0x3f2232b5,2
|
|
29
|
+
np.float32,0x80701846,0x80701846,2
|
|
30
|
+
np.float32,0x3f599948,0x3f74c393,2
|
|
31
|
+
np.float32,0x5a3d69,0x5a3d69,2
|
|
32
|
+
np.float32,0xbf4a7e65,0xbf6047a3,2
|
|
33
|
+
np.float32,0xff0d4c82,0xff800000,2
|
|
34
|
+
np.float32,0x7a74db,0x7a74db,2
|
|
35
|
+
np.float32,0x803388e6,0x803388e6,2
|
|
36
|
+
np.float32,0x7f4430bb,0x7f800000,2
|
|
37
|
+
np.float32,0x14c5b1,0x14c5b1,2
|
|
38
|
+
np.float32,0xfa113400,0xff800000,2
|
|
39
|
+
np.float32,0x7f4b3209,0x7f800000,2
|
|
40
|
+
np.float32,0x8038d88c,0x8038d88c,2
|
|
41
|
+
np.float32,0xbef2f9de,0xbefc330b,2
|
|
42
|
+
np.float32,0xbe147b38,0xbe15008f,2
|
|
43
|
+
np.float32,0x2b61e6,0x2b61e6,2
|
|
44
|
+
np.float32,0x80000001,0x80000001,2
|
|
45
|
+
np.float32,0x8060456c,0x8060456c,2
|
|
46
|
+
np.float32,0x3f30fa82,0x3f3f6a99,2
|
|
47
|
+
np.float32,0xfd1f0220,0xff800000,2
|
|
48
|
+
np.float32,0xbf2b7555,0xbf389151,2
|
|
49
|
+
np.float32,0xff100b7a,0xff800000,2
|
|
50
|
+
np.float32,0x70d3cd,0x70d3cd,2
|
|
51
|
+
np.float32,0x2a8d4a,0x2a8d4a,2
|
|
52
|
+
np.float32,0xbf7b733f,0xbf92f05f,2
|
|
53
|
+
np.float32,0x3f7106dc,0x3f8b1fc6,2
|
|
54
|
+
np.float32,0x3f39da7a,0x3f4a9d79,2
|
|
55
|
+
np.float32,0x3f5dd73f,0x3f7aaab5,2
|
|
56
|
+
np.float32,0xbe8c8754,0xbe8e4cba,2
|
|
57
|
+
np.float32,0xbf6c74c9,0xbf87c556,2
|
|
58
|
+
np.float32,0x800efbbb,0x800efbbb,2
|
|
59
|
+
np.float32,0xff054ab5,0xff800000,2
|
|
60
|
+
np.float32,0x800b4b46,0x800b4b46,2
|
|
61
|
+
np.float32,0xff77fd74,0xff800000,2
|
|
62
|
+
np.float32,0x257d0,0x257d0,2
|
|
63
|
+
np.float32,0x7caa0c,0x7caa0c,2
|
|
64
|
+
np.float32,0x8025d24d,0x8025d24d,2
|
|
65
|
+
np.float32,0x3d9f1b60,0x3d9f445c,2
|
|
66
|
+
np.float32,0xbe3bf6e8,0xbe3d0595,2
|
|
67
|
+
np.float32,0x54bb93,0x54bb93,2
|
|
68
|
+
np.float32,0xbf3e6a45,0xbf507716,2
|
|
69
|
+
np.float32,0x3f4bb26e,0x3f61e1cd,2
|
|
70
|
+
np.float32,0x3f698edc,0x3f85aac5,2
|
|
71
|
+
np.float32,0xff7bd0ef,0xff800000,2
|
|
72
|
+
np.float32,0xbed07b68,0xbed64a8e,2
|
|
73
|
+
np.float32,0xbf237c72,0xbf2ed3d2,2
|
|
74
|
+
np.float32,0x27b0fa,0x27b0fa,2
|
|
75
|
+
np.float32,0x3f7606d1,0x3f8ed7d6,2
|
|
76
|
+
np.float32,0x790dc0,0x790dc0,2
|
|
77
|
+
np.float32,0x7f68f3ac,0x7f800000,2
|
|
78
|
+
np.float32,0xbed39288,0xbed9a52f,2
|
|
79
|
+
np.float32,0x3f6f8266,0x3f8a0187,2
|
|
80
|
+
np.float32,0x3fbdca,0x3fbdca,2
|
|
81
|
+
np.float32,0xbf7c3e5d,0xbf938b2c,2
|
|
82
|
+
np.float32,0x802321a8,0x802321a8,2
|
|
83
|
+
np.float32,0x3eecab66,0x3ef53031,2
|
|
84
|
+
np.float32,0x62b324,0x62b324,2
|
|
85
|
+
np.float32,0x3f13afac,0x3f1c03fe,2
|
|
86
|
+
np.float32,0xff315ad7,0xff800000,2
|
|
87
|
+
np.float32,0xbf1fac0d,0xbf2a3a63,2
|
|
88
|
+
np.float32,0xbf543984,0xbf6d61d6,2
|
|
89
|
+
np.float32,0x71a212,0x71a212,2
|
|
90
|
+
np.float32,0x114fbe,0x114fbe,2
|
|
91
|
+
np.float32,0x3f5b6ff2,0x3f77505f,2
|
|
92
|
+
np.float32,0xff6ff89e,0xff800000,2
|
|
93
|
+
np.float32,0xff4527a1,0xff800000,2
|
|
94
|
+
np.float32,0x22cb3,0x22cb3,2
|
|
95
|
+
np.float32,0x7f53bb6b,0x7f800000,2
|
|
96
|
+
np.float32,0xff3d2dea,0xff800000,2
|
|
97
|
+
np.float32,0xfd21dac0,0xff800000,2
|
|
98
|
+
np.float32,0xfc486140,0xff800000,2
|
|
99
|
+
np.float32,0x7e2b693a,0x7f800000,2
|
|
100
|
+
np.float32,0x8022a9fb,0x8022a9fb,2
|
|
101
|
+
np.float32,0x80765de0,0x80765de0,2
|
|
102
|
+
np.float32,0x13d299,0x13d299,2
|
|
103
|
+
np.float32,0x7ee53713,0x7f800000,2
|
|
104
|
+
np.float32,0xbde1c770,0xbde23c96,2
|
|
105
|
+
np.float32,0xbd473fc0,0xbd4753de,2
|
|
106
|
+
np.float32,0x3f1cb455,0x3f26acf3,2
|
|
107
|
+
np.float32,0x683e49,0x683e49,2
|
|
108
|
+
np.float32,0x3ed5a9fc,0x3edbeb79,2
|
|
109
|
+
np.float32,0x3f4fe3f6,0x3f67814f,2
|
|
110
|
+
np.float32,0x802a2bce,0x802a2bce,2
|
|
111
|
+
np.float32,0x7e951b4c,0x7f800000,2
|
|
112
|
+
np.float32,0xbe6eb260,0xbe70dd44,2
|
|
113
|
+
np.float32,0xbe3daca8,0xbe3ec2cb,2
|
|
114
|
+
np.float32,0xbe9c38b2,0xbe9ea822,2
|
|
115
|
+
np.float32,0xff2e29dc,0xff800000,2
|
|
116
|
+
np.float32,0x7f62c7cc,0x7f800000,2
|
|
117
|
+
np.float32,0xbf6799a4,0xbf84416c,2
|
|
118
|
+
np.float32,0xbe30a7f0,0xbe318898,2
|
|
119
|
+
np.float32,0xc83d9,0xc83d9,2
|
|
120
|
+
np.float32,0x3f05abf4,0x3f0bd447,2
|
|
121
|
+
np.float32,0x7e9b018a,0x7f800000,2
|
|
122
|
+
np.float32,0xbf0ed72e,0xbf165e5b,2
|
|
123
|
+
np.float32,0x8011ac8c,0x8011ac8c,2
|
|
124
|
+
np.float32,0xbeb7c706,0xbebbbfcb,2
|
|
125
|
+
np.float32,0x803637f9,0x803637f9,2
|
|
126
|
+
np.float32,0xfe787cc8,0xff800000,2
|
|
127
|
+
np.float32,0x3f533d4b,0x3f6c0a50,2
|
|
128
|
+
np.float32,0x3f5c0f1c,0x3f782dde,2
|
|
129
|
+
np.float32,0x3f301f36,0x3f3e590d,2
|
|
130
|
+
np.float32,0x2dc929,0x2dc929,2
|
|
131
|
+
np.float32,0xff15018a,0xff800000,2
|
|
132
|
+
np.float32,0x3f4d0c56,0x3f63afeb,2
|
|
133
|
+
np.float32,0xbf7a2ae3,0xbf91f6e4,2
|
|
134
|
+
np.float32,0xbe771b84,0xbe798346,2
|
|
135
|
+
np.float32,0x80800000,0x80800000,2
|
|
136
|
+
np.float32,0x7f5689ba,0x7f800000,2
|
|
137
|
+
np.float32,0x3f1c3177,0x3f2610df,2
|
|
138
|
+
np.float32,0x3f1b9664,0x3f255825,2
|
|
139
|
+
np.float32,0x3f7e5066,0x3f9520d4,2
|
|
140
|
+
np.float32,0xbf1935f8,0xbf2285ab,2
|
|
141
|
+
np.float32,0x3f096cc7,0x3f101ef9,2
|
|
142
|
+
np.float32,0x8030c180,0x8030c180,2
|
|
143
|
+
np.float32,0x6627ed,0x6627ed,2
|
|
144
|
+
np.float32,0x454595,0x454595,2
|
|
145
|
+
np.float32,0x7de66a33,0x7f800000,2
|
|
146
|
+
np.float32,0xbf800000,0xbf966cfe,2
|
|
147
|
+
np.float32,0xbf35c0a8,0xbf456939,2
|
|
148
|
+
np.float32,0x3f6a6266,0x3f8643e0,2
|
|
149
|
+
np.float32,0x3f0cbcee,0x3f13ef6a,2
|
|
150
|
+
np.float32,0x7efd1e58,0x7f800000,2
|
|
151
|
+
np.float32,0xfe9a74c6,0xff800000,2
|
|
152
|
+
np.float32,0x807ebe6c,0x807ebe6c,2
|
|
153
|
+
np.float32,0x80656736,0x80656736,2
|
|
154
|
+
np.float32,0x800e0608,0x800e0608,2
|
|
155
|
+
np.float32,0xbf30e39a,0xbf3f4e00,2
|
|
156
|
+
np.float32,0x802015fd,0x802015fd,2
|
|
157
|
+
np.float32,0x3e3ce26d,0x3e3df519,2
|
|
158
|
+
np.float32,0x7ec142ac,0x7f800000,2
|
|
159
|
+
np.float32,0xbf68c9ce,0xbf851c78,2
|
|
160
|
+
np.float32,0xfede8356,0xff800000,2
|
|
161
|
+
np.float32,0xbf1507ce,0xbf1d978d,2
|
|
162
|
+
np.float32,0x3e53914c,0x3e551374,2
|
|
163
|
+
np.float32,0x7f3e1c14,0x7f800000,2
|
|
164
|
+
np.float32,0x8070d2ba,0x8070d2ba,2
|
|
165
|
+
np.float32,0xbf4eb793,0xbf65ecee,2
|
|
166
|
+
np.float32,0x7365a6,0x7365a6,2
|
|
167
|
+
np.float32,0x8045cba2,0x8045cba2,2
|
|
168
|
+
np.float32,0x7e4af521,0x7f800000,2
|
|
169
|
+
np.float32,0xbf228625,0xbf2da9e1,2
|
|
170
|
+
np.float32,0x7ee0536c,0x7f800000,2
|
|
171
|
+
np.float32,0x3e126607,0x3e12e5d5,2
|
|
172
|
+
np.float32,0x80311d92,0x80311d92,2
|
|
173
|
+
np.float32,0xbf386b8b,0xbf48ca54,2
|
|
174
|
+
np.float32,0x7f800000,0x7f800000,2
|
|
175
|
+
np.float32,0x8049ec7a,0x8049ec7a,2
|
|
176
|
+
np.float32,0xbf1dfde4,0xbf2836be,2
|
|
177
|
+
np.float32,0x7e719a8c,0x7f800000,2
|
|
178
|
+
np.float32,0x3eb9c856,0x3ebde2e6,2
|
|
179
|
+
np.float32,0xfe3efda8,0xff800000,2
|
|
180
|
+
np.float32,0xbe89d60c,0xbe8b81d1,2
|
|
181
|
+
np.float32,0x3eaad338,0x3eae0317,2
|
|
182
|
+
np.float32,0x7f4e5217,0x7f800000,2
|
|
183
|
+
np.float32,0x3e9d0f40,0x3e9f88ce,2
|
|
184
|
+
np.float32,0xbe026708,0xbe02c155,2
|
|
185
|
+
np.float32,0x5fc22f,0x5fc22f,2
|
|
186
|
+
np.float32,0x1c4572,0x1c4572,2
|
|
187
|
+
np.float32,0xbed89d96,0xbedf22c5,2
|
|
188
|
+
np.float32,0xbf3debee,0xbf4fd441,2
|
|
189
|
+
np.float32,0xbf465520,0xbf5ac6e5,2
|
|
190
|
+
np.float32,0x3f797081,0x3f9169b3,2
|
|
191
|
+
np.float32,0xbf250734,0xbf30b2aa,2
|
|
192
|
+
np.float32,0x7f5068e9,0x7f800000,2
|
|
193
|
+
np.float32,0x3f1b814e,0x3f253f0c,2
|
|
194
|
+
np.float32,0xbf27c5d3,0xbf340b05,2
|
|
195
|
+
np.float32,0x3f1b78ae,0x3f2534c8,2
|
|
196
|
+
np.float32,0x8059b51a,0x8059b51a,2
|
|
197
|
+
np.float32,0x8059f182,0x8059f182,2
|
|
198
|
+
np.float32,0xbf1bb36e,0xbf257ab8,2
|
|
199
|
+
np.float32,0x41ac35,0x41ac35,2
|
|
200
|
+
np.float32,0x68f41f,0x68f41f,2
|
|
201
|
+
np.float32,0xbea504dc,0xbea7e40f,2
|
|
202
|
+
np.float32,0x1,0x1,2
|
|
203
|
+
np.float32,0x3e96b5b0,0x3e98e542,2
|
|
204
|
+
np.float32,0x7f7fffff,0x7f800000,2
|
|
205
|
+
np.float32,0x3c557a80,0x3c557c0c,2
|
|
206
|
+
np.float32,0x800ca3ec,0x800ca3ec,2
|
|
207
|
+
np.float32,0x8077d4aa,0x8077d4aa,2
|
|
208
|
+
np.float32,0x3f000af0,0x3f0572d6,2
|
|
209
|
+
np.float32,0x3e0434dd,0x3e0492f8,2
|
|
210
|
+
np.float32,0x7d1a710a,0x7f800000,2
|
|
211
|
+
np.float32,0x3f70f996,0x3f8b15f8,2
|
|
212
|
+
np.float32,0x8033391d,0x8033391d,2
|
|
213
|
+
np.float32,0x11927c,0x11927c,2
|
|
214
|
+
np.float32,0x7f7784be,0x7f800000,2
|
|
215
|
+
np.float32,0x7acb22af,0x7f800000,2
|
|
216
|
+
np.float32,0x7e8b153c,0x7f800000,2
|
|
217
|
+
np.float32,0x66d402,0x66d402,2
|
|
218
|
+
np.float32,0xfed6e7b0,0xff800000,2
|
|
219
|
+
np.float32,0x7f6872d3,0x7f800000,2
|
|
220
|
+
np.float32,0x1bd49c,0x1bd49c,2
|
|
221
|
+
np.float32,0xfdc4f1b8,0xff800000,2
|
|
222
|
+
np.float32,0xbed8a466,0xbedf2a33,2
|
|
223
|
+
np.float32,0x7ee789,0x7ee789,2
|
|
224
|
+
np.float32,0xbece94b4,0xbed43b52,2
|
|
225
|
+
np.float32,0x3cf3f734,0x3cf4006f,2
|
|
226
|
+
np.float32,0x7e44aa00,0x7f800000,2
|
|
227
|
+
np.float32,0x7f19e99c,0x7f800000,2
|
|
228
|
+
np.float32,0x806ff1bc,0x806ff1bc,2
|
|
229
|
+
np.float32,0x80296934,0x80296934,2
|
|
230
|
+
np.float32,0x7f463363,0x7f800000,2
|
|
231
|
+
np.float32,0xbf212ac3,0xbf2c06bb,2
|
|
232
|
+
np.float32,0x3dc63778,0x3dc686ba,2
|
|
233
|
+
np.float32,0x7f1b4328,0x7f800000,2
|
|
234
|
+
np.float32,0x6311f6,0x6311f6,2
|
|
235
|
+
np.float32,0xbf6b6fb6,0xbf870751,2
|
|
236
|
+
np.float32,0xbf2c44cf,0xbf399155,2
|
|
237
|
+
np.float32,0x3e7a67bc,0x3e7ce887,2
|
|
238
|
+
np.float32,0x7f57c5f7,0x7f800000,2
|
|
239
|
+
np.float32,0x7f2bb4ff,0x7f800000,2
|
|
240
|
+
np.float32,0xbe9d448e,0xbe9fc0a4,2
|
|
241
|
+
np.float32,0xbf4840f0,0xbf5d4f6b,2
|
|
242
|
+
np.float32,0x7f1e1176,0x7f800000,2
|
|
243
|
+
np.float32,0xff76638e,0xff800000,2
|
|
244
|
+
np.float32,0xff055555,0xff800000,2
|
|
245
|
+
np.float32,0x3f32b82b,0x3f419834,2
|
|
246
|
+
np.float32,0xff363aa8,0xff800000,2
|
|
247
|
+
np.float32,0x7f737fd0,0x7f800000,2
|
|
248
|
+
np.float32,0x3da5d798,0x3da60602,2
|
|
249
|
+
np.float32,0x3f1cc126,0x3f26bc3e,2
|
|
250
|
+
np.float32,0x7eb07541,0x7f800000,2
|
|
251
|
+
np.float32,0x3f7b2ff2,0x3f92bd2a,2
|
|
252
|
+
np.float32,0x474f7,0x474f7,2
|
|
253
|
+
np.float32,0x7fc00000,0x7fc00000,2
|
|
254
|
+
np.float32,0xff2b0a4e,0xff800000,2
|
|
255
|
+
np.float32,0xfeb24f16,0xff800000,2
|
|
256
|
+
np.float32,0x2cb9fc,0x2cb9fc,2
|
|
257
|
+
np.float32,0x67189d,0x67189d,2
|
|
258
|
+
np.float32,0x8033d854,0x8033d854,2
|
|
259
|
+
np.float32,0xbe85e94c,0xbe87717a,2
|
|
260
|
+
np.float32,0x80767c6c,0x80767c6c,2
|
|
261
|
+
np.float32,0x7ea84d65,0x7f800000,2
|
|
262
|
+
np.float32,0x3f024bc7,0x3f07fead,2
|
|
263
|
+
np.float32,0xbdcb0100,0xbdcb5625,2
|
|
264
|
+
np.float32,0x3f160a9e,0x3f1ec7c9,2
|
|
265
|
+
np.float32,0xff1734c8,0xff800000,2
|
|
266
|
+
np.float32,0x7f424d5e,0x7f800000,2
|
|
267
|
+
np.float32,0xbf75b215,0xbf8e9862,2
|
|
268
|
+
np.float32,0x3f262a42,0x3f3214c4,2
|
|
269
|
+
np.float32,0xbf4cfb53,0xbf639927,2
|
|
270
|
+
np.float32,0x3f4ac8b8,0x3f60aa7c,2
|
|
271
|
+
np.float32,0x3e90e593,0x3e92d6b3,2
|
|
272
|
+
np.float32,0xbf66bccf,0xbf83a2d8,2
|
|
273
|
+
np.float32,0x7d3d851a,0x7f800000,2
|
|
274
|
+
np.float32,0x7bac783c,0x7f800000,2
|
|
275
|
+
np.float32,0x8001c626,0x8001c626,2
|
|
276
|
+
np.float32,0xbdffd480,0xbe003f7b,2
|
|
277
|
+
np.float32,0x7f6680bf,0x7f800000,2
|
|
278
|
+
np.float32,0xbecf448e,0xbed4f9bb,2
|
|
279
|
+
np.float32,0x584c7,0x584c7,2
|
|
280
|
+
np.float32,0x3f3e8ea0,0x3f50a5fb,2
|
|
281
|
+
np.float32,0xbf5a5f04,0xbf75d56e,2
|
|
282
|
+
np.float32,0x8065ae47,0x8065ae47,2
|
|
283
|
+
np.float32,0xbf48dce3,0xbf5e1dba,2
|
|
284
|
+
np.float32,0xbe8dae2e,0xbe8f7ed8,2
|
|
285
|
+
np.float32,0x3f7ca6ab,0x3f93dace,2
|
|
286
|
+
np.float32,0x4c3e81,0x4c3e81,2
|
|
287
|
+
np.float32,0x80000000,0x80000000,2
|
|
288
|
+
np.float32,0x3ee1f7d9,0x3ee96033,2
|
|
289
|
+
np.float32,0x80588c6f,0x80588c6f,2
|
|
290
|
+
np.float32,0x5ba34e,0x5ba34e,2
|
|
291
|
+
np.float32,0x80095d28,0x80095d28,2
|
|
292
|
+
np.float32,0xbe7ba198,0xbe7e2bdd,2
|
|
293
|
+
np.float32,0xbe0bdcb4,0xbe0c4c22,2
|
|
294
|
+
np.float32,0x1776f7,0x1776f7,2
|
|
295
|
+
np.float32,0x80328b2a,0x80328b2a,2
|
|
296
|
+
np.float32,0x3e978d37,0x3e99c63e,2
|
|
297
|
+
np.float32,0x7ed50906,0x7f800000,2
|
|
298
|
+
np.float32,0x3f776a54,0x3f8fe2bd,2
|
|
299
|
+
np.float32,0xbed624c4,0xbedc7120,2
|
|
300
|
+
np.float32,0x7f0b6a31,0x7f800000,2
|
|
301
|
+
np.float32,0x7eb13913,0x7f800000,2
|
|
302
|
+
np.float32,0xbe733684,0xbe758190,2
|
|
303
|
+
np.float32,0x80016474,0x80016474,2
|
|
304
|
+
np.float32,0x7a51ee,0x7a51ee,2
|
|
305
|
+
np.float32,0x3f6cb91e,0x3f87f729,2
|
|
306
|
+
np.float32,0xbd99b050,0xbd99d540,2
|
|
307
|
+
np.float32,0x7c6e3cba,0x7f800000,2
|
|
308
|
+
np.float32,0xbf00179a,0xbf05811e,2
|
|
309
|
+
np.float32,0x3e609b29,0x3e626954,2
|
|
310
|
+
np.float32,0xff3fd71a,0xff800000,2
|
|
311
|
+
np.float32,0x5d8c2,0x5d8c2,2
|
|
312
|
+
np.float32,0x7ee93662,0x7f800000,2
|
|
313
|
+
np.float32,0x4b0b31,0x4b0b31,2
|
|
314
|
+
np.float32,0x3ec243b7,0x3ec6f594,2
|
|
315
|
+
np.float32,0x804d60f1,0x804d60f1,2
|
|
316
|
+
np.float32,0xbf0cb784,0xbf13e929,2
|
|
317
|
+
np.float32,0x3f13b74d,0x3f1c0cee,2
|
|
318
|
+
np.float32,0xfe37cb64,0xff800000,2
|
|
319
|
+
np.float32,0x1a88,0x1a88,2
|
|
320
|
+
np.float32,0x3e22a472,0x3e2353ba,2
|
|
321
|
+
np.float32,0x7f07d6a0,0x7f800000,2
|
|
322
|
+
np.float32,0x3f78f435,0x3f910bb5,2
|
|
323
|
+
np.float32,0x555a4a,0x555a4a,2
|
|
324
|
+
np.float32,0x3e306c1f,0x3e314be3,2
|
|
325
|
+
np.float32,0x8005877c,0x8005877c,2
|
|
326
|
+
np.float32,0x4df389,0x4df389,2
|
|
327
|
+
np.float32,0x8069ffc7,0x8069ffc7,2
|
|
328
|
+
np.float32,0x3f328f24,0x3f4164c6,2
|
|
329
|
+
np.float32,0x53a31b,0x53a31b,2
|
|
330
|
+
np.float32,0xbe4d6768,0xbe4ec8be,2
|
|
331
|
+
np.float32,0x7fa00000,0x7fe00000,2
|
|
332
|
+
np.float32,0x3f484c1b,0x3f5d5e2f,2
|
|
333
|
+
np.float32,0x8038be05,0x8038be05,2
|
|
334
|
+
np.float32,0x58ac0f,0x58ac0f,2
|
|
335
|
+
np.float32,0x7ed7fb72,0x7f800000,2
|
|
336
|
+
np.float32,0x5a22e1,0x5a22e1,2
|
|
337
|
+
np.float32,0xbebb7394,0xbebfaad6,2
|
|
338
|
+
np.float32,0xbda98160,0xbda9b2ef,2
|
|
339
|
+
np.float32,0x7f3e5c42,0x7f800000,2
|
|
340
|
+
np.float32,0xfed204ae,0xff800000,2
|
|
341
|
+
np.float32,0xbf5ef782,0xbf7c3ec5,2
|
|
342
|
+
np.float32,0xbef7a0a8,0xbf00b292,2
|
|
343
|
+
np.float32,0xfee6e176,0xff800000,2
|
|
344
|
+
np.float32,0xfe121140,0xff800000,2
|
|
345
|
+
np.float32,0xfe9e13be,0xff800000,2
|
|
346
|
+
np.float32,0xbf3c98b1,0xbf4e2003,2
|
|
347
|
+
np.float32,0x77520d,0x77520d,2
|
|
348
|
+
np.float32,0xf17b2,0xf17b2,2
|
|
349
|
+
np.float32,0x724d2f,0x724d2f,2
|
|
350
|
+
np.float32,0x7eb326f5,0x7f800000,2
|
|
351
|
+
np.float32,0x3edd6bf2,0x3ee4636e,2
|
|
352
|
+
np.float32,0x350f57,0x350f57,2
|
|
353
|
+
np.float32,0xff7d4435,0xff800000,2
|
|
354
|
+
np.float32,0x802b2b9d,0x802b2b9d,2
|
|
355
|
+
np.float32,0xbf7fbeee,0xbf963acf,2
|
|
356
|
+
np.float32,0x804f3100,0x804f3100,2
|
|
357
|
+
np.float32,0x7c594a71,0x7f800000,2
|
|
358
|
+
np.float32,0x3ef49340,0x3efdfbb6,2
|
|
359
|
+
np.float32,0x2e0659,0x2e0659,2
|
|
360
|
+
np.float32,0x8006d5fe,0x8006d5fe,2
|
|
361
|
+
np.float32,0xfd2a00b0,0xff800000,2
|
|
362
|
+
np.float32,0xbee1c016,0xbee922ed,2
|
|
363
|
+
np.float32,0x3e3b7de8,0x3e3c8a8b,2
|
|
364
|
+
np.float32,0x805e6bba,0x805e6bba,2
|
|
365
|
+
np.float32,0x1a7da2,0x1a7da2,2
|
|
366
|
+
np.float32,0x6caba4,0x6caba4,2
|
|
367
|
+
np.float32,0x802f7eab,0x802f7eab,2
|
|
368
|
+
np.float32,0xff68b16b,0xff800000,2
|
|
369
|
+
np.float32,0x8064f5e5,0x8064f5e5,2
|
|
370
|
+
np.float32,0x2e39b4,0x2e39b4,2
|
|
371
|
+
np.float32,0x800000,0x800000,2
|
|
372
|
+
np.float32,0xfd0334c0,0xff800000,2
|
|
373
|
+
np.float32,0x3e952fc4,0x3e974e7e,2
|
|
374
|
+
np.float32,0x80057d33,0x80057d33,2
|
|
375
|
+
np.float32,0x3ed3ddc4,0x3ed9f6f1,2
|
|
376
|
+
np.float32,0x3f74ce18,0x3f8dedf4,2
|
|
377
|
+
np.float32,0xff6bb7c0,0xff800000,2
|
|
378
|
+
np.float32,0xff43bc21,0xff800000,2
|
|
379
|
+
np.float32,0x80207570,0x80207570,2
|
|
380
|
+
np.float32,0x7e1dda75,0x7f800000,2
|
|
381
|
+
np.float32,0x3efe335c,0x3f0462ff,2
|
|
382
|
+
np.float32,0xbf252c0c,0xbf30df70,2
|
|
383
|
+
np.float32,0x3ef4b8e3,0x3efe25ba,2
|
|
384
|
+
np.float32,0x7c33938d,0x7f800000,2
|
|
385
|
+
np.float32,0x3eb1593c,0x3eb4ea95,2
|
|
386
|
+
np.float32,0xfe1d0068,0xff800000,2
|
|
387
|
+
np.float32,0xbf10da9b,0xbf18b551,2
|
|
388
|
+
np.float32,0xfeb65748,0xff800000,2
|
|
389
|
+
np.float32,0xfe8c6014,0xff800000,2
|
|
390
|
+
np.float32,0x3f0503e2,0x3f0b14e3,2
|
|
391
|
+
np.float32,0xfe5e5248,0xff800000,2
|
|
392
|
+
np.float32,0xbd10afa0,0xbd10b754,2
|
|
393
|
+
np.float32,0xff64b609,0xff800000,2
|
|
394
|
+
np.float32,0xbf674a96,0xbf84089c,2
|
|
395
|
+
np.float32,0x7f5d200d,0x7f800000,2
|
|
396
|
+
np.float32,0x3cf44900,0x3cf45245,2
|
|
397
|
+
np.float32,0x8044445a,0x8044445a,2
|
|
398
|
+
np.float32,0xff35b676,0xff800000,2
|
|
399
|
+
np.float32,0x806452cd,0x806452cd,2
|
|
400
|
+
np.float32,0xbf2930fb,0xbf35c7b4,2
|
|
401
|
+
np.float32,0x7e500617,0x7f800000,2
|
|
402
|
+
np.float32,0x543719,0x543719,2
|
|
403
|
+
np.float32,0x3ed11068,0x3ed6ec1d,2
|
|
404
|
+
np.float32,0xbd8db068,0xbd8dcd59,2
|
|
405
|
+
np.float32,0x3ede62c8,0x3ee571d0,2
|
|
406
|
+
np.float32,0xbf00a410,0xbf061f9c,2
|
|
407
|
+
np.float32,0xbf44fa39,0xbf58ff5b,2
|
|
408
|
+
np.float32,0x3f1c3114,0x3f261069,2
|
|
409
|
+
np.float32,0xbdea6210,0xbdeae521,2
|
|
410
|
+
np.float32,0x80059f6d,0x80059f6d,2
|
|
411
|
+
np.float32,0xbdba15f8,0xbdba578c,2
|
|
412
|
+
np.float32,0x6d8a61,0x6d8a61,2
|
|
413
|
+
np.float32,0x6f5428,0x6f5428,2
|
|
414
|
+
np.float32,0x18d0e,0x18d0e,2
|
|
415
|
+
np.float32,0x50e131,0x50e131,2
|
|
416
|
+
np.float32,0x3f2f52be,0x3f3d5a7e,2
|
|
417
|
+
np.float32,0x7399d8,0x7399d8,2
|
|
418
|
+
np.float32,0x106524,0x106524,2
|
|
419
|
+
np.float32,0x7ebf1c53,0x7f800000,2
|
|
420
|
+
np.float32,0x80276458,0x80276458,2
|
|
421
|
+
np.float32,0x3ebbde67,0x3ec01ceb,2
|
|
422
|
+
np.float32,0x80144d9d,0x80144d9d,2
|
|
423
|
+
np.float32,0x8017ea6b,0x8017ea6b,2
|
|
424
|
+
np.float32,0xff38f201,0xff800000,2
|
|
425
|
+
np.float32,0x7f2daa82,0x7f800000,2
|
|
426
|
+
np.float32,0x3f3cb7c7,0x3f4e47ed,2
|
|
427
|
+
np.float32,0x7f08c779,0x7f800000,2
|
|
428
|
+
np.float32,0xbecc907a,0xbed20cec,2
|
|
429
|
+
np.float32,0x7d440002,0x7f800000,2
|
|
430
|
+
np.float32,0xbd410d80,0xbd411fcd,2
|
|
431
|
+
np.float32,0x3d63ae07,0x3d63cc0c,2
|
|
432
|
+
np.float32,0x805a9c13,0x805a9c13,2
|
|
433
|
+
np.float32,0x803bdcdc,0x803bdcdc,2
|
|
434
|
+
np.float32,0xbe88b354,0xbe8a5497,2
|
|
435
|
+
np.float32,0x3f4eaf43,0x3f65e1c2,2
|
|
436
|
+
np.float32,0x3f15e5b8,0x3f1e9c60,2
|
|
437
|
+
np.float32,0x3e8a870c,0x3e8c394e,2
|
|
438
|
+
np.float32,0x7e113de9,0x7f800000,2
|
|
439
|
+
np.float32,0x7ee5ba41,0x7f800000,2
|
|
440
|
+
np.float32,0xbe73d178,0xbe7620eb,2
|
|
441
|
+
np.float32,0xfe972e6a,0xff800000,2
|
|
442
|
+
np.float32,0xbf65567d,0xbf82a25a,2
|
|
443
|
+
np.float32,0x3f38247e,0x3f487010,2
|
|
444
|
+
np.float32,0xbece1c62,0xbed3b918,2
|
|
445
|
+
np.float32,0x442c8d,0x442c8d,2
|
|
446
|
+
np.float32,0x2dc52,0x2dc52,2
|
|
447
|
+
np.float32,0x802ed923,0x802ed923,2
|
|
448
|
+
np.float32,0x788cf8,0x788cf8,2
|
|
449
|
+
np.float32,0x8024888e,0x8024888e,2
|
|
450
|
+
np.float32,0x3f789bde,0x3f90c8fc,2
|
|
451
|
+
np.float32,0x3f5de620,0x3f7abf88,2
|
|
452
|
+
np.float32,0x3f0ffc45,0x3f17b2a7,2
|
|
453
|
+
np.float32,0xbf709678,0xbf8accd4,2
|
|
454
|
+
np.float32,0x12181f,0x12181f,2
|
|
455
|
+
np.float32,0xfe54bbe4,0xff800000,2
|
|
456
|
+
np.float32,0x7f1daba0,0x7f800000,2
|
|
457
|
+
np.float32,0xbf6226df,0xbf805e3c,2
|
|
458
|
+
np.float32,0xbd120610,0xbd120dfb,2
|
|
459
|
+
np.float32,0x7f75e951,0x7f800000,2
|
|
460
|
+
np.float32,0x80068048,0x80068048,2
|
|
461
|
+
np.float32,0x45f04a,0x45f04a,2
|
|
462
|
+
np.float32,0xff4c4f58,0xff800000,2
|
|
463
|
+
np.float32,0x311604,0x311604,2
|
|
464
|
+
np.float32,0x805e809c,0x805e809c,2
|
|
465
|
+
np.float32,0x3d1d62c0,0x3d1d6caa,2
|
|
466
|
+
np.float32,0x7f14ccf9,0x7f800000,2
|
|
467
|
+
np.float32,0xff10017c,0xff800000,2
|
|
468
|
+
np.float32,0xbf43ec48,0xbf579df4,2
|
|
469
|
+
np.float32,0xff64da57,0xff800000,2
|
|
470
|
+
np.float32,0x7f0622c5,0x7f800000,2
|
|
471
|
+
np.float32,0x7f5460cd,0x7f800000,2
|
|
472
|
+
np.float32,0xff0ef1c6,0xff800000,2
|
|
473
|
+
np.float32,0xbece1146,0xbed3ad13,2
|
|
474
|
+
np.float32,0x3f4d457f,0x3f63fc70,2
|
|
475
|
+
np.float32,0xbdc1da28,0xbdc2244b,2
|
|
476
|
+
np.float32,0xbe46d3f4,0xbe481463,2
|
|
477
|
+
np.float32,0xff36b3d6,0xff800000,2
|
|
478
|
+
np.float32,0xbec2e76c,0xbec7a540,2
|
|
479
|
+
np.float32,0x8078fb81,0x8078fb81,2
|
|
480
|
+
np.float32,0x7ec819cb,0x7f800000,2
|
|
481
|
+
np.float32,0x39c4d,0x39c4d,2
|
|
482
|
+
np.float32,0xbe8cddc2,0xbe8ea670,2
|
|
483
|
+
np.float32,0xbf36dffb,0xbf46d48b,2
|
|
484
|
+
np.float32,0xbf2302a3,0xbf2e4065,2
|
|
485
|
+
np.float32,0x3e7b34a2,0x3e7dbb9a,2
|
|
486
|
+
np.float32,0x3e3d87e1,0x3e3e9d62,2
|
|
487
|
+
np.float32,0x7f3c94b1,0x7f800000,2
|
|
488
|
+
np.float32,0x80455a85,0x80455a85,2
|
|
489
|
+
np.float32,0xfd875568,0xff800000,2
|
|
490
|
+
np.float32,0xbf618103,0xbf7fd1c8,2
|
|
491
|
+
np.float32,0xbe332e3c,0xbe3418ac,2
|
|
492
|
+
np.float32,0x80736b79,0x80736b79,2
|
|
493
|
+
np.float32,0x3f705d9a,0x3f8aa2e6,2
|
|
494
|
+
np.float32,0xbf3a36d2,0xbf4b134b,2
|
|
495
|
+
np.float32,0xfddc55c0,0xff800000,2
|
|
496
|
+
np.float32,0x805606fd,0x805606fd,2
|
|
497
|
+
np.float32,0x3f4f0bc4,0x3f665e25,2
|
|
498
|
+
np.float32,0xfebe7494,0xff800000,2
|
|
499
|
+
np.float32,0xff0c541b,0xff800000,2
|
|
500
|
+
np.float32,0xff0b8e7f,0xff800000,2
|
|
501
|
+
np.float32,0xbcc51640,0xbcc51b1e,2
|
|
502
|
+
np.float32,0x7ec1c4d0,0x7f800000,2
|
|
503
|
+
np.float32,0xfc5c8e00,0xff800000,2
|
|
504
|
+
np.float32,0x7f48d682,0x7f800000,2
|
|
505
|
+
np.float32,0x7d5c7d8d,0x7f800000,2
|
|
506
|
+
np.float32,0x8052ed03,0x8052ed03,2
|
|
507
|
+
np.float32,0x7d4db058,0x7f800000,2
|
|
508
|
+
np.float32,0xff3a65ee,0xff800000,2
|
|
509
|
+
np.float32,0x806eeb93,0x806eeb93,2
|
|
510
|
+
np.float32,0x803f9733,0x803f9733,2
|
|
511
|
+
np.float32,0xbf2d1388,0xbf3a90e3,2
|
|
512
|
+
np.float32,0x68e260,0x68e260,2
|
|
513
|
+
np.float32,0x3e47a69f,0x3e48eb0e,2
|
|
514
|
+
np.float32,0x3f0c4623,0x3f136646,2
|
|
515
|
+
np.float32,0x3f37a831,0x3f47d249,2
|
|
516
|
+
np.float32,0xff153a0c,0xff800000,2
|
|
517
|
+
np.float32,0x2e8086,0x2e8086,2
|
|
518
|
+
np.float32,0xc3f5e,0xc3f5e,2
|
|
519
|
+
np.float32,0x7f31dc14,0x7f800000,2
|
|
520
|
+
np.float32,0xfee37d68,0xff800000,2
|
|
521
|
+
np.float32,0x711d4,0x711d4,2
|
|
522
|
+
np.float32,0x7ede2ce4,0x7f800000,2
|
|
523
|
+
np.float32,0xbf5d76d0,0xbf7a23d0,2
|
|
524
|
+
np.float32,0xbe2b9eb4,0xbe2c6cac,2
|
|
525
|
+
np.float32,0x2b14d7,0x2b14d7,2
|
|
526
|
+
np.float32,0x3ea1db72,0x3ea4910e,2
|
|
527
|
+
np.float32,0x7f3f03f7,0x7f800000,2
|
|
528
|
+
np.float32,0x92de5,0x92de5,2
|
|
529
|
+
np.float32,0x80322e1b,0x80322e1b,2
|
|
530
|
+
np.float32,0xbf5eb214,0xbf7bdd55,2
|
|
531
|
+
np.float32,0xbf21bf87,0xbf2cba14,2
|
|
532
|
+
np.float32,0xbf5d4b78,0xbf79e73a,2
|
|
533
|
+
np.float32,0xbc302840,0xbc30291e,2
|
|
534
|
+
np.float32,0xfee567c6,0xff800000,2
|
|
535
|
+
np.float32,0x7f70ee14,0x7f800000,2
|
|
536
|
+
np.float32,0x7e5c4b33,0x7f800000,2
|
|
537
|
+
np.float32,0x3f1e7b64,0x3f28ccfd,2
|
|
538
|
+
np.float32,0xbf6309f7,0xbf80ff3e,2
|
|
539
|
+
np.float32,0x1c2fe3,0x1c2fe3,2
|
|
540
|
+
np.float32,0x8e78d,0x8e78d,2
|
|
541
|
+
np.float32,0x7f2fce73,0x7f800000,2
|
|
542
|
+
np.float32,0x7f25f690,0x7f800000,2
|
|
543
|
+
np.float32,0x8074cba5,0x8074cba5,2
|
|
544
|
+
np.float32,0x16975f,0x16975f,2
|
|
545
|
+
np.float32,0x8012cf5c,0x8012cf5c,2
|
|
546
|
+
np.float32,0x7da72138,0x7f800000,2
|
|
547
|
+
np.float32,0xbf563f35,0xbf7025be,2
|
|
548
|
+
np.float32,0x3f69d3f5,0x3f85dcbe,2
|
|
549
|
+
np.float32,0xbf15c148,0xbf1e7184,2
|
|
550
|
+
np.float32,0xbe7a077c,0xbe7c8564,2
|
|
551
|
+
np.float32,0x3ebb6ef1,0x3ebfa5e3,2
|
|
552
|
+
np.float32,0xbe41fde4,0xbe43277b,2
|
|
553
|
+
np.float32,0x7f10b479,0x7f800000,2
|
|
554
|
+
np.float32,0x3e021ace,0x3e02747d,2
|
|
555
|
+
np.float32,0x3e93d984,0x3e95e9be,2
|
|
556
|
+
np.float32,0xfe17e924,0xff800000,2
|
|
557
|
+
np.float32,0xfe21a7cc,0xff800000,2
|
|
558
|
+
np.float32,0x8019b660,0x8019b660,2
|
|
559
|
+
np.float32,0x7e954631,0x7f800000,2
|
|
560
|
+
np.float32,0x7e7330d1,0x7f800000,2
|
|
561
|
+
np.float32,0xbe007d98,0xbe00d3fb,2
|
|
562
|
+
np.float32,0x3ef3870e,0x3efcd077,2
|
|
563
|
+
np.float32,0x7f5bbde8,0x7f800000,2
|
|
564
|
+
np.float32,0x14a5b3,0x14a5b3,2
|
|
565
|
+
np.float32,0x3e84d23f,0x3e8650e8,2
|
|
566
|
+
np.float32,0x80763017,0x80763017,2
|
|
567
|
+
np.float32,0xfe871f36,0xff800000,2
|
|
568
|
+
np.float32,0x7ed43150,0x7f800000,2
|
|
569
|
+
np.float32,0x3cc44547,0x3cc44a16,2
|
|
570
|
+
np.float32,0x3ef0c0fa,0x3ef9b97d,2
|
|
571
|
+
np.float32,0xbede9944,0xbee5ad86,2
|
|
572
|
+
np.float32,0xbf10f0b2,0xbf18cf0a,2
|
|
573
|
+
np.float32,0x3ecdaa78,0x3ed33dd9,2
|
|
574
|
+
np.float32,0x3f7cc058,0x3f93ee6b,2
|
|
575
|
+
np.float32,0x2d952f,0x2d952f,2
|
|
576
|
+
np.float32,0x3f2cf2de,0x3f3a687a,2
|
|
577
|
+
np.float32,0x8029b33c,0x8029b33c,2
|
|
578
|
+
np.float32,0xbf22c737,0xbf2df888,2
|
|
579
|
+
np.float32,0xff53c84a,0xff800000,2
|
|
580
|
+
np.float32,0x40a509,0x40a509,2
|
|
581
|
+
np.float32,0x56abce,0x56abce,2
|
|
582
|
+
np.float32,0xff7fffff,0xff800000,2
|
|
583
|
+
np.float32,0xbf3e67f6,0xbf50741c,2
|
|
584
|
+
np.float32,0xfde67580,0xff800000,2
|
|
585
|
+
np.float32,0x3f103e9b,0x3f17ffc7,2
|
|
586
|
+
np.float32,0x3f3f7232,0x3f51cbe2,2
|
|
587
|
+
np.float32,0x803e6d78,0x803e6d78,2
|
|
588
|
+
np.float32,0x3a61da,0x3a61da,2
|
|
589
|
+
np.float32,0xbc04de80,0xbc04dedf,2
|
|
590
|
+
np.float32,0x7f1e7c52,0x7f800000,2
|
|
591
|
+
np.float32,0x8058ee88,0x8058ee88,2
|
|
592
|
+
np.float32,0x806dd660,0x806dd660,2
|
|
593
|
+
np.float32,0x7e4af9,0x7e4af9,2
|
|
594
|
+
np.float32,0x80702d27,0x80702d27,2
|
|
595
|
+
np.float32,0x802cdad1,0x802cdad1,2
|
|
596
|
+
np.float32,0x3e9b5c23,0x3e9dc149,2
|
|
597
|
+
np.float32,0x7f076e89,0x7f800000,2
|
|
598
|
+
np.float32,0x7f129d68,0x7f800000,2
|
|
599
|
+
np.float32,0x7f6f0b0a,0x7f800000,2
|
|
600
|
+
np.float32,0x7eafafb5,0x7f800000,2
|
|
601
|
+
np.float32,0xbf2ef2ca,0xbf3ce332,2
|
|
602
|
+
np.float32,0xff34c000,0xff800000,2
|
|
603
|
+
np.float32,0x7f559274,0x7f800000,2
|
|
604
|
+
np.float32,0xfed08556,0xff800000,2
|
|
605
|
+
np.float32,0xbf014621,0xbf06d6ad,2
|
|
606
|
+
np.float32,0xff23086a,0xff800000,2
|
|
607
|
+
np.float32,0x6cb33f,0x6cb33f,2
|
|
608
|
+
np.float32,0xfe6e3ffc,0xff800000,2
|
|
609
|
+
np.float32,0x3e6bbec0,0x3e6dd546,2
|
|
610
|
+
np.float32,0x8036afa6,0x8036afa6,2
|
|
611
|
+
np.float32,0xff800000,0xff800000,2
|
|
612
|
+
np.float32,0x3e0ed05c,0x3e0f46ff,2
|
|
613
|
+
np.float32,0x3ec9215c,0x3ece57e6,2
|
|
614
|
+
np.float32,0xbf449fa4,0xbf5888aa,2
|
|
615
|
+
np.float32,0xff2c6640,0xff800000,2
|
|
616
|
+
np.float32,0x7f08f4a7,0x7f800000,2
|
|
617
|
+
np.float32,0xbf4f63e5,0xbf66d4c1,2
|
|
618
|
+
np.float32,0x3f800000,0x3f966cfe,2
|
|
619
|
+
np.float32,0xfe86c7d2,0xff800000,2
|
|
620
|
+
np.float32,0x3f63f969,0x3f81a970,2
|
|
621
|
+
np.float32,0xbd7022d0,0xbd704609,2
|
|
622
|
+
np.float32,0xbead906c,0xbeb0e853,2
|
|
623
|
+
np.float32,0x7ef149ee,0x7f800000,2
|
|
624
|
+
np.float32,0xff0b9ff7,0xff800000,2
|
|
625
|
+
np.float32,0x3f38380d,0x3f4888e7,2
|
|
626
|
+
np.float32,0x3ef3a3e2,0x3efcf09e,2
|
|
627
|
+
np.float32,0xff616477,0xff800000,2
|
|
628
|
+
np.float32,0x3f3f83e4,0x3f51e2c3,2
|
|
629
|
+
np.float32,0xbf79963c,0xbf918642,2
|
|
630
|
+
np.float32,0x801416f4,0x801416f4,2
|
|
631
|
+
np.float32,0xff75ce6d,0xff800000,2
|
|
632
|
+
np.float32,0xbdbf3588,0xbdbf7cad,2
|
|
633
|
+
np.float32,0xbe6ea938,0xbe70d3dc,2
|
|
634
|
+
np.float32,0x8066f977,0x8066f977,2
|
|
635
|
+
np.float32,0x3f5b5362,0x3f7728aa,2
|
|
636
|
+
np.float32,0xbf72052c,0xbf8bdbd8,2
|
|
637
|
+
np.float32,0xbe21ed74,0xbe229a6f,2
|
|
638
|
+
np.float32,0x8062d19c,0x8062d19c,2
|
|
639
|
+
np.float32,0x3ed8d01f,0x3edf59e6,2
|
|
640
|
+
np.float32,0x803ed42b,0x803ed42b,2
|
|
641
|
+
np.float32,0xbe099a64,0xbe0a0481,2
|
|
642
|
+
np.float32,0xbe173eb4,0xbe17cba2,2
|
|
643
|
+
np.float32,0xbebdcf02,0xbec22faf,2
|
|
644
|
+
np.float32,0x7e3ff29e,0x7f800000,2
|
|
645
|
+
np.float32,0x367c92,0x367c92,2
|
|
646
|
+
np.float32,0xbf5c9db8,0xbf78f4a4,2
|
|
647
|
+
np.float32,0xff0b49ea,0xff800000,2
|
|
648
|
+
np.float32,0x3f4f9bc4,0x3f672001,2
|
|
649
|
+
np.float32,0x85d4a,0x85d4a,2
|
|
650
|
+
np.float32,0x80643e33,0x80643e33,2
|
|
651
|
+
np.float32,0x8013aabd,0x8013aabd,2
|
|
652
|
+
np.float32,0xff6997c3,0xff800000,2
|
|
653
|
+
np.float32,0x3f4dd43c,0x3f64bbb6,2
|
|
654
|
+
np.float32,0xff13bbb9,0xff800000,2
|
|
655
|
+
np.float32,0x3f34efa2,0x3f446187,2
|
|
656
|
+
np.float32,0x3e4b2f10,0x3e4c850d,2
|
|
657
|
+
np.float32,0xfef695c6,0xff800000,2
|
|
658
|
+
np.float32,0x7f7e0057,0x7f800000,2
|
|
659
|
+
np.float32,0x3f6e1b9c,0x3f88fa40,2
|
|
660
|
+
np.float32,0x806e46cf,0x806e46cf,2
|
|
661
|
+
np.float32,0x3f15a88a,0x3f1e546c,2
|
|
662
|
+
np.float32,0xbd2de7d0,0xbd2df530,2
|
|
663
|
+
np.float32,0xbf63cae0,0xbf818854,2
|
|
664
|
+
np.float32,0xbdc3e1a0,0xbdc42e1e,2
|
|
665
|
+
np.float32,0xbf11a038,0xbf199b98,2
|
|
666
|
+
np.float32,0xbec13706,0xbec5d56b,2
|
|
667
|
+
np.float32,0x3f1c5f54,0x3f26478d,2
|
|
668
|
+
np.float32,0x3e9ea97e,0x3ea136b4,2
|
|
669
|
+
np.float32,0xfeb5a508,0xff800000,2
|
|
670
|
+
np.float32,0x7f4698f4,0x7f800000,2
|
|
671
|
+
np.float32,0xff51ee2c,0xff800000,2
|
|
672
|
+
np.float32,0xff5994df,0xff800000,2
|
|
673
|
+
np.float32,0x4b9fb9,0x4b9fb9,2
|
|
674
|
+
np.float32,0xfda10d98,0xff800000,2
|
|
675
|
+
np.float32,0x525555,0x525555,2
|
|
676
|
+
np.float32,0x7ed571ef,0x7f800000,2
|
|
677
|
+
np.float32,0xbf600d18,0xbf7dc50c,2
|
|
678
|
+
np.float32,0x3ec674ca,0x3ecb768b,2
|
|
679
|
+
np.float32,0x3cb69115,0x3cb694f3,2
|
|
680
|
+
np.float32,0x7eac75f2,0x7f800000,2
|
|
681
|
+
np.float32,0x804d4d75,0x804d4d75,2
|
|
682
|
+
np.float32,0xfed5292e,0xff800000,2
|
|
683
|
+
np.float32,0x800ed06a,0x800ed06a,2
|
|
684
|
+
np.float32,0xfec37584,0xff800000,2
|
|
685
|
+
np.float32,0x3ef96ac7,0x3f01b326,2
|
|
686
|
+
np.float32,0x42f743,0x42f743,2
|
|
687
|
+
np.float32,0x3f56f442,0x3f711e39,2
|
|
688
|
+
np.float32,0xbf7ea726,0xbf956375,2
|
|
689
|
+
np.float32,0x806c7202,0x806c7202,2
|
|
690
|
+
np.float32,0xbd8ee980,0xbd8f0733,2
|
|
691
|
+
np.float32,0xbdf2e930,0xbdf37b18,2
|
|
692
|
+
np.float32,0x3f103910,0x3f17f955,2
|
|
693
|
+
np.float32,0xff123e8f,0xff800000,2
|
|
694
|
+
np.float32,0x806e4b5d,0x806e4b5d,2
|
|
695
|
+
np.float32,0xbf4f3bfc,0xbf669f07,2
|
|
696
|
+
np.float32,0xbf070c16,0xbf0d6609,2
|
|
697
|
+
np.float32,0xff00e0ba,0xff800000,2
|
|
698
|
+
np.float32,0xff49d828,0xff800000,2
|
|
699
|
+
np.float32,0x7e47f04a,0x7f800000,2
|
|
700
|
+
np.float32,0x7e984dac,0x7f800000,2
|
|
701
|
+
np.float32,0x3f77473c,0x3f8fc858,2
|
|
702
|
+
np.float32,0x3f017439,0x3f070ac8,2
|
|
703
|
+
np.float32,0x118417,0x118417,2
|
|
704
|
+
np.float32,0xbcf7a2c0,0xbcf7ac68,2
|
|
705
|
+
np.float32,0xfee46fee,0xff800000,2
|
|
706
|
+
np.float32,0x3e42a648,0x3e43d2e9,2
|
|
707
|
+
np.float32,0x80131916,0x80131916,2
|
|
708
|
+
np.float32,0x806209d3,0x806209d3,2
|
|
709
|
+
np.float32,0x807c1f12,0x807c1f12,2
|
|
710
|
+
np.float32,0x2f3696,0x2f3696,2
|
|
711
|
+
np.float32,0xff28722b,0xff800000,2
|
|
712
|
+
np.float32,0x7f1416a1,0x7f800000,2
|
|
713
|
+
np.float32,0x8054e7a1,0x8054e7a1,2
|
|
714
|
+
np.float32,0xbddc39a0,0xbddca656,2
|
|
715
|
+
np.float32,0x7dc60175,0x7f800000,2
|
|
716
|
+
np.float64,0x7fd0ae584da15cb0,0x7ff0000000000000,1
|
|
717
|
+
np.float64,0x7fd41d68e5283ad1,0x7ff0000000000000,1
|
|
718
|
+
np.float64,0x7fe93073bb7260e6,0x7ff0000000000000,1
|
|
719
|
+
np.float64,0x3fb4fd19d229fa34,0x3fb5031f57dbac0f,1
|
|
720
|
+
np.float64,0x85609ce10ac2,0x85609ce10ac2,1
|
|
721
|
+
np.float64,0xbfd7aa12ccaf5426,0xbfd8351003a320e2,1
|
|
722
|
+
np.float64,0x8004487c9b4890fa,0x8004487c9b4890fa,1
|
|
723
|
+
np.float64,0x7fe7584cfd2eb099,0x7ff0000000000000,1
|
|
724
|
+
np.float64,0x800ea8edc6dd51dc,0x800ea8edc6dd51dc,1
|
|
725
|
+
np.float64,0x3fe0924aa5a12495,0x3fe15276e271c6dc,1
|
|
726
|
+
np.float64,0x3feb1abf6d36357f,0x3fee76b4d3d06964,1
|
|
727
|
+
np.float64,0x3fa8c14534318280,0x3fa8c3bd5ce5923c,1
|
|
728
|
+
np.float64,0x800b9f5915d73eb3,0x800b9f5915d73eb3,1
|
|
729
|
+
np.float64,0xffc05aaa7820b554,0xfff0000000000000,1
|
|
730
|
+
np.float64,0x800157eda8c2afdc,0x800157eda8c2afdc,1
|
|
731
|
+
np.float64,0xffe8d90042b1b200,0xfff0000000000000,1
|
|
732
|
+
np.float64,0x3feda02ea93b405d,0x3ff1057e61d08d59,1
|
|
733
|
+
np.float64,0xffd03b7361a076e6,0xfff0000000000000,1
|
|
734
|
+
np.float64,0x3fe1a8ecd7e351da,0x3fe291eda9080847,1
|
|
735
|
+
np.float64,0xffc5bfdff82b7fc0,0xfff0000000000000,1
|
|
736
|
+
np.float64,0xbfe6fb3d386df67a,0xbfe9022c05df0565,1
|
|
737
|
+
np.float64,0x7fefffffffffffff,0x7ff0000000000000,1
|
|
738
|
+
np.float64,0x7fa10c340c221867,0x7ff0000000000000,1
|
|
739
|
+
np.float64,0x3fe55cbf1daab97e,0x3fe6fc1648258b75,1
|
|
740
|
+
np.float64,0xbfddeb5f60bbd6be,0xbfdf056d4fb5825f,1
|
|
741
|
+
np.float64,0xffddb1a8213b6350,0xfff0000000000000,1
|
|
742
|
+
np.float64,0xbfb20545e4240a88,0xbfb2091579375176,1
|
|
743
|
+
np.float64,0x3f735ded2026bbda,0x3f735df1dad4ee3a,1
|
|
744
|
+
np.float64,0xbfd1eb91efa3d724,0xbfd227c044dead61,1
|
|
745
|
+
np.float64,0xffd737c588ae6f8c,0xfff0000000000000,1
|
|
746
|
+
np.float64,0x3fc46818ec28d032,0x3fc47e416c4237a6,1
|
|
747
|
+
np.float64,0x0,0x0,1
|
|
748
|
+
np.float64,0xffb632097a2c6410,0xfff0000000000000,1
|
|
749
|
+
np.float64,0xbfcb5ae84b36b5d0,0xbfcb905613af55b8,1
|
|
750
|
+
np.float64,0xbfe7b926402f724c,0xbfe9f4f0be6aacc3,1
|
|
751
|
+
np.float64,0x80081840b3f03082,0x80081840b3f03082,1
|
|
752
|
+
np.float64,0x3fe767a656eecf4d,0x3fe98c53b4779de7,1
|
|
753
|
+
np.float64,0x8005834c088b0699,0x8005834c088b0699,1
|
|
754
|
+
np.float64,0x80074e92658e9d26,0x80074e92658e9d26,1
|
|
755
|
+
np.float64,0x80045d60c268bac2,0x80045d60c268bac2,1
|
|
756
|
+
np.float64,0xffb9aecfe8335da0,0xfff0000000000000,1
|
|
757
|
+
np.float64,0x7fcad3e1cd35a7c3,0x7ff0000000000000,1
|
|
758
|
+
np.float64,0xbf881853d03030c0,0xbf8818783e28fc87,1
|
|
759
|
+
np.float64,0xe18c6d23c318e,0xe18c6d23c318e,1
|
|
760
|
+
np.float64,0x7fcb367b8f366cf6,0x7ff0000000000000,1
|
|
761
|
+
np.float64,0x5c13436cb8269,0x5c13436cb8269,1
|
|
762
|
+
np.float64,0xffe5399938aa7332,0xfff0000000000000,1
|
|
763
|
+
np.float64,0xbfdc45dbc3b88bb8,0xbfdd33958222c27e,1
|
|
764
|
+
np.float64,0xbfd714691bae28d2,0xbfd7954edbef810b,1
|
|
765
|
+
np.float64,0xbfdf18b02b3e3160,0xbfe02ad13634c651,1
|
|
766
|
+
np.float64,0x8003e6f276e7cde6,0x8003e6f276e7cde6,1
|
|
767
|
+
np.float64,0x3febb6b412776d68,0x3fef4f753def31f9,1
|
|
768
|
+
np.float64,0x7fe016a3b4a02d46,0x7ff0000000000000,1
|
|
769
|
+
np.float64,0x3fdc899ac7b91336,0x3fdd7e1cee1cdfc8,1
|
|
770
|
+
np.float64,0x800219271e24324f,0x800219271e24324f,1
|
|
771
|
+
np.float64,0x1529d93e2a53c,0x1529d93e2a53c,1
|
|
772
|
+
np.float64,0x800d5bc827fab790,0x800d5bc827fab790,1
|
|
773
|
+
np.float64,0x3e1495107c293,0x3e1495107c293,1
|
|
774
|
+
np.float64,0x3fe89da0f2b13b42,0x3feb1dc1f3015ad7,1
|
|
775
|
+
np.float64,0x800ba8c17b975183,0x800ba8c17b975183,1
|
|
776
|
+
np.float64,0x8002dacf0265b59f,0x8002dacf0265b59f,1
|
|
777
|
+
np.float64,0xffe6d0a4cc2da149,0xfff0000000000000,1
|
|
778
|
+
np.float64,0x3fdf23fe82be47fc,0x3fe03126d8e2b309,1
|
|
779
|
+
np.float64,0xffe41b1f1c28363e,0xfff0000000000000,1
|
|
780
|
+
np.float64,0xbfd635c634ac6b8c,0xbfd6a8966da6adaa,1
|
|
781
|
+
np.float64,0x800755bc08eeab79,0x800755bc08eeab79,1
|
|
782
|
+
np.float64,0x800ba4c47c374989,0x800ba4c47c374989,1
|
|
783
|
+
np.float64,0x7fec9f7649793eec,0x7ff0000000000000,1
|
|
784
|
+
np.float64,0x7fdbf45738b7e8ad,0x7ff0000000000000,1
|
|
785
|
+
np.float64,0x3f5597f07eab4,0x3f5597f07eab4,1
|
|
786
|
+
np.float64,0xbfbf4599183e8b30,0xbfbf5985d8c65097,1
|
|
787
|
+
np.float64,0xbf5b200580364000,0xbf5b2006501b21ae,1
|
|
788
|
+
np.float64,0x7f91868370230d06,0x7ff0000000000000,1
|
|
789
|
+
np.float64,0x3838e2a67071d,0x3838e2a67071d,1
|
|
790
|
+
np.float64,0xffefe3ff5d3fc7fe,0xfff0000000000000,1
|
|
791
|
+
np.float64,0xffe66b26d06cd64d,0xfff0000000000000,1
|
|
792
|
+
np.float64,0xbfd830a571b0614a,0xbfd8c526927c742c,1
|
|
793
|
+
np.float64,0x7fe8442122f08841,0x7ff0000000000000,1
|
|
794
|
+
np.float64,0x800efa8c637df519,0x800efa8c637df519,1
|
|
795
|
+
np.float64,0xf0026835e004d,0xf0026835e004d,1
|
|
796
|
+
np.float64,0xffb11beefe2237e0,0xfff0000000000000,1
|
|
797
|
+
np.float64,0x3fef9bbb327f3776,0x3ff2809f10641c32,1
|
|
798
|
+
np.float64,0x350595306a0b3,0x350595306a0b3,1
|
|
799
|
+
np.float64,0xf7f6538befecb,0xf7f6538befecb,1
|
|
800
|
+
np.float64,0xffe36379c4a6c6f3,0xfff0000000000000,1
|
|
801
|
+
np.float64,0x28b1d82e5163c,0x28b1d82e5163c,1
|
|
802
|
+
np.float64,0x70a3d804e147c,0x70a3d804e147c,1
|
|
803
|
+
np.float64,0xffd96c1bc9b2d838,0xfff0000000000000,1
|
|
804
|
+
np.float64,0xffce8e00893d1c00,0xfff0000000000000,1
|
|
805
|
+
np.float64,0x800f2bdcb25e57b9,0x800f2bdcb25e57b9,1
|
|
806
|
+
np.float64,0xbfe0d9c63361b38c,0xbfe1a3eb02192b76,1
|
|
807
|
+
np.float64,0xbfdc7b8711b8f70e,0xbfdd6e9db3a01e51,1
|
|
808
|
+
np.float64,0x99e22ec133c46,0x99e22ec133c46,1
|
|
809
|
+
np.float64,0xffeaef6ddab5dedb,0xfff0000000000000,1
|
|
810
|
+
np.float64,0x7fe89c22c0f13845,0x7ff0000000000000,1
|
|
811
|
+
np.float64,0x8002d5207de5aa42,0x8002d5207de5aa42,1
|
|
812
|
+
np.float64,0x3fd1b13353236267,0x3fd1eb1b9345dfca,1
|
|
813
|
+
np.float64,0x800ccae0a41995c1,0x800ccae0a41995c1,1
|
|
814
|
+
np.float64,0x3fdbdaba38b7b574,0x3fdcbdfcbca37ce6,1
|
|
815
|
+
np.float64,0x5b06d12cb60db,0x5b06d12cb60db,1
|
|
816
|
+
np.float64,0xffd52262752a44c4,0xfff0000000000000,1
|
|
817
|
+
np.float64,0x5a17f050b42ff,0x5a17f050b42ff,1
|
|
818
|
+
np.float64,0x3d24205e7a485,0x3d24205e7a485,1
|
|
819
|
+
np.float64,0x7fbed4dec63da9bd,0x7ff0000000000000,1
|
|
820
|
+
np.float64,0xbfe56e9776aadd2f,0xbfe71212863c284f,1
|
|
821
|
+
np.float64,0x7fea0bc952341792,0x7ff0000000000000,1
|
|
822
|
+
np.float64,0x800f692d139ed25a,0x800f692d139ed25a,1
|
|
823
|
+
np.float64,0xffdb63feab36c7fe,0xfff0000000000000,1
|
|
824
|
+
np.float64,0x3fe1c2297fe38452,0x3fe2af21293c9571,1
|
|
825
|
+
np.float64,0x7fede384747bc708,0x7ff0000000000000,1
|
|
826
|
+
np.float64,0x800440169288802e,0x800440169288802e,1
|
|
827
|
+
np.float64,0xffe3241eeb26483e,0xfff0000000000000,1
|
|
828
|
+
np.float64,0xffe28f3879651e70,0xfff0000000000000,1
|
|
829
|
+
np.float64,0xa435cbc1486d,0xa435cbc1486d,1
|
|
830
|
+
np.float64,0x7fe55e08db6abc11,0x7ff0000000000000,1
|
|
831
|
+
np.float64,0x1405e624280be,0x1405e624280be,1
|
|
832
|
+
np.float64,0x3fd861bdf0b0c37c,0x3fd8f9d2e33e45e5,1
|
|
833
|
+
np.float64,0x3feeb67cdc3d6cfa,0x3ff1d337d81d1c14,1
|
|
834
|
+
np.float64,0x3fd159a10e22b342,0x3fd1903be7c2ea0c,1
|
|
835
|
+
np.float64,0x3fd84626bc308c4d,0x3fd8dc373645e65b,1
|
|
836
|
+
np.float64,0xffd3da81d9a7b504,0xfff0000000000000,1
|
|
837
|
+
np.float64,0xbfd4a768b8294ed2,0xbfd503aa7c240051,1
|
|
838
|
+
np.float64,0x3fe3059f2a660b3e,0x3fe42983e0c6bb2e,1
|
|
839
|
+
np.float64,0x3fe3b8353827706a,0x3fe4fdd635c7269b,1
|
|
840
|
+
np.float64,0xbfe4af0399695e07,0xbfe6277d9002b46c,1
|
|
841
|
+
np.float64,0xbfd7e18a92afc316,0xbfd87066b54c4fe6,1
|
|
842
|
+
np.float64,0x800432bcab48657a,0x800432bcab48657a,1
|
|
843
|
+
np.float64,0x80033d609d267ac2,0x80033d609d267ac2,1
|
|
844
|
+
np.float64,0x7fef5f758e7ebeea,0x7ff0000000000000,1
|
|
845
|
+
np.float64,0xbfed7833dbfaf068,0xbff0e85bf45a5ebc,1
|
|
846
|
+
np.float64,0x3fe2283985a45073,0x3fe325b0a9099c74,1
|
|
847
|
+
np.float64,0xe820b4b3d0417,0xe820b4b3d0417,1
|
|
848
|
+
np.float64,0x8003ecb72aa7d96f,0x8003ecb72aa7d96f,1
|
|
849
|
+
np.float64,0xbfeab2c755b5658f,0xbfede7c83e92a625,1
|
|
850
|
+
np.float64,0xbfc7b287f72f6510,0xbfc7d53ef2ffe9dc,1
|
|
851
|
+
np.float64,0xffd9a41d0f33483a,0xfff0000000000000,1
|
|
852
|
+
np.float64,0x3fd3a5b6e3a74b6c,0x3fd3f516f39a4725,1
|
|
853
|
+
np.float64,0x800bc72091578e42,0x800bc72091578e42,1
|
|
854
|
+
np.float64,0x800ff405ce9fe80c,0x800ff405ce9fe80c,1
|
|
855
|
+
np.float64,0x57918600af24,0x57918600af24,1
|
|
856
|
+
np.float64,0x2a5be7fa54b7e,0x2a5be7fa54b7e,1
|
|
857
|
+
np.float64,0xbfdca7886bb94f10,0xbfdd9f142b5b43e4,1
|
|
858
|
+
np.float64,0xbfe216993ee42d32,0xbfe3112936590995,1
|
|
859
|
+
np.float64,0xbfe06bd9cf20d7b4,0xbfe126cd353ab42f,1
|
|
860
|
+
np.float64,0x8003e6c31827cd87,0x8003e6c31827cd87,1
|
|
861
|
+
np.float64,0x8005f37d810be6fc,0x8005f37d810be6fc,1
|
|
862
|
+
np.float64,0x800715b081ae2b62,0x800715b081ae2b62,1
|
|
863
|
+
np.float64,0x3fef94c35bff2986,0x3ff27b4bed2f4051,1
|
|
864
|
+
np.float64,0x6f5798e0deb0,0x6f5798e0deb0,1
|
|
865
|
+
np.float64,0x3fcef1f05c3de3e1,0x3fcf3f557550598f,1
|
|
866
|
+
np.float64,0xbf9a91c400352380,0xbf9a92876273b85c,1
|
|
867
|
+
np.float64,0x3fc9143f7f322880,0x3fc93d678c05d26b,1
|
|
868
|
+
np.float64,0x78ad847af15b1,0x78ad847af15b1,1
|
|
869
|
+
np.float64,0x8000fdc088c1fb82,0x8000fdc088c1fb82,1
|
|
870
|
+
np.float64,0x800200fd304401fb,0x800200fd304401fb,1
|
|
871
|
+
np.float64,0x7fb8ab09dc315613,0x7ff0000000000000,1
|
|
872
|
+
np.float64,0x3fe949771b7292ee,0x3fec00891c3fc5a2,1
|
|
873
|
+
np.float64,0xbfc54cae0e2a995c,0xbfc565e0f3d0e3af,1
|
|
874
|
+
np.float64,0xffd546161e2a8c2c,0xfff0000000000000,1
|
|
875
|
+
np.float64,0x800fe1d1279fc3a2,0x800fe1d1279fc3a2,1
|
|
876
|
+
np.float64,0x3fd9c45301b388a8,0x3fda77fa1f4c79bf,1
|
|
877
|
+
np.float64,0x7fe10ff238221fe3,0x7ff0000000000000,1
|
|
878
|
+
np.float64,0xbfbc2181ae384300,0xbfbc3002229155c4,1
|
|
879
|
+
np.float64,0xbfe7bbfae4ef77f6,0xbfe9f895e91f468d,1
|
|
880
|
+
np.float64,0x800d3d994f7a7b33,0x800d3d994f7a7b33,1
|
|
881
|
+
np.float64,0xffe6e15a896dc2b4,0xfff0000000000000,1
|
|
882
|
+
np.float64,0x800e6b6c8abcd6d9,0x800e6b6c8abcd6d9,1
|
|
883
|
+
np.float64,0xbfd862c938b0c592,0xbfd8faf1cdcb09db,1
|
|
884
|
+
np.float64,0xffe2411f8464823e,0xfff0000000000000,1
|
|
885
|
+
np.float64,0xffd0b32efaa1665e,0xfff0000000000000,1
|
|
886
|
+
np.float64,0x3ac4ace475896,0x3ac4ace475896,1
|
|
887
|
+
np.float64,0xf9c3a7ebf3875,0xf9c3a7ebf3875,1
|
|
888
|
+
np.float64,0xdb998ba5b7332,0xdb998ba5b7332,1
|
|
889
|
+
np.float64,0xbfe438a14fe87142,0xbfe5981751e4c5cd,1
|
|
890
|
+
np.float64,0xbfbcf48cbc39e918,0xbfbd045d60e65d3a,1
|
|
891
|
+
np.float64,0x7fde499615bc932b,0x7ff0000000000000,1
|
|
892
|
+
np.float64,0x800bba269057744e,0x800bba269057744e,1
|
|
893
|
+
np.float64,0x3fc9bb1ba3337638,0x3fc9e78fdb6799c1,1
|
|
894
|
+
np.float64,0xffd9f974fbb3f2ea,0xfff0000000000000,1
|
|
895
|
+
np.float64,0x7fcf1ad1693e35a2,0x7ff0000000000000,1
|
|
896
|
+
np.float64,0x7fe5dcedd32bb9db,0x7ff0000000000000,1
|
|
897
|
+
np.float64,0xeb06500bd60ca,0xeb06500bd60ca,1
|
|
898
|
+
np.float64,0x7fd73e7b592e7cf6,0x7ff0000000000000,1
|
|
899
|
+
np.float64,0xbfe9d91ae873b236,0xbfecc08482849bcd,1
|
|
900
|
+
np.float64,0xffc85338b730a670,0xfff0000000000000,1
|
|
901
|
+
np.float64,0x7fbba41eee37483d,0x7ff0000000000000,1
|
|
902
|
+
np.float64,0x3fed5624fb7aac4a,0x3ff0cf9f0de1fd54,1
|
|
903
|
+
np.float64,0xffe566d80d6acdb0,0xfff0000000000000,1
|
|
904
|
+
np.float64,0x3fd4477884a88ef1,0x3fd49ec7acdd25a0,1
|
|
905
|
+
np.float64,0x3fcb98c5fd37318c,0x3fcbcfa20e2c2712,1
|
|
906
|
+
np.float64,0xffdeba71d5bd74e4,0xfff0000000000000,1
|
|
907
|
+
np.float64,0x8001edc59dc3db8c,0x8001edc59dc3db8c,1
|
|
908
|
+
np.float64,0x3fe6b09e896d613e,0x3fe8a3bb541ec0e3,1
|
|
909
|
+
np.float64,0x3fe8694b4970d296,0x3fead94d271d05cf,1
|
|
910
|
+
np.float64,0xb52c27bf6a585,0xb52c27bf6a585,1
|
|
911
|
+
np.float64,0x7fcb0a21d9361443,0x7ff0000000000000,1
|
|
912
|
+
np.float64,0xbfd9efc68cb3df8e,0xbfdaa7058c0ccbd1,1
|
|
913
|
+
np.float64,0x8007cd170fef9a2f,0x8007cd170fef9a2f,1
|
|
914
|
+
np.float64,0x3fe83325e770664c,0x3fea92c55c9d567e,1
|
|
915
|
+
np.float64,0x800bd0085537a011,0x800bd0085537a011,1
|
|
916
|
+
np.float64,0xffe05b9e7820b73c,0xfff0000000000000,1
|
|
917
|
+
np.float64,0x3fea4ce4347499c8,0x3fed5cea9fdc541b,1
|
|
918
|
+
np.float64,0x7fe08aae1921155b,0x7ff0000000000000,1
|
|
919
|
+
np.float64,0x3fe7a5e7deef4bd0,0x3fe9dc2e20cfb61c,1
|
|
920
|
+
np.float64,0xbfe0ccc8e6e19992,0xbfe195175f32ee3f,1
|
|
921
|
+
np.float64,0xbfe8649717f0c92e,0xbfead3298974dcf0,1
|
|
922
|
+
np.float64,0x7fed6c5308bad8a5,0x7ff0000000000000,1
|
|
923
|
+
np.float64,0xffdbd8c7af37b190,0xfff0000000000000,1
|
|
924
|
+
np.float64,0xbfb2bc4d06257898,0xbfb2c09569912839,1
|
|
925
|
+
np.float64,0x3fc62eca512c5d95,0x3fc64b4251bce8f9,1
|
|
926
|
+
np.float64,0xbfcae2ddbd35c5bc,0xbfcb15971fc61312,1
|
|
927
|
+
np.float64,0x18d26ce831a4f,0x18d26ce831a4f,1
|
|
928
|
+
np.float64,0x7fe38b279267164e,0x7ff0000000000000,1
|
|
929
|
+
np.float64,0x97e1d9ab2fc3b,0x97e1d9ab2fc3b,1
|
|
930
|
+
np.float64,0xbfee8e4785fd1c8f,0xbff1b52d16807627,1
|
|
931
|
+
np.float64,0xbfb189b4a6231368,0xbfb18d37e83860ee,1
|
|
932
|
+
np.float64,0xffd435761ea86aec,0xfff0000000000000,1
|
|
933
|
+
np.float64,0x3fe6c48ebced891e,0x3fe8bcea189c3867,1
|
|
934
|
+
np.float64,0x7fdadd3678b5ba6c,0x7ff0000000000000,1
|
|
935
|
+
np.float64,0x7fea8f15b7b51e2a,0x7ff0000000000000,1
|
|
936
|
+
np.float64,0xbff0000000000000,0xbff2cd9fc44eb982,1
|
|
937
|
+
np.float64,0x80004c071120980f,0x80004c071120980f,1
|
|
938
|
+
np.float64,0x8005367adfea6cf6,0x8005367adfea6cf6,1
|
|
939
|
+
np.float64,0x3fbdc9139a3b9220,0x3fbdda4aba667ce5,1
|
|
940
|
+
np.float64,0x7fed5ee3ad7abdc6,0x7ff0000000000000,1
|
|
941
|
+
np.float64,0x51563fb2a2ac9,0x51563fb2a2ac9,1
|
|
942
|
+
np.float64,0xbfba7d26ce34fa50,0xbfba894229c50ea1,1
|
|
943
|
+
np.float64,0x6c10db36d821c,0x6c10db36d821c,1
|
|
944
|
+
np.float64,0xbfbdaec0d03b5d80,0xbfbdbfca6ede64f4,1
|
|
945
|
+
np.float64,0x800a1cbe7414397d,0x800a1cbe7414397d,1
|
|
946
|
+
np.float64,0x800ae6e7f2d5cdd0,0x800ae6e7f2d5cdd0,1
|
|
947
|
+
np.float64,0x3fea63d3fef4c7a8,0x3fed7c1356688ddc,1
|
|
948
|
+
np.float64,0xbfde1e3a88bc3c76,0xbfdf3dfb09cc2260,1
|
|
949
|
+
np.float64,0xbfd082d75a2105ae,0xbfd0b1e28c84877b,1
|
|
950
|
+
np.float64,0x7fea1e5e85f43cbc,0x7ff0000000000000,1
|
|
951
|
+
np.float64,0xffe2237a1a6446f4,0xfff0000000000000,1
|
|
952
|
+
np.float64,0x3fd1e2be8523c57d,0x3fd21e93dfd1bbc4,1
|
|
953
|
+
np.float64,0x3fd1acd428a359a8,0x3fd1e6916a42bc3a,1
|
|
954
|
+
np.float64,0x61a152f0c342b,0x61a152f0c342b,1
|
|
955
|
+
np.float64,0xbfc61a6b902c34d8,0xbfc6369557690ba0,1
|
|
956
|
+
np.float64,0x7fd1a84b1f235095,0x7ff0000000000000,1
|
|
957
|
+
np.float64,0x1c5cc7e638b9a,0x1c5cc7e638b9a,1
|
|
958
|
+
np.float64,0x8008039755f0072f,0x8008039755f0072f,1
|
|
959
|
+
np.float64,0x80097532d6f2ea66,0x80097532d6f2ea66,1
|
|
960
|
+
np.float64,0xbfc6d979a12db2f4,0xbfc6f89777c53f8f,1
|
|
961
|
+
np.float64,0x8004293ab1085276,0x8004293ab1085276,1
|
|
962
|
+
np.float64,0x3fc2af5c21255eb8,0x3fc2c05dc0652554,1
|
|
963
|
+
np.float64,0xbfd9a5ab87b34b58,0xbfda56d1076abc98,1
|
|
964
|
+
np.float64,0xbfebd360ba77a6c2,0xbfef779fd6595f9b,1
|
|
965
|
+
np.float64,0xffd5313c43aa6278,0xfff0000000000000,1
|
|
966
|
+
np.float64,0xbfe994a262b32945,0xbfec64b969852ed5,1
|
|
967
|
+
np.float64,0x3fce01a52e3c034a,0x3fce48324eb29c31,1
|
|
968
|
+
np.float64,0x56bd74b2ad7af,0x56bd74b2ad7af,1
|
|
969
|
+
np.float64,0xb84093ff70813,0xb84093ff70813,1
|
|
970
|
+
np.float64,0x7fe776df946eedbe,0x7ff0000000000000,1
|
|
971
|
+
np.float64,0xbfe294ac2e652958,0xbfe3a480938afa26,1
|
|
972
|
+
np.float64,0x7fe741b4d0ee8369,0x7ff0000000000000,1
|
|
973
|
+
np.float64,0x800b7e8a1056fd15,0x800b7e8a1056fd15,1
|
|
974
|
+
np.float64,0x7fd28f1269251e24,0x7ff0000000000000,1
|
|
975
|
+
np.float64,0x8009d4492e73a893,0x8009d4492e73a893,1
|
|
976
|
+
np.float64,0x3fe3f27fca67e500,0x3fe543aff825e244,1
|
|
977
|
+
np.float64,0x3fd12447e5a24890,0x3fd158efe43c0452,1
|
|
978
|
+
np.float64,0xbfd58df0f2ab1be2,0xbfd5f6d908e3ebce,1
|
|
979
|
+
np.float64,0xffc0a8e4642151c8,0xfff0000000000000,1
|
|
980
|
+
np.float64,0xbfedb197787b632f,0xbff112367ec9d3e7,1
|
|
981
|
+
np.float64,0xffdde07a7f3bc0f4,0xfff0000000000000,1
|
|
982
|
+
np.float64,0x3fe91f3e5b723e7d,0x3febc886a1d48364,1
|
|
983
|
+
np.float64,0x3fe50415236a082a,0x3fe68f43a5468d8c,1
|
|
984
|
+
np.float64,0xd9a0c875b3419,0xd9a0c875b3419,1
|
|
985
|
+
np.float64,0xbfee04ccf4bc099a,0xbff14f4740a114cf,1
|
|
986
|
+
np.float64,0xbfd2bcc6a125798e,0xbfd30198b1e7d7ed,1
|
|
987
|
+
np.float64,0xbfeb3c16f8f6782e,0xbfeea4ce47d09f58,1
|
|
988
|
+
np.float64,0xffd3ba19e4a77434,0xfff0000000000000,1
|
|
989
|
+
np.float64,0x8010000000000000,0x8010000000000000,1
|
|
990
|
+
np.float64,0x3fdef0a642bde14d,0x3fe0146677b3a488,1
|
|
991
|
+
np.float64,0x3fdc3dd0a2b87ba0,0x3fdd2abe65651487,1
|
|
992
|
+
np.float64,0x3fdbb1fd47b763fb,0x3fdc915a2fd19f4b,1
|
|
993
|
+
np.float64,0x7fbaa375e63546eb,0x7ff0000000000000,1
|
|
994
|
+
np.float64,0x433ef8ee867e0,0x433ef8ee867e0,1
|
|
995
|
+
np.float64,0xf5345475ea68b,0xf5345475ea68b,1
|
|
996
|
+
np.float64,0xa126419b424c8,0xa126419b424c8,1
|
|
997
|
+
np.float64,0x3fe0057248200ae5,0x3fe0b2f488339709,1
|
|
998
|
+
np.float64,0xffc5e3b82f2bc770,0xfff0000000000000,1
|
|
999
|
+
np.float64,0xffb215c910242b90,0xfff0000000000000,1
|
|
1000
|
+
np.float64,0xbfeba4ae0837495c,0xbfef3642e4b54aac,1
|
|
1001
|
+
np.float64,0xffbb187ebe363100,0xfff0000000000000,1
|
|
1002
|
+
np.float64,0x3fe4c6a496a98d49,0x3fe64440cdf06aab,1
|
|
1003
|
+
np.float64,0x800767a28f6ecf46,0x800767a28f6ecf46,1
|
|
1004
|
+
np.float64,0x3fdbed63b1b7dac8,0x3fdcd27318c0b683,1
|
|
1005
|
+
np.float64,0x80006d8339e0db07,0x80006d8339e0db07,1
|
|
1006
|
+
np.float64,0x8000b504f0416a0b,0x8000b504f0416a0b,1
|
|
1007
|
+
np.float64,0xbfe88055bfb100ac,0xbfeaf767bd2767b9,1
|
|
1008
|
+
np.float64,0x3fefe503317fca06,0x3ff2b8d4057240c8,1
|
|
1009
|
+
np.float64,0x7fe307538b660ea6,0x7ff0000000000000,1
|
|
1010
|
+
np.float64,0x944963c12892d,0x944963c12892d,1
|
|
1011
|
+
np.float64,0xbfd2c20b38a58416,0xbfd30717900f8233,1
|
|
1012
|
+
np.float64,0x7feed04e3e3da09b,0x7ff0000000000000,1
|
|
1013
|
+
np.float64,0x3fe639619cac72c3,0x3fe80de7b8560a8d,1
|
|
1014
|
+
np.float64,0x3fde066c66bc0cd9,0x3fdf237fb759a652,1
|
|
1015
|
+
np.float64,0xbfc56b22b52ad644,0xbfc584c267a47ebd,1
|
|
1016
|
+
np.float64,0x3fc710d5b12e21ab,0x3fc730d817ba0d0c,1
|
|
1017
|
+
np.float64,0x3fee1dfc347c3bf8,0x3ff161d9c3e15f68,1
|
|
1018
|
+
np.float64,0x3fde400954bc8013,0x3fdf639e5cc9e7a9,1
|
|
1019
|
+
np.float64,0x56e701f8adce1,0x56e701f8adce1,1
|
|
1020
|
+
np.float64,0xbfe33bbc89e67779,0xbfe46996b39381fe,1
|
|
1021
|
+
np.float64,0x7fec89e2f87913c5,0x7ff0000000000000,1
|
|
1022
|
+
np.float64,0xbfdad58b40b5ab16,0xbfdba098cc0ad5d3,1
|
|
1023
|
+
np.float64,0x3fe99c76a13338ed,0x3fec6f31bae613e7,1
|
|
1024
|
+
np.float64,0x3fe4242a29a84854,0x3fe57f6b45e5c0ef,1
|
|
1025
|
+
np.float64,0xbfe79d3199ef3a63,0xbfe9d0fb96c846ba,1
|
|
1026
|
+
np.float64,0x7ff8000000000000,0x7ff8000000000000,1
|
|
1027
|
+
np.float64,0xbfeb35a6cf766b4e,0xbfee9be4e7e943f7,1
|
|
1028
|
+
np.float64,0x3e047f267c091,0x3e047f267c091,1
|
|
1029
|
+
np.float64,0x4bf1376a97e28,0x4bf1376a97e28,1
|
|
1030
|
+
np.float64,0x800ef419685de833,0x800ef419685de833,1
|
|
1031
|
+
np.float64,0x3fe0efa61a21df4c,0x3fe1bce98baf2f0f,1
|
|
1032
|
+
np.float64,0x3fcc13c4d738278a,0x3fcc4d8c778bcaf7,1
|
|
1033
|
+
np.float64,0x800f1d291afe3a52,0x800f1d291afe3a52,1
|
|
1034
|
+
np.float64,0x3fd3f10e6da7e21d,0x3fd444106761ea1d,1
|
|
1035
|
+
np.float64,0x800706d6d76e0dae,0x800706d6d76e0dae,1
|
|
1036
|
+
np.float64,0xffa1ffbc9023ff80,0xfff0000000000000,1
|
|
1037
|
+
np.float64,0xbfe098f26d6131e5,0xbfe15a08a5f3eac0,1
|
|
1038
|
+
np.float64,0x3fe984f9cc7309f4,0x3fec4fcdbdb1cb9b,1
|
|
1039
|
+
np.float64,0x7fd7c2f1eaaf85e3,0x7ff0000000000000,1
|
|
1040
|
+
np.float64,0x800a8adb64f515b7,0x800a8adb64f515b7,1
|
|
1041
|
+
np.float64,0x80060d3ffc8c1a81,0x80060d3ffc8c1a81,1
|
|
1042
|
+
np.float64,0xbfec37e4aef86fc9,0xbff0029a6a1d61e2,1
|
|
1043
|
+
np.float64,0x800b21bcfcf6437a,0x800b21bcfcf6437a,1
|
|
1044
|
+
np.float64,0xbfc08facc1211f58,0xbfc09b8380ea8032,1
|
|
1045
|
+
np.float64,0xffebb4b52577696a,0xfff0000000000000,1
|
|
1046
|
+
np.float64,0x800b08096df61013,0x800b08096df61013,1
|
|
1047
|
+
np.float64,0x8000000000000000,0x8000000000000000,1
|
|
1048
|
+
np.float64,0xffd2f0c9c8a5e194,0xfff0000000000000,1
|
|
1049
|
+
np.float64,0xffe78b2299af1644,0xfff0000000000000,1
|
|
1050
|
+
np.float64,0x7fd0444794a0888e,0x7ff0000000000000,1
|
|
1051
|
+
np.float64,0x307c47b460f8a,0x307c47b460f8a,1
|
|
1052
|
+
np.float64,0xffe6b4c851ad6990,0xfff0000000000000,1
|
|
1053
|
+
np.float64,0xffe1877224a30ee4,0xfff0000000000000,1
|
|
1054
|
+
np.float64,0x48d7b5c091af7,0x48d7b5c091af7,1
|
|
1055
|
+
np.float64,0xbfa1dc6b1c23b8d0,0xbfa1dd5889e1b7da,1
|
|
1056
|
+
np.float64,0x3fe5004737ea008e,0x3fe68a9c310b08c1,1
|
|
1057
|
+
np.float64,0x7fec5f0742b8be0e,0x7ff0000000000000,1
|
|
1058
|
+
np.float64,0x3fd0a86285a150c5,0x3fd0d8b238d557fa,1
|
|
1059
|
+
np.float64,0x7fed60380efac06f,0x7ff0000000000000,1
|
|
1060
|
+
np.float64,0xeeca74dfdd94f,0xeeca74dfdd94f,1
|
|
1061
|
+
np.float64,0x3fda05aaa8b40b54,0x3fdabebdbf405e84,1
|
|
1062
|
+
np.float64,0x800e530ceb1ca61a,0x800e530ceb1ca61a,1
|
|
1063
|
+
np.float64,0x800b3866379670cd,0x800b3866379670cd,1
|
|
1064
|
+
np.float64,0xffedb3e7fa3b67cf,0xfff0000000000000,1
|
|
1065
|
+
np.float64,0xffdfa4c0713f4980,0xfff0000000000000,1
|
|
1066
|
+
np.float64,0x7fe4679e0728cf3b,0x7ff0000000000000,1
|
|
1067
|
+
np.float64,0xffe978611ef2f0c2,0xfff0000000000000,1
|
|
1068
|
+
np.float64,0x7fc9f4601f33e8bf,0x7ff0000000000000,1
|
|
1069
|
+
np.float64,0x3fd4942de6a9285c,0x3fd4ef6e089357dd,1
|
|
1070
|
+
np.float64,0x3faafe064435fc00,0x3fab0139cd6564dc,1
|
|
1071
|
+
np.float64,0x800d145a519a28b5,0x800d145a519a28b5,1
|
|
1072
|
+
np.float64,0xbfd82636f2304c6e,0xbfd8b9f75ddd2f02,1
|
|
1073
|
+
np.float64,0xbfdf2e975e3e5d2e,0xbfe037174280788c,1
|
|
1074
|
+
np.float64,0x7fd7051d7c2e0a3a,0x7ff0000000000000,1
|
|
1075
|
+
np.float64,0x8007933d452f267b,0x8007933d452f267b,1
|
|
1076
|
+
np.float64,0xb2043beb64088,0xb2043beb64088,1
|
|
1077
|
+
np.float64,0x3febfd9708f7fb2e,0x3fefb2ef090f18d2,1
|
|
1078
|
+
np.float64,0xffd9bc6bc83378d8,0xfff0000000000000,1
|
|
1079
|
+
np.float64,0xc10f9fd3821f4,0xc10f9fd3821f4,1
|
|
1080
|
+
np.float64,0x3fe3c83413a79068,0x3fe510fa1dd8edf7,1
|
|
1081
|
+
np.float64,0x3fbe26ccda3c4da0,0x3fbe38a892279975,1
|
|
1082
|
+
np.float64,0x3fcc1873103830e6,0x3fcc5257a6ae168d,1
|
|
1083
|
+
np.float64,0xe7e000e9cfc00,0xe7e000e9cfc00,1
|
|
1084
|
+
np.float64,0xffda73852bb4e70a,0xfff0000000000000,1
|
|
1085
|
+
np.float64,0xbfe831be19f0637c,0xbfea90f1b34da3e5,1
|
|
1086
|
+
np.float64,0xbfeb568f3076ad1e,0xbfeec97eebfde862,1
|
|
1087
|
+
np.float64,0x510a6ad0a214e,0x510a6ad0a214e,1
|
|
1088
|
+
np.float64,0x3fe6ba7e35ed74fc,0x3fe8b032a9a28c6a,1
|
|
1089
|
+
np.float64,0xffeb5cdcff76b9b9,0xfff0000000000000,1
|
|
1090
|
+
np.float64,0x4f0a23e89e145,0x4f0a23e89e145,1
|
|
1091
|
+
np.float64,0x446ec20288dd9,0x446ec20288dd9,1
|
|
1092
|
+
np.float64,0x7fe2521b02e4a435,0x7ff0000000000000,1
|
|
1093
|
+
np.float64,0x8001cd2969e39a54,0x8001cd2969e39a54,1
|
|
1094
|
+
np.float64,0x3fdfe90600bfd20c,0x3fe09fdcca10001c,1
|
|
1095
|
+
np.float64,0x7fd660c5762cc18a,0x7ff0000000000000,1
|
|
1096
|
+
np.float64,0xbfb11b23aa223648,0xbfb11e661949b377,1
|
|
1097
|
+
np.float64,0x800e025285fc04a5,0x800e025285fc04a5,1
|
|
1098
|
+
np.float64,0xffb180bb18230178,0xfff0000000000000,1
|
|
1099
|
+
np.float64,0xaaf590df55eb2,0xaaf590df55eb2,1
|
|
1100
|
+
np.float64,0xbfe8637d9df0c6fb,0xbfead1ba429462ec,1
|
|
1101
|
+
np.float64,0x7fd2577866a4aef0,0x7ff0000000000000,1
|
|
1102
|
+
np.float64,0xbfcfb2ab5a3f6558,0xbfd002ee87f272b9,1
|
|
1103
|
+
np.float64,0x7fdd64ae2f3ac95b,0x7ff0000000000000,1
|
|
1104
|
+
np.float64,0xffd1a502c9234a06,0xfff0000000000000,1
|
|
1105
|
+
np.float64,0x7fc4be4b60297c96,0x7ff0000000000000,1
|
|
1106
|
+
np.float64,0xbfb46b712a28d6e0,0xbfb470fca9919172,1
|
|
1107
|
+
np.float64,0xffdef913033df226,0xfff0000000000000,1
|
|
1108
|
+
np.float64,0x3fd94a3545b2946b,0x3fd9f40431ce9f9c,1
|
|
1109
|
+
np.float64,0x7fef88a0b6ff1140,0x7ff0000000000000,1
|
|
1110
|
+
np.float64,0xbfbcc81876399030,0xbfbcd7a0ab6cb388,1
|
|
1111
|
+
np.float64,0x800a4acfdd9495a0,0x800a4acfdd9495a0,1
|
|
1112
|
+
np.float64,0xffe270b3d5e4e167,0xfff0000000000000,1
|
|
1113
|
+
np.float64,0xbfd23f601e247ec0,0xbfd27eeca50a49eb,1
|
|
1114
|
+
np.float64,0x7fec6e796a78dcf2,0x7ff0000000000000,1
|
|
1115
|
+
np.float64,0x3fb85e0c9630bc19,0x3fb867791ccd6c72,1
|
|
1116
|
+
np.float64,0x7fe49fc424a93f87,0x7ff0000000000000,1
|
|
1117
|
+
np.float64,0xbfe75a99fbaeb534,0xbfe97ba37663de4c,1
|
|
1118
|
+
np.float64,0xffe85011b630a023,0xfff0000000000000,1
|
|
1119
|
+
np.float64,0xffe5962e492b2c5c,0xfff0000000000000,1
|
|
1120
|
+
np.float64,0x6f36ed4cde6de,0x6f36ed4cde6de,1
|
|
1121
|
+
np.float64,0x3feb72170af6e42e,0x3feeefbe6f1a2084,1
|
|
1122
|
+
np.float64,0x80014d8d60629b1c,0x80014d8d60629b1c,1
|
|
1123
|
+
np.float64,0xbfe0eb40d321d682,0xbfe1b7e31f252bf1,1
|
|
1124
|
+
np.float64,0x31fe305663fc7,0x31fe305663fc7,1
|
|
1125
|
+
np.float64,0x3fd2cd6381a59ac7,0x3fd312edc9868a4d,1
|
|
1126
|
+
np.float64,0xffcf0720793e0e40,0xfff0000000000000,1
|
|
1127
|
+
np.float64,0xbfeef1ef133de3de,0xbff1ffd5e1a3b648,1
|
|
1128
|
+
np.float64,0xbfd01c787aa038f0,0xbfd0482be3158a01,1
|
|
1129
|
+
np.float64,0x3fda3607c5b46c10,0x3fdaf3301e217301,1
|
|
1130
|
+
np.float64,0xffda9a9911b53532,0xfff0000000000000,1
|
|
1131
|
+
np.float64,0x3fc0b37c392166f8,0x3fc0bfa076f3c43e,1
|
|
1132
|
+
np.float64,0xbfe06591c760cb24,0xbfe11fad179ea12c,1
|
|
1133
|
+
np.float64,0x8006e369c20dc6d4,0x8006e369c20dc6d4,1
|
|
1134
|
+
np.float64,0x3fdf2912a8be5224,0x3fe033ff74b92f4d,1
|
|
1135
|
+
np.float64,0xffc0feb07821fd60,0xfff0000000000000,1
|
|
1136
|
+
np.float64,0xa4b938c949727,0xa4b938c949727,1
|
|
1137
|
+
np.float64,0x8008fe676571fccf,0x8008fe676571fccf,1
|
|
1138
|
+
np.float64,0xbfdda68459bb4d08,0xbfdeb8faab34fcbc,1
|
|
1139
|
+
np.float64,0xbfda18b419343168,0xbfdad360ca52ec7c,1
|
|
1140
|
+
np.float64,0x3febcbae35b7975c,0x3fef6cd51c9ebc15,1
|
|
1141
|
+
np.float64,0x3fbec615f63d8c30,0x3fbed912ba729926,1
|
|
1142
|
+
np.float64,0x7f99a831c8335063,0x7ff0000000000000,1
|
|
1143
|
+
np.float64,0x3fe663e8826cc7d1,0x3fe84330bd9aada8,1
|
|
1144
|
+
np.float64,0x70a9f9e6e1540,0x70a9f9e6e1540,1
|
|
1145
|
+
np.float64,0x8a13a5db14275,0x8a13a5db14275,1
|
|
1146
|
+
np.float64,0x7fc4330a3b286613,0x7ff0000000000000,1
|
|
1147
|
+
np.float64,0xbfe580c6136b018c,0xbfe728806cc7a99a,1
|
|
1148
|
+
np.float64,0x8000000000000001,0x8000000000000001,1
|
|
1149
|
+
np.float64,0xffec079d5df80f3a,0xfff0000000000000,1
|
|
1150
|
+
np.float64,0x8e1173c31c22f,0x8e1173c31c22f,1
|
|
1151
|
+
np.float64,0x3fe088456d21108b,0x3fe14712ca414103,1
|
|
1152
|
+
np.float64,0x3fe1b76f73636edf,0x3fe2a2b658557112,1
|
|
1153
|
+
np.float64,0xbfd4a1dd162943ba,0xbfd4fdd45cae8fb8,1
|
|
1154
|
+
np.float64,0x7fd60b46c8ac168d,0x7ff0000000000000,1
|
|
1155
|
+
np.float64,0xffe36cc3b166d987,0xfff0000000000000,1
|
|
1156
|
+
np.float64,0x3fdc2ae0cfb855c0,0x3fdd15f026773151,1
|
|
1157
|
+
np.float64,0xbfc41aa203283544,0xbfc42fd1b145fdd5,1
|
|
1158
|
+
np.float64,0xffed90c55fbb218a,0xfff0000000000000,1
|
|
1159
|
+
np.float64,0x3fe67e3a9aecfc75,0x3fe86440db65b4f6,1
|
|
1160
|
+
np.float64,0x7fd12dbeaba25b7c,0x7ff0000000000000,1
|
|
1161
|
+
np.float64,0xbfe1267c0de24cf8,0xbfe1fbb611bdf1e9,1
|
|
1162
|
+
np.float64,0x22e5619645cad,0x22e5619645cad,1
|
|
1163
|
+
np.float64,0x7fe327c72ea64f8d,0x7ff0000000000000,1
|
|
1164
|
+
np.float64,0x7fd2c3f545a587ea,0x7ff0000000000000,1
|
|
1165
|
+
np.float64,0x7fc7b689372f6d11,0x7ff0000000000000,1
|
|
1166
|
+
np.float64,0xc5e140bd8bc28,0xc5e140bd8bc28,1
|
|
1167
|
+
np.float64,0x3fccb3627a3966c5,0x3fccf11b44fa4102,1
|
|
1168
|
+
np.float64,0xbfd2cf725c259ee4,0xbfd315138d0e5dca,1
|
|
1169
|
+
np.float64,0x10000000000000,0x10000000000000,1
|
|
1170
|
+
np.float64,0xbfd3dfa8b627bf52,0xbfd431d17b235477,1
|
|
1171
|
+
np.float64,0xbfb82124e6304248,0xbfb82a4b6d9c2663,1
|
|
1172
|
+
np.float64,0x3fdcd590d9b9ab22,0x3fddd1d548806347,1
|
|
1173
|
+
np.float64,0x7fdee0cd1b3dc199,0x7ff0000000000000,1
|
|
1174
|
+
np.float64,0x8004ebfc60a9d7fa,0x8004ebfc60a9d7fa,1
|
|
1175
|
+
np.float64,0x3fe8eb818b71d704,0x3feb842679806108,1
|
|
1176
|
+
np.float64,0xffdd5e8fe63abd20,0xfff0000000000000,1
|
|
1177
|
+
np.float64,0xbfe3efcbd9e7df98,0xbfe54071436645ee,1
|
|
1178
|
+
np.float64,0x3fd5102557aa204b,0x3fd57203d31a05b8,1
|
|
1179
|
+
np.float64,0x3fe6318af7ec6316,0x3fe8041a177cbf96,1
|
|
1180
|
+
np.float64,0x3fdf3cecdabe79da,0x3fe03f2084ffbc78,1
|
|
1181
|
+
np.float64,0x7fe0ab6673a156cc,0x7ff0000000000000,1
|
|
1182
|
+
np.float64,0x800037d5c6c06fac,0x800037d5c6c06fac,1
|
|
1183
|
+
np.float64,0xffce58b86a3cb170,0xfff0000000000000,1
|
|
1184
|
+
np.float64,0xbfe3455d6ce68abb,0xbfe475034cecb2b8,1
|
|
1185
|
+
np.float64,0x991b663d3236d,0x991b663d3236d,1
|
|
1186
|
+
np.float64,0x3fda82d37c3505a7,0x3fdb46973da05c12,1
|
|
1187
|
+
np.float64,0x3f9b736fa036e6df,0x3f9b74471c234411,1
|
|
1188
|
+
np.float64,0x8001c96525e392cb,0x8001c96525e392cb,1
|
|
1189
|
+
np.float64,0x7ff0000000000000,0x7ff0000000000000,1
|
|
1190
|
+
np.float64,0xbfaf59122c3eb220,0xbfaf5e15f8b272b0,1
|
|
1191
|
+
np.float64,0xbf9aa7d288354fa0,0xbf9aa897d2a40cb5,1
|
|
1192
|
+
np.float64,0x8004a43428694869,0x8004a43428694869,1
|
|
1193
|
+
np.float64,0x7feead476dbd5a8e,0x7ff0000000000000,1
|
|
1194
|
+
np.float64,0xffca150f81342a20,0xfff0000000000000,1
|
|
1195
|
+
np.float64,0x80047ec3bc88fd88,0x80047ec3bc88fd88,1
|
|
1196
|
+
np.float64,0xbfee3e5b123c7cb6,0xbff179c8b8334278,1
|
|
1197
|
+
np.float64,0x3fd172359f22e46b,0x3fd1a9ba6b1420a1,1
|
|
1198
|
+
np.float64,0x3fe8e5e242f1cbc5,0x3feb7cbcaefc4d5c,1
|
|
1199
|
+
np.float64,0x8007fb059a6ff60c,0x8007fb059a6ff60c,1
|
|
1200
|
+
np.float64,0xe3899e71c7134,0xe3899e71c7134,1
|
|
1201
|
+
np.float64,0x7fe3b98326a77305,0x7ff0000000000000,1
|
|
1202
|
+
np.float64,0x7fec4e206cb89c40,0x7ff0000000000000,1
|
|
1203
|
+
np.float64,0xbfa3b012c4276020,0xbfa3b150c13b3cc5,1
|
|
1204
|
+
np.float64,0xffefffffffffffff,0xfff0000000000000,1
|
|
1205
|
+
np.float64,0xffe28a5b9aa514b6,0xfff0000000000000,1
|
|
1206
|
+
np.float64,0xbfd76a6cc2aed4da,0xbfd7f10f4d04e7f6,1
|
|
1207
|
+
np.float64,0xbc2b1c0178564,0xbc2b1c0178564,1
|
|
1208
|
+
np.float64,0x6d9d444adb3a9,0x6d9d444adb3a9,1
|
|
1209
|
+
np.float64,0xbfdcadd368395ba6,0xbfdda6037b5c429c,1
|
|
1210
|
+
np.float64,0x3fe11891fde23124,0x3fe1ebc1c204b14b,1
|
|
1211
|
+
np.float64,0x3fdd66c3eebacd88,0x3fde72526b5304c4,1
|
|
1212
|
+
np.float64,0xbfe79d85612f3b0b,0xbfe9d1673bd1f6d6,1
|
|
1213
|
+
np.float64,0x3fed60abdabac158,0x3ff0d7426b3800a2,1
|
|
1214
|
+
np.float64,0xbfb0ffa54021ff48,0xbfb102d81073a9f0,1
|
|
1215
|
+
np.float64,0xd2452af5a48a6,0xd2452af5a48a6,1
|
|
1216
|
+
np.float64,0xf4b835c1e971,0xf4b835c1e971,1
|
|
1217
|
+
np.float64,0x7e269cdafc4d4,0x7e269cdafc4d4,1
|
|
1218
|
+
np.float64,0x800097a21d812f45,0x800097a21d812f45,1
|
|
1219
|
+
np.float64,0x3fdfcc85e8bf990c,0x3fe08fcf770fd456,1
|
|
1220
|
+
np.float64,0xd8d53155b1aa6,0xd8d53155b1aa6,1
|
|
1221
|
+
np.float64,0x7fb8ed658831daca,0x7ff0000000000000,1
|
|
1222
|
+
np.float64,0xbfec865415b90ca8,0xbff03a4584d719f9,1
|
|
1223
|
+
np.float64,0xffd8cda62a319b4c,0xfff0000000000000,1
|
|
1224
|
+
np.float64,0x273598d84e6b4,0x273598d84e6b4,1
|
|
1225
|
+
np.float64,0x7fd566b5c32acd6b,0x7ff0000000000000,1
|
|
1226
|
+
np.float64,0xff61d9d48023b400,0xfff0000000000000,1
|
|
1227
|
+
np.float64,0xbfec5c3bf4f8b878,0xbff01c594243337c,1
|
|
1228
|
+
np.float64,0x7fd1be0561a37c0a,0x7ff0000000000000,1
|
|
1229
|
+
np.float64,0xffeaee3271b5dc64,0xfff0000000000000,1
|
|
1230
|
+
np.float64,0x800c0e1931b81c33,0x800c0e1931b81c33,1
|
|
1231
|
+
np.float64,0xbfad1171583a22e0,0xbfad1570e5c466d2,1
|
|
1232
|
+
np.float64,0x7fd783b0fe2f0761,0x7ff0000000000000,1
|
|
1233
|
+
np.float64,0x7fc39903e6273207,0x7ff0000000000000,1
|
|
1234
|
+
np.float64,0xffe00003c5600007,0xfff0000000000000,1
|
|
1235
|
+
np.float64,0x35a7b9c06b50,0x35a7b9c06b50,1
|
|
1236
|
+
np.float64,0x7fee441a22bc8833,0x7ff0000000000000,1
|
|
1237
|
+
np.float64,0xff6e47fbc03c9000,0xfff0000000000000,1
|
|
1238
|
+
np.float64,0xbfd3c3c9c8a78794,0xbfd41499b1912534,1
|
|
1239
|
+
np.float64,0x82c9c87f05939,0x82c9c87f05939,1
|
|
1240
|
+
np.float64,0xbfedeb0fe4fbd620,0xbff13c573ce9d3d0,1
|
|
1241
|
+
np.float64,0x2b79298656f26,0x2b79298656f26,1
|
|
1242
|
+
np.float64,0xbf5ee44f003dc800,0xbf5ee4503353c0ba,1
|
|
1243
|
+
np.float64,0xbfe1dd264e63ba4c,0xbfe2ce68116c7bf6,1
|
|
1244
|
+
np.float64,0x3fece10b7579c217,0x3ff07b21b11799c6,1
|
|
1245
|
+
np.float64,0x3fba47143a348e28,0x3fba52e601adf24c,1
|
|
1246
|
+
np.float64,0xffe9816e7a7302dc,0xfff0000000000000,1
|
|
1247
|
+
np.float64,0x8009a8047fd35009,0x8009a8047fd35009,1
|
|
1248
|
+
np.float64,0x800ac28e4e95851d,0x800ac28e4e95851d,1
|
|
1249
|
+
np.float64,0x80093facf4f27f5a,0x80093facf4f27f5a,1
|
|
1250
|
+
np.float64,0x3ff0000000000000,0x3ff2cd9fc44eb982,1
|
|
1251
|
+
np.float64,0x3fe76a9857eed530,0x3fe99018a5895a4f,1
|
|
1252
|
+
np.float64,0xbfd13c59a3a278b4,0xbfd171e133df0b16,1
|
|
1253
|
+
np.float64,0x7feb43bc83368778,0x7ff0000000000000,1
|
|
1254
|
+
np.float64,0xbfe2970c5fa52e18,0xbfe3a74a434c6efe,1
|
|
1255
|
+
np.float64,0xffd091c380212388,0xfff0000000000000,1
|
|
1256
|
+
np.float64,0x3febb3b9d2f76774,0x3fef4b4af2bd8580,1
|
|
1257
|
+
np.float64,0x7fec66787ef8ccf0,0x7ff0000000000000,1
|
|
1258
|
+
np.float64,0xbf935e185826bc40,0xbf935e640557a354,1
|
|
1259
|
+
np.float64,0x979df1552f3be,0x979df1552f3be,1
|
|
1260
|
+
np.float64,0x7fc096ee73212ddc,0x7ff0000000000000,1
|
|
1261
|
+
np.float64,0xbfe9de88faf3bd12,0xbfecc7d1ae691d1b,1
|
|
1262
|
+
np.float64,0x7fdc733f06b8e67d,0x7ff0000000000000,1
|
|
1263
|
+
np.float64,0xffd71be1a0ae37c4,0xfff0000000000000,1
|
|
1264
|
+
np.float64,0xb50dabd36a1b6,0xb50dabd36a1b6,1
|
|
1265
|
+
np.float64,0x7fce3d94d63c7b29,0x7ff0000000000000,1
|
|
1266
|
+
np.float64,0x7fbaf95e4435f2bc,0x7ff0000000000000,1
|
|
1267
|
+
np.float64,0x81a32a6f03466,0x81a32a6f03466,1
|
|
1268
|
+
np.float64,0xa99b5b4d5336c,0xa99b5b4d5336c,1
|
|
1269
|
+
np.float64,0x7f97c1eeb82f83dc,0x7ff0000000000000,1
|
|
1270
|
+
np.float64,0x3fe761636d6ec2c6,0x3fe98451160d2ffb,1
|
|
1271
|
+
np.float64,0xbfe3224ef5e6449e,0xbfe44b73eeadac52,1
|
|
1272
|
+
np.float64,0x7fde6feb0dbcdfd5,0x7ff0000000000000,1
|
|
1273
|
+
np.float64,0xbfee87f9ca7d0ff4,0xbff1b079e9d7f706,1
|
|
1274
|
+
np.float64,0x3fe46f4c9828de99,0x3fe5da2ab9609ea5,1
|
|
1275
|
+
np.float64,0xffb92fe882325fd0,0xfff0000000000000,1
|
|
1276
|
+
np.float64,0x80054bc63cea978d,0x80054bc63cea978d,1
|
|
1277
|
+
np.float64,0x3d988bea7b312,0x3d988bea7b312,1
|
|
1278
|
+
np.float64,0x3fe6468e1d6c8d1c,0x3fe81e64d37d39a8,1
|
|
1279
|
+
np.float64,0x3fd68eefc22d1de0,0x3fd7074264faeead,1
|
|
1280
|
+
np.float64,0xffb218a074243140,0xfff0000000000000,1
|
|
1281
|
+
np.float64,0x3fdbcb3b6cb79678,0x3fdcad011de40b7d,1
|
|
1282
|
+
np.float64,0x7fe3c161772782c2,0x7ff0000000000000,1
|
|
1283
|
+
np.float64,0x25575c904aaec,0x25575c904aaec,1
|
|
1284
|
+
np.float64,0x800fa43a8f5f4875,0x800fa43a8f5f4875,1
|
|
1285
|
+
np.float64,0x3fe41fc9e1e83f94,0x3fe57a25dd1a37f1,1
|
|
1286
|
+
np.float64,0x3fd895f4a7b12be9,0x3fd931e7b721a08a,1
|
|
1287
|
+
np.float64,0xce31469f9c629,0xce31469f9c629,1
|
|
1288
|
+
np.float64,0xffea0f55ca341eab,0xfff0000000000000,1
|
|
1289
|
+
np.float64,0xffe831c9ba306393,0xfff0000000000000,1
|
|
1290
|
+
np.float64,0x7fe2056f03a40add,0x7ff0000000000000,1
|
|
1291
|
+
np.float64,0x7fd6b075e02d60eb,0x7ff0000000000000,1
|
|
1292
|
+
np.float64,0x3fdfbef4273f7de8,0x3fe0882c1f59efc0,1
|
|
1293
|
+
np.float64,0x8005b9e094ab73c2,0x8005b9e094ab73c2,1
|
|
1294
|
+
np.float64,0x3fea881ac6351036,0x3fedad7a319b887c,1
|
|
1295
|
+
np.float64,0xbfe2c61c7ee58c39,0xbfe3de9a99d8a9c6,1
|
|
1296
|
+
np.float64,0x30b0d3786161b,0x30b0d3786161b,1
|
|
1297
|
+
np.float64,0x3fa51d56a02a3aad,0x3fa51edee2d2ecef,1
|
|
1298
|
+
np.float64,0x79745732f2e8c,0x79745732f2e8c,1
|
|
1299
|
+
np.float64,0x800d55b4907aab69,0x800d55b4907aab69,1
|
|
1300
|
+
np.float64,0xbfbe8fcf0a3d1fa0,0xbfbea267fbb5bfdf,1
|
|
1301
|
+
np.float64,0xbfd04e2756a09c4e,0xbfd07b74d079f9a2,1
|
|
1302
|
+
np.float64,0x3fc65170552ca2e1,0x3fc66e6eb00c82ed,1
|
|
1303
|
+
np.float64,0xbfb0674b8020ce98,0xbfb06a2b4771b64c,1
|
|
1304
|
+
np.float64,0x2059975840b34,0x2059975840b34,1
|
|
1305
|
+
np.float64,0x33d1385467a28,0x33d1385467a28,1
|
|
1306
|
+
np.float64,0x3fea41b74ff4836f,0x3fed4dc1a09e53cc,1
|
|
1307
|
+
np.float64,0xbfe8e08c9d71c119,0xbfeb75b4c59a6bec,1
|
|
1308
|
+
np.float64,0x7fdbbf14d6377e29,0x7ff0000000000000,1
|
|
1309
|
+
np.float64,0x3fcd8b71513b16e0,0x3fcdcec80174f9ad,1
|
|
1310
|
+
np.float64,0x5c50bc94b8a18,0x5c50bc94b8a18,1
|
|
1311
|
+
np.float64,0x969a18f52d343,0x969a18f52d343,1
|
|
1312
|
+
np.float64,0x3fd7ae44462f5c89,0x3fd8398bc34e395c,1
|
|
1313
|
+
np.float64,0xffdd0f8617ba1f0c,0xfff0000000000000,1
|
|
1314
|
+
np.float64,0xfff0000000000000,0xfff0000000000000,1
|
|
1315
|
+
np.float64,0xbfe2f9badb65f376,0xbfe41b771320ece8,1
|
|
1316
|
+
np.float64,0x3fd140bc7fa29,0x3fd140bc7fa29,1
|
|
1317
|
+
np.float64,0xbfe14523b5628a48,0xbfe21ee850972043,1
|
|
1318
|
+
np.float64,0x3feedd0336bdba06,0x3ff1f01afc1f3a06,1
|
|
1319
|
+
np.float64,0x800de423ad7bc848,0x800de423ad7bc848,1
|
|
1320
|
+
np.float64,0x4cef857c99df1,0x4cef857c99df1,1
|
|
1321
|
+
np.float64,0xbfea55e0e374abc2,0xbfed691e41d648dd,1
|
|
1322
|
+
np.float64,0x3fe70d7a18ae1af4,0x3fe91955a34d8094,1
|
|
1323
|
+
np.float64,0xbfc62fc3032c5f88,0xbfc64c3ec25decb8,1
|
|
1324
|
+
np.float64,0x3fc915abb5322b58,0x3fc93edac5cc73fe,1
|
|
1325
|
+
np.float64,0x69aaff66d3561,0x69aaff66d3561,1
|
|
1326
|
+
np.float64,0x5c6a90f2b8d53,0x5c6a90f2b8d53,1
|
|
1327
|
+
np.float64,0x3fefe30dc1bfc61c,0x3ff2b752257bdacd,1
|
|
1328
|
+
np.float64,0x3fef15db15fe2bb6,0x3ff21aea05601396,1
|
|
1329
|
+
np.float64,0xbfe353e5ac66a7cc,0xbfe48644e6553d1a,1
|
|
1330
|
+
np.float64,0x3fe6d30cffada61a,0x3fe8cf3e4c61ddac,1
|
|
1331
|
+
np.float64,0x7fb7857eb62f0afc,0x7ff0000000000000,1
|
|
1332
|
+
np.float64,0xbfdd9b53d23b36a8,0xbfdeac91a7af1340,1
|
|
1333
|
+
np.float64,0x3fd1456357228ac7,0x3fd17b3f7d39b27a,1
|
|
1334
|
+
np.float64,0x3fb57d10ae2afa21,0x3fb5838702b806f4,1
|
|
1335
|
+
np.float64,0x800c59c96c98b393,0x800c59c96c98b393,1
|
|
1336
|
+
np.float64,0x7fc1f2413823e481,0x7ff0000000000000,1
|
|
1337
|
+
np.float64,0xbfa3983624273070,0xbfa3996fa26c419a,1
|
|
1338
|
+
np.float64,0x7fb28874ae2510e8,0x7ff0000000000000,1
|
|
1339
|
+
np.float64,0x3fe826d02a304da0,0x3fea82bec50bc0b6,1
|
|
1340
|
+
np.float64,0x8008d6f0d3d1ade2,0x8008d6f0d3d1ade2,1
|
|
1341
|
+
np.float64,0xffe7c970ca2f92e1,0xfff0000000000000,1
|
|
1342
|
+
np.float64,0x7fcf42bcaa3e8578,0x7ff0000000000000,1
|
|
1343
|
+
np.float64,0x7fda1ab517343569,0x7ff0000000000000,1
|
|
1344
|
+
np.float64,0xbfe7926a65ef24d5,0xbfe9c323dd890d5b,1
|
|
1345
|
+
np.float64,0xbfcaf6282d35ec50,0xbfcb294f36a0a33d,1
|
|
1346
|
+
np.float64,0x800ca49df8d9493c,0x800ca49df8d9493c,1
|
|
1347
|
+
np.float64,0xffea18d26af431a4,0xfff0000000000000,1
|
|
1348
|
+
np.float64,0x3fb72f276e2e5e50,0x3fb7374539fd1221,1
|
|
1349
|
+
np.float64,0xffa6b613842d6c20,0xfff0000000000000,1
|
|
1350
|
+
np.float64,0xbfeb3c7263f678e5,0xbfeea54cdb60b54c,1
|
|
1351
|
+
np.float64,0x3fc976d2ba32eda5,0x3fc9a1e83a058de4,1
|
|
1352
|
+
np.float64,0xbfe4acd4b0e959aa,0xbfe624d5d4f9b9a6,1
|
|
1353
|
+
np.float64,0x7fca410a0f348213,0x7ff0000000000000,1
|
|
1354
|
+
np.float64,0xbfde368f77bc6d1e,0xbfdf5910c8c8bcb0,1
|
|
1355
|
+
np.float64,0xbfed7412937ae825,0xbff0e55afc428453,1
|
|
1356
|
+
np.float64,0xffef6b7b607ed6f6,0xfff0000000000000,1
|
|
1357
|
+
np.float64,0xbfb936f17e326de0,0xbfb941629a53c694,1
|
|
1358
|
+
np.float64,0x800dbb0c469b7619,0x800dbb0c469b7619,1
|
|
1359
|
+
np.float64,0x800f68b0581ed161,0x800f68b0581ed161,1
|
|
1360
|
+
np.float64,0x3fe25b2aad64b656,0x3fe361266fa9c5eb,1
|
|
1361
|
+
np.float64,0xbfb87e445a30fc88,0xbfb887d676910c3f,1
|
|
1362
|
+
np.float64,0x6e6ba9b6dcd76,0x6e6ba9b6dcd76,1
|
|
1363
|
+
np.float64,0x3fad27ce583a4f9d,0x3fad2bd72782ffdb,1
|
|
1364
|
+
np.float64,0xbfec0bc5d638178c,0xbfefc6e8c8f9095f,1
|
|
1365
|
+
np.float64,0x7fcba4a296374944,0x7ff0000000000000,1
|
|
1366
|
+
np.float64,0x8004ca237cc99448,0x8004ca237cc99448,1
|
|
1367
|
+
np.float64,0xffe85b8c3270b718,0xfff0000000000000,1
|
|
1368
|
+
np.float64,0x7fe7ee3eddafdc7d,0x7ff0000000000000,1
|
|
1369
|
+
np.float64,0xffd275967ca4eb2c,0xfff0000000000000,1
|
|
1370
|
+
np.float64,0xbfa95bc3a032b780,0xbfa95e6b288ecf43,1
|
|
1371
|
+
np.float64,0x3fc9e3214b33c643,0x3fca10667e7e7ff4,1
|
|
1372
|
+
np.float64,0x8001b89c5d837139,0x8001b89c5d837139,1
|
|
1373
|
+
np.float64,0xbf8807dfc0300fc0,0xbf880803e3badfbd,1
|
|
1374
|
+
np.float64,0x800aca94b895952a,0x800aca94b895952a,1
|
|
1375
|
+
np.float64,0x7fd79534a02f2a68,0x7ff0000000000000,1
|
|
1376
|
+
np.float64,0x3fe1b81179e37023,0x3fe2a371d8cc26f0,1
|
|
1377
|
+
np.float64,0x800699539d6d32a8,0x800699539d6d32a8,1
|
|
1378
|
+
np.float64,0xffe51dfbb3aa3bf7,0xfff0000000000000,1
|
|
1379
|
+
np.float64,0xbfdfb775abbf6eec,0xbfe083f48be2f98f,1
|
|
1380
|
+
np.float64,0x3fe87979d7b0f2f4,0x3feaee701d959079,1
|
|
1381
|
+
np.float64,0x3fd8e4e6a731c9cd,0x3fd986d29f25f982,1
|
|
1382
|
+
np.float64,0x3fe3dadaaf67b5b6,0x3fe527520fb02920,1
|
|
1383
|
+
np.float64,0x8003c2262bc7844d,0x8003c2262bc7844d,1
|
|
1384
|
+
np.float64,0x800c930add392616,0x800c930add392616,1
|
|
1385
|
+
np.float64,0xffb7a152a22f42a8,0xfff0000000000000,1
|
|
1386
|
+
np.float64,0x80028fe03dc51fc1,0x80028fe03dc51fc1,1
|
|
1387
|
+
np.float64,0xffe32ae60c6655cc,0xfff0000000000000,1
|
|
1388
|
+
np.float64,0x3fea3527e4746a50,0x3fed3cbbf47f18eb,1
|
|
1389
|
+
np.float64,0x800a53059e14a60c,0x800a53059e14a60c,1
|
|
1390
|
+
np.float64,0xbfd79e3b202f3c76,0xbfd828672381207b,1
|
|
1391
|
+
np.float64,0xffeed7e2eb7dafc5,0xfff0000000000000,1
|
|
1392
|
+
np.float64,0x3fec51ed6778a3db,0x3ff01509e34df61d,1
|
|
1393
|
+
np.float64,0xbfd84bc577b0978a,0xbfd8e23ec55e42e8,1
|
|
1394
|
+
np.float64,0x2483aff849077,0x2483aff849077,1
|
|
1395
|
+
np.float64,0x6f57883adeaf2,0x6f57883adeaf2,1
|
|
1396
|
+
np.float64,0xffd3fd74d927faea,0xfff0000000000000,1
|
|
1397
|
+
np.float64,0x7fca49ec773493d8,0x7ff0000000000000,1
|
|
1398
|
+
np.float64,0x7fd08fe2e8211fc5,0x7ff0000000000000,1
|
|
1399
|
+
np.float64,0x800852086db0a411,0x800852086db0a411,1
|
|
1400
|
+
np.float64,0x3fe5b1f2c9eb63e6,0x3fe7654f511bafc6,1
|
|
1401
|
+
np.float64,0xbfe01e2a58e03c54,0xbfe0cedb68f021e6,1
|
|
1402
|
+
np.float64,0x800988421d331085,0x800988421d331085,1
|
|
1403
|
+
np.float64,0xffd5038b18aa0716,0xfff0000000000000,1
|
|
1404
|
+
np.float64,0x8002c9264c85924d,0x8002c9264c85924d,1
|
|
1405
|
+
np.float64,0x3fd21ca302243946,0x3fd25ac653a71aab,1
|
|
1406
|
+
np.float64,0xbfea60d6e6f4c1ae,0xbfed78031d9dfa2b,1
|
|
1407
|
+
np.float64,0xffef97b6263f2f6b,0xfff0000000000000,1
|
|
1408
|
+
np.float64,0xbfd524732faa48e6,0xbfd5876ecc415dcc,1
|
|
1409
|
+
np.float64,0x660387e8cc072,0x660387e8cc072,1
|
|
1410
|
+
np.float64,0x7fcfc108a33f8210,0x7ff0000000000000,1
|
|
1411
|
+
np.float64,0x7febe5b0f877cb61,0x7ff0000000000000,1
|
|
1412
|
+
np.float64,0xbfa55fdfac2abfc0,0xbfa56176991851a8,1
|
|
1413
|
+
np.float64,0x25250f4c4a4a3,0x25250f4c4a4a3,1
|
|
1414
|
+
np.float64,0xffe2f6a2f2a5ed46,0xfff0000000000000,1
|
|
1415
|
+
np.float64,0x7fa754fcc02ea9f9,0x7ff0000000000000,1
|
|
1416
|
+
np.float64,0x3febd19dea37a33c,0x3fef75279f75d3b8,1
|
|
1417
|
+
np.float64,0xc5ed55218bdab,0xc5ed55218bdab,1
|
|
1418
|
+
np.float64,0x3fe72ff6b3ee5fed,0x3fe945388b979882,1
|
|
1419
|
+
np.float64,0xbfe16b854e22d70a,0xbfe24b10fc0dff14,1
|
|
1420
|
+
np.float64,0xffb22cbe10245980,0xfff0000000000000,1
|
|
1421
|
+
np.float64,0xa54246b54a849,0xa54246b54a849,1
|
|
1422
|
+
np.float64,0x3fe7f4cda76fe99c,0x3fea41edc74888b6,1
|
|
1423
|
+
np.float64,0x1,0x1,1
|
|
1424
|
+
np.float64,0x800d84acce9b095a,0x800d84acce9b095a,1
|
|
1425
|
+
np.float64,0xb0eef04761dde,0xb0eef04761dde,1
|
|
1426
|
+
np.float64,0x7ff4000000000000,0x7ffc000000000000,1
|
|
1427
|
+
np.float64,0xffecaf1dbb795e3b,0xfff0000000000000,1
|
|
1428
|
+
np.float64,0x90dbab8d21b76,0x90dbab8d21b76,1
|
|
1429
|
+
np.float64,0x3fe79584a9ef2b09,0x3fe9c71fa9e40eb5,1
|