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,0x3f338252,0x3f1c8d9c,3
|
|
3
|
+
np.float32,0x7e569df2,0x3fc90fdb,3
|
|
4
|
+
np.float32,0xbf347e25,0xbf1d361f,3
|
|
5
|
+
np.float32,0xbf0a654e,0xbefdbfd2,3
|
|
6
|
+
np.float32,0x8070968e,0x8070968e,3
|
|
7
|
+
np.float32,0x803cfb27,0x803cfb27,3
|
|
8
|
+
np.float32,0x8024362e,0x8024362e,3
|
|
9
|
+
np.float32,0xfd55dca0,0xbfc90fdb,3
|
|
10
|
+
np.float32,0x592b82,0x592b82,3
|
|
11
|
+
np.float32,0x802eb8e1,0x802eb8e1,3
|
|
12
|
+
np.float32,0xbc5fef40,0xbc5febae,3
|
|
13
|
+
np.float32,0x3f1f6ce8,0x3f0e967c,3
|
|
14
|
+
np.float32,0x20bedc,0x20bedc,3
|
|
15
|
+
np.float32,0xbf058860,0xbef629c7,3
|
|
16
|
+
np.float32,0x311504,0x311504,3
|
|
17
|
+
np.float32,0xbd23f560,0xbd23defa,3
|
|
18
|
+
np.float32,0x800ff4e8,0x800ff4e8,3
|
|
19
|
+
np.float32,0x355009,0x355009,3
|
|
20
|
+
np.float32,0x3f7be42e,0x3f46fdb3,3
|
|
21
|
+
np.float32,0xbf225f7c,0xbf10b364,3
|
|
22
|
+
np.float32,0x8074fa9e,0x8074fa9e,3
|
|
23
|
+
np.float32,0xbea4b418,0xbe9f59ce,3
|
|
24
|
+
np.float32,0xbe909c14,0xbe8cf045,3
|
|
25
|
+
np.float32,0x80026bee,0x80026bee,3
|
|
26
|
+
np.float32,0x3d789c20,0x3d784e25,3
|
|
27
|
+
np.float32,0x7f56a4ba,0x3fc90fdb,3
|
|
28
|
+
np.float32,0xbf70d141,0xbf413db7,3
|
|
29
|
+
np.float32,0xbf2c4886,0xbf17a505,3
|
|
30
|
+
np.float32,0x7e2993bf,0x3fc90fdb,3
|
|
31
|
+
np.float32,0xbe2c8a30,0xbe2aef28,3
|
|
32
|
+
np.float32,0x803f82d9,0x803f82d9,3
|
|
33
|
+
np.float32,0x3f062fbc,0x3ef730a1,3
|
|
34
|
+
np.float32,0x3f349ee0,0x3f1d4bfa,3
|
|
35
|
+
np.float32,0x3eccfb69,0x3ec2f9e8,3
|
|
36
|
+
np.float32,0x7e8a85dd,0x3fc90fdb,3
|
|
37
|
+
np.float32,0x25331,0x25331,3
|
|
38
|
+
np.float32,0x464f19,0x464f19,3
|
|
39
|
+
np.float32,0x8035c818,0x8035c818,3
|
|
40
|
+
np.float32,0x802e5799,0x802e5799,3
|
|
41
|
+
np.float32,0x64e1c0,0x64e1c0,3
|
|
42
|
+
np.float32,0x701cc2,0x701cc2,3
|
|
43
|
+
np.float32,0x265c57,0x265c57,3
|
|
44
|
+
np.float32,0x807a053f,0x807a053f,3
|
|
45
|
+
np.float32,0x3bd2c412,0x3bd2c354,3
|
|
46
|
+
np.float32,0xff28f1c8,0xbfc90fdb,3
|
|
47
|
+
np.float32,0x7f08f08b,0x3fc90fdb,3
|
|
48
|
+
np.float32,0x800c50e4,0x800c50e4,3
|
|
49
|
+
np.float32,0x369674,0x369674,3
|
|
50
|
+
np.float32,0xbf5b7db3,0xbf3571bf,3
|
|
51
|
+
np.float32,0x7edcf5e2,0x3fc90fdb,3
|
|
52
|
+
np.float32,0x800e5d4b,0x800e5d4b,3
|
|
53
|
+
np.float32,0x80722554,0x80722554,3
|
|
54
|
+
np.float32,0x693f33,0x693f33,3
|
|
55
|
+
np.float32,0x800844e4,0x800844e4,3
|
|
56
|
+
np.float32,0xbf111b82,0xbf0402ec,3
|
|
57
|
+
np.float32,0x7df9c9ac,0x3fc90fdb,3
|
|
58
|
+
np.float32,0xbf6619a6,0xbf3b6f57,3
|
|
59
|
+
np.float32,0x8002fafe,0x8002fafe,3
|
|
60
|
+
np.float32,0xfe1e67f8,0xbfc90fdb,3
|
|
61
|
+
np.float32,0x3f7f4bf8,0x3f48b5b7,3
|
|
62
|
+
np.float32,0x7f017b20,0x3fc90fdb,3
|
|
63
|
+
np.float32,0x2d9b07,0x2d9b07,3
|
|
64
|
+
np.float32,0x803aa174,0x803aa174,3
|
|
65
|
+
np.float32,0x7d530336,0x3fc90fdb,3
|
|
66
|
+
np.float32,0x80662195,0x80662195,3
|
|
67
|
+
np.float32,0xfd5ebcf0,0xbfc90fdb,3
|
|
68
|
+
np.float32,0xbe7b8dcc,0xbe76ab59,3
|
|
69
|
+
np.float32,0x7f2bacaf,0x3fc90fdb,3
|
|
70
|
+
np.float32,0x3f194fc4,0x3f0a229e,3
|
|
71
|
+
np.float32,0x7ee21cdf,0x3fc90fdb,3
|
|
72
|
+
np.float32,0x3f5a17fc,0x3f34a307,3
|
|
73
|
+
np.float32,0x7f100c58,0x3fc90fdb,3
|
|
74
|
+
np.float32,0x7e9128f5,0x3fc90fdb,3
|
|
75
|
+
np.float32,0xbf2107c6,0xbf0fbdb4,3
|
|
76
|
+
np.float32,0xbd29c800,0xbd29af22,3
|
|
77
|
+
np.float32,0xbf5af499,0xbf3522a6,3
|
|
78
|
+
np.float32,0x801bde44,0x801bde44,3
|
|
79
|
+
np.float32,0xfeb4761a,0xbfc90fdb,3
|
|
80
|
+
np.float32,0x3d88aa1b,0x3d887650,3
|
|
81
|
+
np.float32,0x7eba5e0b,0x3fc90fdb,3
|
|
82
|
+
np.float32,0x803906bd,0x803906bd,3
|
|
83
|
+
np.float32,0x80101512,0x80101512,3
|
|
84
|
+
np.float32,0x7e898f83,0x3fc90fdb,3
|
|
85
|
+
np.float32,0x806406d3,0x806406d3,3
|
|
86
|
+
np.float32,0x7ed20fc0,0x3fc90fdb,3
|
|
87
|
+
np.float32,0x20827d,0x20827d,3
|
|
88
|
+
np.float32,0x3f361359,0x3f1e43fe,3
|
|
89
|
+
np.float32,0xfe4ef8d8,0xbfc90fdb,3
|
|
90
|
+
np.float32,0x805e7d2d,0x805e7d2d,3
|
|
91
|
+
np.float32,0xbe4316b0,0xbe40c745,3
|
|
92
|
+
np.float32,0xbf0a1c06,0xbefd4e5a,3
|
|
93
|
+
np.float32,0x3e202860,0x3e1edee1,3
|
|
94
|
+
np.float32,0xbeb32a2c,0xbeac5899,3
|
|
95
|
+
np.float32,0xfe528838,0xbfc90fdb,3
|
|
96
|
+
np.float32,0x2f73e2,0x2f73e2,3
|
|
97
|
+
np.float32,0xbe16e010,0xbe15cc27,3
|
|
98
|
+
np.float32,0x3f50d6c5,0x3f2f2d75,3
|
|
99
|
+
np.float32,0xbe88a6a2,0xbe8589c7,3
|
|
100
|
+
np.float32,0x3ee36060,0x3ed5fb36,3
|
|
101
|
+
np.float32,0x6c978b,0x6c978b,3
|
|
102
|
+
np.float32,0x7f1b735f,0x3fc90fdb,3
|
|
103
|
+
np.float32,0x3dad8256,0x3dad1885,3
|
|
104
|
+
np.float32,0x807f5094,0x807f5094,3
|
|
105
|
+
np.float32,0x65c358,0x65c358,3
|
|
106
|
+
np.float32,0xff315ce4,0xbfc90fdb,3
|
|
107
|
+
np.float32,0x7411a6,0x7411a6,3
|
|
108
|
+
np.float32,0x80757b04,0x80757b04,3
|
|
109
|
+
np.float32,0x3eec73a6,0x3edd82f4,3
|
|
110
|
+
np.float32,0xfe9f69e8,0xbfc90fdb,3
|
|
111
|
+
np.float32,0x801f4fa8,0x801f4fa8,3
|
|
112
|
+
np.float32,0xbf6f2fae,0xbf405f79,3
|
|
113
|
+
np.float32,0xfea206b6,0xbfc90fdb,3
|
|
114
|
+
np.float32,0x3f257301,0x3f12e1ee,3
|
|
115
|
+
np.float32,0x7ea6a506,0x3fc90fdb,3
|
|
116
|
+
np.float32,0x80800000,0x80800000,3
|
|
117
|
+
np.float32,0xff735c2d,0xbfc90fdb,3
|
|
118
|
+
np.float32,0x80197f95,0x80197f95,3
|
|
119
|
+
np.float32,0x7f4a354f,0x3fc90fdb,3
|
|
120
|
+
np.float32,0xff320c00,0xbfc90fdb,3
|
|
121
|
+
np.float32,0x3f2659de,0x3f138484,3
|
|
122
|
+
np.float32,0xbe5451bc,0xbe515a52,3
|
|
123
|
+
np.float32,0x3f6e228c,0x3f3fcf7c,3
|
|
124
|
+
np.float32,0x66855a,0x66855a,3
|
|
125
|
+
np.float32,0x8034b3a3,0x8034b3a3,3
|
|
126
|
+
np.float32,0xbe21a2fc,0xbe20505d,3
|
|
127
|
+
np.float32,0x7f79e2dc,0x3fc90fdb,3
|
|
128
|
+
np.float32,0xbe19a8e0,0xbe18858c,3
|
|
129
|
+
np.float32,0x10802c,0x10802c,3
|
|
130
|
+
np.float32,0xfeee579e,0xbfc90fdb,3
|
|
131
|
+
np.float32,0x3f3292c8,0x3f1becc0,3
|
|
132
|
+
np.float32,0xbf595a71,0xbf34350a,3
|
|
133
|
+
np.float32,0xbf7c3373,0xbf4725f4,3
|
|
134
|
+
np.float32,0xbdd30938,0xbdd24b36,3
|
|
135
|
+
np.float32,0x153a17,0x153a17,3
|
|
136
|
+
np.float32,0x807282a0,0x807282a0,3
|
|
137
|
+
np.float32,0xfe817322,0xbfc90fdb,3
|
|
138
|
+
np.float32,0x3f1b3628,0x3f0b8771,3
|
|
139
|
+
np.float32,0x41be8f,0x41be8f,3
|
|
140
|
+
np.float32,0x7f4a8343,0x3fc90fdb,3
|
|
141
|
+
np.float32,0x3dc4ea2b,0x3dc44fae,3
|
|
142
|
+
np.float32,0x802aac25,0x802aac25,3
|
|
143
|
+
np.float32,0xbf20e1d7,0xbf0fa284,3
|
|
144
|
+
np.float32,0xfd91a1b0,0xbfc90fdb,3
|
|
145
|
+
np.float32,0x3f0d5476,0x3f012265,3
|
|
146
|
+
np.float32,0x21c916,0x21c916,3
|
|
147
|
+
np.float32,0x807df399,0x807df399,3
|
|
148
|
+
np.float32,0x7e207b4c,0x3fc90fdb,3
|
|
149
|
+
np.float32,0x8055f8ff,0x8055f8ff,3
|
|
150
|
+
np.float32,0x7edf3b01,0x3fc90fdb,3
|
|
151
|
+
np.float32,0x803a8df3,0x803a8df3,3
|
|
152
|
+
np.float32,0x3ce3b002,0x3ce3a101,3
|
|
153
|
+
np.float32,0x3f62dd54,0x3f39a248,3
|
|
154
|
+
np.float32,0xff33ae10,0xbfc90fdb,3
|
|
155
|
+
np.float32,0x7e3de69d,0x3fc90fdb,3
|
|
156
|
+
np.float32,0x8024581e,0x8024581e,3
|
|
157
|
+
np.float32,0xbf4ac99d,0xbf2b807a,3
|
|
158
|
+
np.float32,0x3f157d19,0x3f074d8c,3
|
|
159
|
+
np.float32,0xfed383f4,0xbfc90fdb,3
|
|
160
|
+
np.float32,0xbf5a39fa,0xbf34b6b8,3
|
|
161
|
+
np.float32,0x800d757d,0x800d757d,3
|
|
162
|
+
np.float32,0x807d606b,0x807d606b,3
|
|
163
|
+
np.float32,0x3e828f89,0x3e7fac2d,3
|
|
164
|
+
np.float32,0x7a6604,0x7a6604,3
|
|
165
|
+
np.float32,0x7dc7e72b,0x3fc90fdb,3
|
|
166
|
+
np.float32,0x80144146,0x80144146,3
|
|
167
|
+
np.float32,0x7c2eed69,0x3fc90fdb,3
|
|
168
|
+
np.float32,0x3f5b4d8c,0x3f3555fc,3
|
|
169
|
+
np.float32,0xfd8b7778,0xbfc90fdb,3
|
|
170
|
+
np.float32,0xfc9d9140,0xbfc90fdb,3
|
|
171
|
+
np.float32,0xbea265d4,0xbe9d4232,3
|
|
172
|
+
np.float32,0xbe9344d0,0xbe8f65da,3
|
|
173
|
+
np.float32,0x3f71f19a,0x3f41d65b,3
|
|
174
|
+
np.float32,0x804a3f59,0x804a3f59,3
|
|
175
|
+
np.float32,0x3e596290,0x3e563476,3
|
|
176
|
+
np.float32,0x3e994ee4,0x3e94f546,3
|
|
177
|
+
np.float32,0xbc103e00,0xbc103d0c,3
|
|
178
|
+
np.float32,0xbf1cd896,0xbf0cb889,3
|
|
179
|
+
np.float32,0x7f52b080,0x3fc90fdb,3
|
|
180
|
+
np.float32,0xff584452,0xbfc90fdb,3
|
|
181
|
+
np.float32,0x58b26b,0x58b26b,3
|
|
182
|
+
np.float32,0x3f23cd4c,0x3f11b799,3
|
|
183
|
+
np.float32,0x707d7,0x707d7,3
|
|
184
|
+
np.float32,0xff732cff,0xbfc90fdb,3
|
|
185
|
+
np.float32,0x3e41c2a6,0x3e3f7f0f,3
|
|
186
|
+
np.float32,0xbf7058e9,0xbf40fdcf,3
|
|
187
|
+
np.float32,0x7dca9857,0x3fc90fdb,3
|
|
188
|
+
np.float32,0x7f0eb44b,0x3fc90fdb,3
|
|
189
|
+
np.float32,0x8000405c,0x8000405c,3
|
|
190
|
+
np.float32,0x4916ab,0x4916ab,3
|
|
191
|
+
np.float32,0x4811a8,0x4811a8,3
|
|
192
|
+
np.float32,0x3d69bf,0x3d69bf,3
|
|
193
|
+
np.float32,0xfeadcf1e,0xbfc90fdb,3
|
|
194
|
+
np.float32,0x3e08dbbf,0x3e080d58,3
|
|
195
|
+
np.float32,0xff031f88,0xbfc90fdb,3
|
|
196
|
+
np.float32,0xbe09cab8,0xbe08f818,3
|
|
197
|
+
np.float32,0x21d7cd,0x21d7cd,3
|
|
198
|
+
np.float32,0x3f23230d,0x3f113ea9,3
|
|
199
|
+
np.float32,0x7e8a48d4,0x3fc90fdb,3
|
|
200
|
+
np.float32,0x413869,0x413869,3
|
|
201
|
+
np.float32,0x7e832990,0x3fc90fdb,3
|
|
202
|
+
np.float32,0x800f5c09,0x800f5c09,3
|
|
203
|
+
np.float32,0x7f5893b6,0x3fc90fdb,3
|
|
204
|
+
np.float32,0x7f06b5b1,0x3fc90fdb,3
|
|
205
|
+
np.float32,0xbe1cbee8,0xbe1b89d6,3
|
|
206
|
+
np.float32,0xbf279f14,0xbf1468a8,3
|
|
207
|
+
np.float32,0xfea86060,0xbfc90fdb,3
|
|
208
|
+
np.float32,0x3e828174,0x3e7f91bb,3
|
|
209
|
+
np.float32,0xff682c82,0xbfc90fdb,3
|
|
210
|
+
np.float32,0x4e20f3,0x4e20f3,3
|
|
211
|
+
np.float32,0x7f17d7e9,0x3fc90fdb,3
|
|
212
|
+
np.float32,0x80671f92,0x80671f92,3
|
|
213
|
+
np.float32,0x7f6dd100,0x3fc90fdb,3
|
|
214
|
+
np.float32,0x3f219a4d,0x3f102695,3
|
|
215
|
+
np.float32,0x803c9808,0x803c9808,3
|
|
216
|
+
np.float32,0x3c432ada,0x3c43287d,3
|
|
217
|
+
np.float32,0xbd3db450,0xbd3d91a2,3
|
|
218
|
+
np.float32,0x3baac135,0x3baac0d0,3
|
|
219
|
+
np.float32,0xff7fffe1,0xbfc90fdb,3
|
|
220
|
+
np.float32,0xfe38a6f4,0xbfc90fdb,3
|
|
221
|
+
np.float32,0x3dfb0a04,0x3df9cb04,3
|
|
222
|
+
np.float32,0x800b05c2,0x800b05c2,3
|
|
223
|
+
np.float32,0x644163,0x644163,3
|
|
224
|
+
np.float32,0xff03a025,0xbfc90fdb,3
|
|
225
|
+
np.float32,0x3f7d506c,0x3f47b641,3
|
|
226
|
+
np.float32,0xff0e682a,0xbfc90fdb,3
|
|
227
|
+
np.float32,0x3e09b7b0,0x3e08e567,3
|
|
228
|
+
np.float32,0x7f72a216,0x3fc90fdb,3
|
|
229
|
+
np.float32,0x7f800000,0x3fc90fdb,3
|
|
230
|
+
np.float32,0x8050a281,0x8050a281,3
|
|
231
|
+
np.float32,0x7edafa2f,0x3fc90fdb,3
|
|
232
|
+
np.float32,0x3f4e0df6,0x3f2d7f2f,3
|
|
233
|
+
np.float32,0xbf6728e0,0xbf3c050f,3
|
|
234
|
+
np.float32,0x3e904ce4,0x3e8ca6eb,3
|
|
235
|
+
np.float32,0x0,0x0,3
|
|
236
|
+
np.float32,0xfd215070,0xbfc90fdb,3
|
|
237
|
+
np.float32,0x7e406b15,0x3fc90fdb,3
|
|
238
|
+
np.float32,0xbf2803c9,0xbf14af18,3
|
|
239
|
+
np.float32,0x5950c8,0x5950c8,3
|
|
240
|
+
np.float32,0xbeddcec8,0xbed14faa,3
|
|
241
|
+
np.float32,0xbec6457e,0xbebd2aa5,3
|
|
242
|
+
np.float32,0xbf42843c,0xbf2656db,3
|
|
243
|
+
np.float32,0x3ee9cba8,0x3edb5163,3
|
|
244
|
+
np.float32,0xbe30c954,0xbe2f0f90,3
|
|
245
|
+
np.float32,0xbeee6b44,0xbedf216f,3
|
|
246
|
+
np.float32,0xbe35d818,0xbe33f7cd,3
|
|
247
|
+
np.float32,0xbe47c630,0xbe454bc6,3
|
|
248
|
+
np.float32,0x801b146f,0x801b146f,3
|
|
249
|
+
np.float32,0x7f6788da,0x3fc90fdb,3
|
|
250
|
+
np.float32,0x3eaef088,0x3ea8927d,3
|
|
251
|
+
np.float32,0x3eb5983e,0x3eae81fc,3
|
|
252
|
+
np.float32,0x40b51d,0x40b51d,3
|
|
253
|
+
np.float32,0xfebddd04,0xbfc90fdb,3
|
|
254
|
+
np.float32,0x3e591aee,0x3e55efea,3
|
|
255
|
+
np.float32,0xbe2b6b48,0xbe29d81f,3
|
|
256
|
+
np.float32,0xff4a8826,0xbfc90fdb,3
|
|
257
|
+
np.float32,0x3e791df0,0x3e745eac,3
|
|
258
|
+
np.float32,0x7c8f681f,0x3fc90fdb,3
|
|
259
|
+
np.float32,0xfe7a15c4,0xbfc90fdb,3
|
|
260
|
+
np.float32,0x3c8963,0x3c8963,3
|
|
261
|
+
np.float32,0x3f0afa0a,0x3efea5cc,3
|
|
262
|
+
np.float32,0xbf0d2680,0xbf00ff29,3
|
|
263
|
+
np.float32,0x3dc306b0,0x3dc27096,3
|
|
264
|
+
np.float32,0x7f4cf105,0x3fc90fdb,3
|
|
265
|
+
np.float32,0xbe196060,0xbe183ea4,3
|
|
266
|
+
np.float32,0x5caf1c,0x5caf1c,3
|
|
267
|
+
np.float32,0x801f2852,0x801f2852,3
|
|
268
|
+
np.float32,0xbe01aa0c,0xbe00fa53,3
|
|
269
|
+
np.float32,0x3f0cfd32,0x3f00df7a,3
|
|
270
|
+
np.float32,0x7d82038e,0x3fc90fdb,3
|
|
271
|
+
np.float32,0x7f7b927f,0x3fc90fdb,3
|
|
272
|
+
np.float32,0xbe93b2e4,0xbe8fcb7f,3
|
|
273
|
+
np.float32,0x1ffe8c,0x1ffe8c,3
|
|
274
|
+
np.float32,0x3faaf6,0x3faaf6,3
|
|
275
|
+
np.float32,0x3e32b1b8,0x3e30e9ab,3
|
|
276
|
+
np.float32,0x802953c0,0x802953c0,3
|
|
277
|
+
np.float32,0xfe5d9844,0xbfc90fdb,3
|
|
278
|
+
np.float32,0x3e1a59d0,0x3e193292,3
|
|
279
|
+
np.float32,0x801c6edc,0x801c6edc,3
|
|
280
|
+
np.float32,0x1ecf41,0x1ecf41,3
|
|
281
|
+
np.float32,0xfe56b09c,0xbfc90fdb,3
|
|
282
|
+
np.float32,0x7e878351,0x3fc90fdb,3
|
|
283
|
+
np.float32,0x3f401e2c,0x3f24cfcb,3
|
|
284
|
+
np.float32,0xbf204a40,0xbf0f35bb,3
|
|
285
|
+
np.float32,0x3e155a98,0x3e144ee1,3
|
|
286
|
+
np.float32,0xbf34f929,0xbf1d8838,3
|
|
287
|
+
np.float32,0x801bbf70,0x801bbf70,3
|
|
288
|
+
np.float32,0x7e7c9730,0x3fc90fdb,3
|
|
289
|
+
np.float32,0x7cc23432,0x3fc90fdb,3
|
|
290
|
+
np.float32,0xbf351638,0xbf1d9b97,3
|
|
291
|
+
np.float32,0x80152094,0x80152094,3
|
|
292
|
+
np.float32,0x3f2d731c,0x3f187219,3
|
|
293
|
+
np.float32,0x804ab0b7,0x804ab0b7,3
|
|
294
|
+
np.float32,0x37d6db,0x37d6db,3
|
|
295
|
+
np.float32,0xbf3ccc56,0xbf22acbf,3
|
|
296
|
+
np.float32,0x3e546f8c,0x3e5176e7,3
|
|
297
|
+
np.float32,0xbe90e87e,0xbe8d3707,3
|
|
298
|
+
np.float32,0x48256c,0x48256c,3
|
|
299
|
+
np.float32,0x7e2468d0,0x3fc90fdb,3
|
|
300
|
+
np.float32,0x807af47e,0x807af47e,3
|
|
301
|
+
np.float32,0x3ed4b221,0x3ec996f0,3
|
|
302
|
+
np.float32,0x3d3b1956,0x3d3af811,3
|
|
303
|
+
np.float32,0xbe69d93c,0xbe65e7f0,3
|
|
304
|
+
np.float32,0xff03ff14,0xbfc90fdb,3
|
|
305
|
+
np.float32,0x801e79dc,0x801e79dc,3
|
|
306
|
+
np.float32,0x3f467c53,0x3f28d63d,3
|
|
307
|
+
np.float32,0x3eab6baa,0x3ea56a1c,3
|
|
308
|
+
np.float32,0xbf15519c,0xbf072d1c,3
|
|
309
|
+
np.float32,0x7f0bd8e8,0x3fc90fdb,3
|
|
310
|
+
np.float32,0xbe1e0d1c,0xbe1cd053,3
|
|
311
|
+
np.float32,0x8016edab,0x8016edab,3
|
|
312
|
+
np.float32,0x7ecaa09b,0x3fc90fdb,3
|
|
313
|
+
np.float32,0x3f72e6d9,0x3f4257a8,3
|
|
314
|
+
np.float32,0xbefe787e,0xbeec29a4,3
|
|
315
|
+
np.float32,0xbee989e8,0xbedb1af9,3
|
|
316
|
+
np.float32,0xbe662db0,0xbe626a45,3
|
|
317
|
+
np.float32,0x495bf7,0x495bf7,3
|
|
318
|
+
np.float32,0x26c379,0x26c379,3
|
|
319
|
+
np.float32,0x7f54d41a,0x3fc90fdb,3
|
|
320
|
+
np.float32,0x801e7dd9,0x801e7dd9,3
|
|
321
|
+
np.float32,0x80000000,0x80000000,3
|
|
322
|
+
np.float32,0xfa3d3000,0xbfc90fdb,3
|
|
323
|
+
np.float32,0xfa3cb800,0xbfc90fdb,3
|
|
324
|
+
np.float32,0x264894,0x264894,3
|
|
325
|
+
np.float32,0xff6de011,0xbfc90fdb,3
|
|
326
|
+
np.float32,0x7e9045b2,0x3fc90fdb,3
|
|
327
|
+
np.float32,0x3f2253a8,0x3f10aaf4,3
|
|
328
|
+
np.float32,0xbd462bf0,0xbd460469,3
|
|
329
|
+
np.float32,0x7f1796af,0x3fc90fdb,3
|
|
330
|
+
np.float32,0x3e718858,0x3e6d3279,3
|
|
331
|
+
np.float32,0xff437d7e,0xbfc90fdb,3
|
|
332
|
+
np.float32,0x805ae7cb,0x805ae7cb,3
|
|
333
|
+
np.float32,0x807e32e9,0x807e32e9,3
|
|
334
|
+
np.float32,0x3ee0bafc,0x3ed3c453,3
|
|
335
|
+
np.float32,0xbf721dee,0xbf41edc3,3
|
|
336
|
+
np.float32,0xfec9f792,0xbfc90fdb,3
|
|
337
|
+
np.float32,0x7f050720,0x3fc90fdb,3
|
|
338
|
+
np.float32,0x182261,0x182261,3
|
|
339
|
+
np.float32,0x3e39e678,0x3e37e5be,3
|
|
340
|
+
np.float32,0x7e096e4b,0x3fc90fdb,3
|
|
341
|
+
np.float32,0x103715,0x103715,3
|
|
342
|
+
np.float32,0x3f7e7741,0x3f484ae4,3
|
|
343
|
+
np.float32,0x3e29aea5,0x3e28277c,3
|
|
344
|
+
np.float32,0x58c183,0x58c183,3
|
|
345
|
+
np.float32,0xff72fdb2,0xbfc90fdb,3
|
|
346
|
+
np.float32,0xbd9a9420,0xbd9a493c,3
|
|
347
|
+
np.float32,0x7f1e07e7,0x3fc90fdb,3
|
|
348
|
+
np.float32,0xff79f522,0xbfc90fdb,3
|
|
349
|
+
np.float32,0x7c7d0e96,0x3fc90fdb,3
|
|
350
|
+
np.float32,0xbeba9e8e,0xbeb2f504,3
|
|
351
|
+
np.float32,0xfd880a80,0xbfc90fdb,3
|
|
352
|
+
np.float32,0xff7f2a33,0xbfc90fdb,3
|
|
353
|
+
np.float32,0x3e861ae0,0x3e83289c,3
|
|
354
|
+
np.float32,0x7f0161c1,0x3fc90fdb,3
|
|
355
|
+
np.float32,0xfe844ff8,0xbfc90fdb,3
|
|
356
|
+
np.float32,0xbebf4b98,0xbeb7128e,3
|
|
357
|
+
np.float32,0x652bee,0x652bee,3
|
|
358
|
+
np.float32,0xff188a4b,0xbfc90fdb,3
|
|
359
|
+
np.float32,0xbf800000,0xbf490fdb,3
|
|
360
|
+
np.float32,0x80418711,0x80418711,3
|
|
361
|
+
np.float32,0xbeb712d4,0xbeafd1f6,3
|
|
362
|
+
np.float32,0xbf7cee28,0xbf478491,3
|
|
363
|
+
np.float32,0xfe66c59c,0xbfc90fdb,3
|
|
364
|
+
np.float32,0x4166a2,0x4166a2,3
|
|
365
|
+
np.float32,0x3dfa1a2c,0x3df8deb5,3
|
|
366
|
+
np.float32,0xbdbfbcb8,0xbdbf2e0f,3
|
|
367
|
+
np.float32,0xfe60ef70,0xbfc90fdb,3
|
|
368
|
+
np.float32,0xfe009444,0xbfc90fdb,3
|
|
369
|
+
np.float32,0xfeb27aa0,0xbfc90fdb,3
|
|
370
|
+
np.float32,0xbe99f7bc,0xbe95902b,3
|
|
371
|
+
np.float32,0x8043d28d,0x8043d28d,3
|
|
372
|
+
np.float32,0xfe5328c4,0xbfc90fdb,3
|
|
373
|
+
np.float32,0x8017b27e,0x8017b27e,3
|
|
374
|
+
np.float32,0x3ef1d2cf,0x3ee1ebd7,3
|
|
375
|
+
np.float32,0x805ddd90,0x805ddd90,3
|
|
376
|
+
np.float32,0xbf424263,0xbf262d17,3
|
|
377
|
+
np.float32,0xfc99dde0,0xbfc90fdb,3
|
|
378
|
+
np.float32,0xbf7ec13b,0xbf487015,3
|
|
379
|
+
np.float32,0xbef727ea,0xbee64377,3
|
|
380
|
+
np.float32,0xff15ce95,0xbfc90fdb,3
|
|
381
|
+
np.float32,0x1fbba4,0x1fbba4,3
|
|
382
|
+
np.float32,0x3f3b2368,0x3f2198a9,3
|
|
383
|
+
np.float32,0xfefda26e,0xbfc90fdb,3
|
|
384
|
+
np.float32,0x801519ad,0x801519ad,3
|
|
385
|
+
np.float32,0x80473fa2,0x80473fa2,3
|
|
386
|
+
np.float32,0x7e7a8bc1,0x3fc90fdb,3
|
|
387
|
+
np.float32,0x3e8a9289,0x3e87548a,3
|
|
388
|
+
np.float32,0x3ed68987,0x3ecb2872,3
|
|
389
|
+
np.float32,0x805bca66,0x805bca66,3
|
|
390
|
+
np.float32,0x8079c4e3,0x8079c4e3,3
|
|
391
|
+
np.float32,0x3a2510,0x3a2510,3
|
|
392
|
+
np.float32,0x7eedc598,0x3fc90fdb,3
|
|
393
|
+
np.float32,0x80681956,0x80681956,3
|
|
394
|
+
np.float32,0xff64c778,0xbfc90fdb,3
|
|
395
|
+
np.float32,0x806bbc46,0x806bbc46,3
|
|
396
|
+
np.float32,0x433643,0x433643,3
|
|
397
|
+
np.float32,0x705b92,0x705b92,3
|
|
398
|
+
np.float32,0xff359392,0xbfc90fdb,3
|
|
399
|
+
np.float32,0xbee78672,0xbed96fa7,3
|
|
400
|
+
np.float32,0x3e21717b,0x3e202010,3
|
|
401
|
+
np.float32,0xfea13c34,0xbfc90fdb,3
|
|
402
|
+
np.float32,0x2c8895,0x2c8895,3
|
|
403
|
+
np.float32,0x3ed33290,0x3ec84f7c,3
|
|
404
|
+
np.float32,0x3e63031e,0x3e5f662e,3
|
|
405
|
+
np.float32,0x7e30907b,0x3fc90fdb,3
|
|
406
|
+
np.float32,0xbe293708,0xbe27b310,3
|
|
407
|
+
np.float32,0x3ed93738,0x3ecd6ea3,3
|
|
408
|
+
np.float32,0x9db7e,0x9db7e,3
|
|
409
|
+
np.float32,0x3f7cd1b8,0x3f47762c,3
|
|
410
|
+
np.float32,0x3eb5143c,0x3eae0cb0,3
|
|
411
|
+
np.float32,0xbe69b234,0xbe65c2d7,3
|
|
412
|
+
np.float32,0x3f6e74de,0x3f3ffb97,3
|
|
413
|
+
np.float32,0x5d0559,0x5d0559,3
|
|
414
|
+
np.float32,0x3e1e8c30,0x3e1d4c70,3
|
|
415
|
+
np.float32,0xbf2d1878,0xbf1833ef,3
|
|
416
|
+
np.float32,0xff2adf82,0xbfc90fdb,3
|
|
417
|
+
np.float32,0x8012e2c1,0x8012e2c1,3
|
|
418
|
+
np.float32,0x7f031be3,0x3fc90fdb,3
|
|
419
|
+
np.float32,0x805ff94e,0x805ff94e,3
|
|
420
|
+
np.float32,0x3e9d5b27,0x3e98aa31,3
|
|
421
|
+
np.float32,0x3f56d5cf,0x3f32bc9e,3
|
|
422
|
+
np.float32,0x3eaa0412,0x3ea4267f,3
|
|
423
|
+
np.float32,0xbe899ea4,0xbe86712f,3
|
|
424
|
+
np.float32,0x800f2f48,0x800f2f48,3
|
|
425
|
+
np.float32,0x3f1c2269,0x3f0c33ea,3
|
|
426
|
+
np.float32,0x3f4a5f64,0x3f2b3f28,3
|
|
427
|
+
np.float32,0x80739318,0x80739318,3
|
|
428
|
+
np.float32,0x806e9b47,0x806e9b47,3
|
|
429
|
+
np.float32,0x3c8cd300,0x3c8ccf73,3
|
|
430
|
+
np.float32,0x7f39a39d,0x3fc90fdb,3
|
|
431
|
+
np.float32,0x3ec95d61,0x3ebfd9dc,3
|
|
432
|
+
np.float32,0xff351ff8,0xbfc90fdb,3
|
|
433
|
+
np.float32,0xff3a8f58,0xbfc90fdb,3
|
|
434
|
+
np.float32,0x7f313ec0,0x3fc90fdb,3
|
|
435
|
+
np.float32,0x803aed13,0x803aed13,3
|
|
436
|
+
np.float32,0x7f771d9b,0x3fc90fdb,3
|
|
437
|
+
np.float32,0x8045a6d6,0x8045a6d6,3
|
|
438
|
+
np.float32,0xbc85f280,0xbc85ef72,3
|
|
439
|
+
np.float32,0x7e9c68f5,0x3fc90fdb,3
|
|
440
|
+
np.float32,0xbf0f9379,0xbf02d975,3
|
|
441
|
+
np.float32,0x7e97bcb1,0x3fc90fdb,3
|
|
442
|
+
np.float32,0x804a07d5,0x804a07d5,3
|
|
443
|
+
np.float32,0x802e6117,0x802e6117,3
|
|
444
|
+
np.float32,0x7ed5e388,0x3fc90fdb,3
|
|
445
|
+
np.float32,0x80750455,0x80750455,3
|
|
446
|
+
np.float32,0xff4a8325,0xbfc90fdb,3
|
|
447
|
+
np.float32,0xbedb6866,0xbecf497c,3
|
|
448
|
+
np.float32,0x52ea3b,0x52ea3b,3
|
|
449
|
+
np.float32,0xff773172,0xbfc90fdb,3
|
|
450
|
+
np.float32,0xbeaa8ff0,0xbea4a46e,3
|
|
451
|
+
np.float32,0x7eef2058,0x3fc90fdb,3
|
|
452
|
+
np.float32,0x3f712472,0x3f4169d3,3
|
|
453
|
+
np.float32,0xff6c8608,0xbfc90fdb,3
|
|
454
|
+
np.float32,0xbf6eaa41,0xbf40182a,3
|
|
455
|
+
np.float32,0x3eb03c24,0x3ea9bb34,3
|
|
456
|
+
np.float32,0xfe118cd4,0xbfc90fdb,3
|
|
457
|
+
np.float32,0x3e5b03b0,0x3e57c378,3
|
|
458
|
+
np.float32,0x7f34d92d,0x3fc90fdb,3
|
|
459
|
+
np.float32,0x806c3418,0x806c3418,3
|
|
460
|
+
np.float32,0x7f3074e3,0x3fc90fdb,3
|
|
461
|
+
np.float32,0x8002df02,0x8002df02,3
|
|
462
|
+
np.float32,0x3f6df63a,0x3f3fb7b7,3
|
|
463
|
+
np.float32,0xfd2b4100,0xbfc90fdb,3
|
|
464
|
+
np.float32,0x80363d5c,0x80363d5c,3
|
|
465
|
+
np.float32,0xbeac1f98,0xbea60bd6,3
|
|
466
|
+
np.float32,0xff7fffff,0xbfc90fdb,3
|
|
467
|
+
np.float32,0x80045097,0x80045097,3
|
|
468
|
+
np.float32,0xfe011100,0xbfc90fdb,3
|
|
469
|
+
np.float32,0x80739ef5,0x80739ef5,3
|
|
470
|
+
np.float32,0xff3976ed,0xbfc90fdb,3
|
|
471
|
+
np.float32,0xbe18e3a0,0xbe17c49e,3
|
|
472
|
+
np.float32,0xbe289294,0xbe2712f6,3
|
|
473
|
+
np.float32,0x3f1d41e7,0x3f0d050e,3
|
|
474
|
+
np.float32,0x39364a,0x39364a,3
|
|
475
|
+
np.float32,0x8072b77e,0x8072b77e,3
|
|
476
|
+
np.float32,0x3f7cfec0,0x3f478cf6,3
|
|
477
|
+
np.float32,0x2f68f6,0x2f68f6,3
|
|
478
|
+
np.float32,0xbf031fb8,0xbef25c84,3
|
|
479
|
+
np.float32,0xbf0b842c,0xbeff7afc,3
|
|
480
|
+
np.float32,0x3f081e7e,0x3efa3676,3
|
|
481
|
+
np.float32,0x7f7fffff,0x3fc90fdb,3
|
|
482
|
+
np.float32,0xff15da0e,0xbfc90fdb,3
|
|
483
|
+
np.float32,0x3d2001b2,0x3d1fece1,3
|
|
484
|
+
np.float32,0x7f76efef,0x3fc90fdb,3
|
|
485
|
+
np.float32,0x3f2405dd,0x3f11dfb7,3
|
|
486
|
+
np.float32,0xa0319,0xa0319,3
|
|
487
|
+
np.float32,0x3e23d2bd,0x3e227255,3
|
|
488
|
+
np.float32,0xbd4d4c50,0xbd4d205e,3
|
|
489
|
+
np.float32,0x382344,0x382344,3
|
|
490
|
+
np.float32,0x21bbf,0x21bbf,3
|
|
491
|
+
np.float32,0xbf209e82,0xbf0f7239,3
|
|
492
|
+
np.float32,0xff03bf9f,0xbfc90fdb,3
|
|
493
|
+
np.float32,0x7b1789,0x7b1789,3
|
|
494
|
+
np.float32,0xff314944,0xbfc90fdb,3
|
|
495
|
+
np.float32,0x1a63eb,0x1a63eb,3
|
|
496
|
+
np.float32,0x803dc983,0x803dc983,3
|
|
497
|
+
np.float32,0x3f0ff558,0x3f0323dc,3
|
|
498
|
+
np.float32,0x3f544f2c,0x3f313f58,3
|
|
499
|
+
np.float32,0xff032948,0xbfc90fdb,3
|
|
500
|
+
np.float32,0x7f4933cc,0x3fc90fdb,3
|
|
501
|
+
np.float32,0x7f14c5ed,0x3fc90fdb,3
|
|
502
|
+
np.float32,0x803aeebf,0x803aeebf,3
|
|
503
|
+
np.float32,0xbf0d4c0f,0xbf011bf5,3
|
|
504
|
+
np.float32,0xbeaf8de2,0xbea91f57,3
|
|
505
|
+
np.float32,0xff3ae030,0xbfc90fdb,3
|
|
506
|
+
np.float32,0xbb362d00,0xbb362ce1,3
|
|
507
|
+
np.float32,0x3d1f79e0,0x3d1f6544,3
|
|
508
|
+
np.float32,0x3f56e9d9,0x3f32c860,3
|
|
509
|
+
np.float32,0x3f723e5e,0x3f41fee2,3
|
|
510
|
+
np.float32,0x4c0179,0x4c0179,3
|
|
511
|
+
np.float32,0xfee36132,0xbfc90fdb,3
|
|
512
|
+
np.float32,0x619ae6,0x619ae6,3
|
|
513
|
+
np.float32,0xfde5d670,0xbfc90fdb,3
|
|
514
|
+
np.float32,0xff079ac5,0xbfc90fdb,3
|
|
515
|
+
np.float32,0x3e974fbd,0x3e931fae,3
|
|
516
|
+
np.float32,0x8020ae6b,0x8020ae6b,3
|
|
517
|
+
np.float32,0x6b5af1,0x6b5af1,3
|
|
518
|
+
np.float32,0xbeb57cd6,0xbeae69a3,3
|
|
519
|
+
np.float32,0x806e7eb2,0x806e7eb2,3
|
|
520
|
+
np.float32,0x7e666edb,0x3fc90fdb,3
|
|
521
|
+
np.float32,0xbf458c18,0xbf283ff0,3
|
|
522
|
+
np.float32,0x3e50518e,0x3e4d8399,3
|
|
523
|
+
np.float32,0x3e9ce224,0x3e983b98,3
|
|
524
|
+
np.float32,0x3e6bc067,0x3e67b6c6,3
|
|
525
|
+
np.float32,0x13783d,0x13783d,3
|
|
526
|
+
np.float32,0xff3d518c,0xbfc90fdb,3
|
|
527
|
+
np.float32,0xfeba5968,0xbfc90fdb,3
|
|
528
|
+
np.float32,0xbf0b9f76,0xbeffa50f,3
|
|
529
|
+
np.float32,0xfe174900,0xbfc90fdb,3
|
|
530
|
+
np.float32,0x3f38bb0a,0x3f200527,3
|
|
531
|
+
np.float32,0x7e94a77d,0x3fc90fdb,3
|
|
532
|
+
np.float32,0x29d776,0x29d776,3
|
|
533
|
+
np.float32,0xbf4e058d,0xbf2d7a15,3
|
|
534
|
+
np.float32,0xbd94abc8,0xbd946923,3
|
|
535
|
+
np.float32,0xbee62db0,0xbed85124,3
|
|
536
|
+
np.float32,0x800000,0x800000,3
|
|
537
|
+
np.float32,0xbef1df7e,0xbee1f636,3
|
|
538
|
+
np.float32,0xbcf3cd20,0xbcf3bab5,3
|
|
539
|
+
np.float32,0x80007b05,0x80007b05,3
|
|
540
|
+
np.float32,0x3d9b3f2e,0x3d9af351,3
|
|
541
|
+
np.float32,0xbf714a68,0xbf417dee,3
|
|
542
|
+
np.float32,0xbf2a2d37,0xbf163069,3
|
|
543
|
+
np.float32,0x8055104f,0x8055104f,3
|
|
544
|
+
np.float32,0x7f5c40d7,0x3fc90fdb,3
|
|
545
|
+
np.float32,0x1,0x1,3
|
|
546
|
+
np.float32,0xff35f3a6,0xbfc90fdb,3
|
|
547
|
+
np.float32,0xd9c7c,0xd9c7c,3
|
|
548
|
+
np.float32,0xbf440cfc,0xbf274f22,3
|
|
549
|
+
np.float32,0x8050ac43,0x8050ac43,3
|
|
550
|
+
np.float32,0x63ee16,0x63ee16,3
|
|
551
|
+
np.float32,0x7d90419b,0x3fc90fdb,3
|
|
552
|
+
np.float32,0xfee22198,0xbfc90fdb,3
|
|
553
|
+
np.float32,0xc2ead,0xc2ead,3
|
|
554
|
+
np.float32,0x7f5cd6a6,0x3fc90fdb,3
|
|
555
|
+
np.float32,0x3f6fab7e,0x3f40a184,3
|
|
556
|
+
np.float32,0x3ecf998c,0x3ec53a73,3
|
|
557
|
+
np.float32,0x7e5271f0,0x3fc90fdb,3
|
|
558
|
+
np.float32,0x67c016,0x67c016,3
|
|
559
|
+
np.float32,0x2189c8,0x2189c8,3
|
|
560
|
+
np.float32,0x27d892,0x27d892,3
|
|
561
|
+
np.float32,0x3f0d02c4,0x3f00e3c0,3
|
|
562
|
+
np.float32,0xbf69ebca,0xbf3d8862,3
|
|
563
|
+
np.float32,0x3e60c0d6,0x3e5d3ebb,3
|
|
564
|
+
np.float32,0x3f45206c,0x3f27fc66,3
|
|
565
|
+
np.float32,0xbf6b47dc,0xbf3e4592,3
|
|
566
|
+
np.float32,0xfe9be2e2,0xbfc90fdb,3
|
|
567
|
+
np.float32,0x7fa00000,0x7fe00000,3
|
|
568
|
+
np.float32,0xff271562,0xbfc90fdb,3
|
|
569
|
+
np.float32,0x3e2e5270,0x3e2caaaf,3
|
|
570
|
+
np.float32,0x80222934,0x80222934,3
|
|
571
|
+
np.float32,0xbd01d220,0xbd01c701,3
|
|
572
|
+
np.float32,0x223aa0,0x223aa0,3
|
|
573
|
+
np.float32,0x3f4b5a7e,0x3f2bd967,3
|
|
574
|
+
np.float32,0x3f217d85,0x3f101200,3
|
|
575
|
+
np.float32,0xbf57663a,0xbf331144,3
|
|
576
|
+
np.float32,0x3f219862,0x3f102536,3
|
|
577
|
+
np.float32,0x28a28c,0x28a28c,3
|
|
578
|
+
np.float32,0xbf3f55f4,0xbf244f86,3
|
|
579
|
+
np.float32,0xbf3de287,0xbf236092,3
|
|
580
|
+
np.float32,0xbf1c1ce2,0xbf0c2fe3,3
|
|
581
|
+
np.float32,0x80000001,0x80000001,3
|
|
582
|
+
np.float32,0x3db695d0,0x3db61a90,3
|
|
583
|
+
np.float32,0x6c39bf,0x6c39bf,3
|
|
584
|
+
np.float32,0x7e33a12f,0x3fc90fdb,3
|
|
585
|
+
np.float32,0x67623a,0x67623a,3
|
|
586
|
+
np.float32,0x3e45dc54,0x3e4373b6,3
|
|
587
|
+
np.float32,0x7f62fa68,0x3fc90fdb,3
|
|
588
|
+
np.float32,0x3f0e1d01,0x3f01bbe5,3
|
|
589
|
+
np.float32,0x3f13dc69,0x3f0615f5,3
|
|
590
|
+
np.float32,0x246703,0x246703,3
|
|
591
|
+
np.float32,0xbf1055b5,0xbf036d07,3
|
|
592
|
+
np.float32,0x7f46d3d0,0x3fc90fdb,3
|
|
593
|
+
np.float32,0x3d2b8086,0x3d2b66e5,3
|
|
594
|
+
np.float32,0xbf03be44,0xbef35776,3
|
|
595
|
+
np.float32,0x3f800000,0x3f490fdb,3
|
|
596
|
+
np.float32,0xbec8d226,0xbebf613d,3
|
|
597
|
+
np.float32,0x3d8faf00,0x3d8f72d4,3
|
|
598
|
+
np.float32,0x170c4e,0x170c4e,3
|
|
599
|
+
np.float32,0xff14c0f0,0xbfc90fdb,3
|
|
600
|
+
np.float32,0xff16245d,0xbfc90fdb,3
|
|
601
|
+
np.float32,0x7f44ce6d,0x3fc90fdb,3
|
|
602
|
+
np.float32,0xbe8175d8,0xbe7d9aeb,3
|
|
603
|
+
np.float32,0x3df7a4a1,0x3df67254,3
|
|
604
|
+
np.float32,0xfe2cc46c,0xbfc90fdb,3
|
|
605
|
+
np.float32,0x3f284e63,0x3f14e335,3
|
|
606
|
+
np.float32,0x7e46e5d6,0x3fc90fdb,3
|
|
607
|
+
np.float32,0x397be4,0x397be4,3
|
|
608
|
+
np.float32,0xbf2560bc,0xbf12d50b,3
|
|
609
|
+
np.float32,0x3ed9b8c1,0x3ecddc60,3
|
|
610
|
+
np.float32,0xfec18c5a,0xbfc90fdb,3
|
|
611
|
+
np.float32,0x64894d,0x64894d,3
|
|
612
|
+
np.float32,0x36a65d,0x36a65d,3
|
|
613
|
+
np.float32,0x804ffcd7,0x804ffcd7,3
|
|
614
|
+
np.float32,0x800f79e4,0x800f79e4,3
|
|
615
|
+
np.float32,0x5d45ac,0x5d45ac,3
|
|
616
|
+
np.float32,0x6cdda0,0x6cdda0,3
|
|
617
|
+
np.float32,0xbf7f2077,0xbf489fe5,3
|
|
618
|
+
np.float32,0xbf152f78,0xbf0713a1,3
|
|
619
|
+
np.float32,0x807bf344,0x807bf344,3
|
|
620
|
+
np.float32,0x3f775023,0x3f44a4d8,3
|
|
621
|
+
np.float32,0xbf3edf67,0xbf240365,3
|
|
622
|
+
np.float32,0x7eed729c,0x3fc90fdb,3
|
|
623
|
+
np.float32,0x14cc29,0x14cc29,3
|
|
624
|
+
np.float32,0x7edd7b6b,0x3fc90fdb,3
|
|
625
|
+
np.float32,0xbf3c6e2c,0xbf226fb7,3
|
|
626
|
+
np.float32,0x51b9ad,0x51b9ad,3
|
|
627
|
+
np.float32,0x3f617ee8,0x3f38dd7c,3
|
|
628
|
+
np.float32,0xff800000,0xbfc90fdb,3
|
|
629
|
+
np.float32,0x7f440ea0,0x3fc90fdb,3
|
|
630
|
+
np.float32,0x3e639893,0x3e5ff49e,3
|
|
631
|
+
np.float32,0xbd791bb0,0xbd78cd3c,3
|
|
632
|
+
np.float32,0x8059fcbc,0x8059fcbc,3
|
|
633
|
+
np.float32,0xbf7d1214,0xbf4796bd,3
|
|
634
|
+
np.float32,0x3ef368fa,0x3ee33788,3
|
|
635
|
+
np.float32,0xbecec0f4,0xbec48055,3
|
|
636
|
+
np.float32,0xbc83d940,0xbc83d656,3
|
|
637
|
+
np.float32,0xbce01220,0xbce003d4,3
|
|
638
|
+
np.float32,0x803192a5,0x803192a5,3
|
|
639
|
+
np.float32,0xbe40e0c0,0xbe3ea4f0,3
|
|
640
|
+
np.float32,0xfb692600,0xbfc90fdb,3
|
|
641
|
+
np.float32,0x3f1bec65,0x3f0c0c88,3
|
|
642
|
+
np.float32,0x7f042798,0x3fc90fdb,3
|
|
643
|
+
np.float32,0xbe047374,0xbe03b83b,3
|
|
644
|
+
np.float32,0x7f7c6630,0x3fc90fdb,3
|
|
645
|
+
np.float32,0x7f58dae3,0x3fc90fdb,3
|
|
646
|
+
np.float32,0x80691c92,0x80691c92,3
|
|
647
|
+
np.float32,0x7dbe76,0x7dbe76,3
|
|
648
|
+
np.float32,0xbf231384,0xbf11339d,3
|
|
649
|
+
np.float32,0xbef4acf8,0xbee43f8b,3
|
|
650
|
+
np.float32,0x3ee9f9d0,0x3edb7793,3
|
|
651
|
+
np.float32,0x3f0064f6,0x3eee04a8,3
|
|
652
|
+
np.float32,0x313732,0x313732,3
|
|
653
|
+
np.float32,0xfd58cf80,0xbfc90fdb,3
|
|
654
|
+
np.float32,0x3f7a2bc9,0x3f461d30,3
|
|
655
|
+
np.float32,0x7f7681af,0x3fc90fdb,3
|
|
656
|
+
np.float32,0x7f504211,0x3fc90fdb,3
|
|
657
|
+
np.float32,0xfeae0c00,0xbfc90fdb,3
|
|
658
|
+
np.float32,0xbee14396,0xbed436d1,3
|
|
659
|
+
np.float32,0x7fc00000,0x7fc00000,3
|
|
660
|
+
np.float32,0x693406,0x693406,3
|
|
661
|
+
np.float32,0x3eb4a679,0x3eadab1b,3
|
|
662
|
+
np.float32,0x550505,0x550505,3
|
|
663
|
+
np.float32,0xfd493d10,0xbfc90fdb,3
|
|
664
|
+
np.float32,0x3f4fc907,0x3f2e8b2c,3
|
|
665
|
+
np.float32,0x80799aa4,0x80799aa4,3
|
|
666
|
+
np.float32,0xff1ea89b,0xbfc90fdb,3
|
|
667
|
+
np.float32,0xff424510,0xbfc90fdb,3
|
|
668
|
+
np.float32,0x7f68d026,0x3fc90fdb,3
|
|
669
|
+
np.float32,0xbea230ca,0xbe9d1200,3
|
|
670
|
+
np.float32,0x7ea585da,0x3fc90fdb,3
|
|
671
|
+
np.float32,0x3f3db211,0x3f23414c,3
|
|
672
|
+
np.float32,0xfea4d964,0xbfc90fdb,3
|
|
673
|
+
np.float32,0xbf17fe18,0xbf092984,3
|
|
674
|
+
np.float32,0x7cc8a2,0x7cc8a2,3
|
|
675
|
+
np.float32,0xff0330ba,0xbfc90fdb,3
|
|
676
|
+
np.float32,0x3f769835,0x3f444592,3
|
|
677
|
+
np.float32,0xeb0ac,0xeb0ac,3
|
|
678
|
+
np.float32,0x7f7e45de,0x3fc90fdb,3
|
|
679
|
+
np.float32,0xbdb510a8,0xbdb49873,3
|
|
680
|
+
np.float32,0x3ebf900b,0x3eb74e9c,3
|
|
681
|
+
np.float32,0xbf21bbce,0xbf103e89,3
|
|
682
|
+
np.float32,0xbf3f4682,0xbf24459d,3
|
|
683
|
+
np.float32,0x7eb6e9c8,0x3fc90fdb,3
|
|
684
|
+
np.float32,0xbf42532d,0xbf2637be,3
|
|
685
|
+
np.float32,0xbd3b2600,0xbd3b04b4,3
|
|
686
|
+
np.float32,0x3f1fa9aa,0x3f0ec23e,3
|
|
687
|
+
np.float32,0x7ed6a0f1,0x3fc90fdb,3
|
|
688
|
+
np.float32,0xff4759a1,0xbfc90fdb,3
|
|
689
|
+
np.float32,0x6d26e3,0x6d26e3,3
|
|
690
|
+
np.float32,0xfe1108e0,0xbfc90fdb,3
|
|
691
|
+
np.float32,0xfdf76900,0xbfc90fdb,3
|
|
692
|
+
np.float32,0xfec66f22,0xbfc90fdb,3
|
|
693
|
+
np.float32,0xbf3d097f,0xbf22d458,3
|
|
694
|
+
np.float32,0x3d85be25,0x3d858d99,3
|
|
695
|
+
np.float32,0x7f36739f,0x3fc90fdb,3
|
|
696
|
+
np.float32,0x7bc0a304,0x3fc90fdb,3
|
|
697
|
+
np.float32,0xff48dd90,0xbfc90fdb,3
|
|
698
|
+
np.float32,0x48cab0,0x48cab0,3
|
|
699
|
+
np.float32,0x3ed3943c,0x3ec8a2ef,3
|
|
700
|
+
np.float32,0xbf61488e,0xbf38bede,3
|
|
701
|
+
np.float32,0x3f543df5,0x3f313525,3
|
|
702
|
+
np.float32,0x5cf2ca,0x5cf2ca,3
|
|
703
|
+
np.float32,0x572686,0x572686,3
|
|
704
|
+
np.float32,0x80369c7c,0x80369c7c,3
|
|
705
|
+
np.float32,0xbd2c1d20,0xbd2c0338,3
|
|
706
|
+
np.float32,0x3e255428,0x3e23ea0b,3
|
|
707
|
+
np.float32,0xbeba9ee0,0xbeb2f54c,3
|
|
708
|
+
np.float32,0x8015c165,0x8015c165,3
|
|
709
|
+
np.float32,0x3d31f488,0x3d31d7e6,3
|
|
710
|
+
np.float32,0x3f68591c,0x3f3cac43,3
|
|
711
|
+
np.float32,0xf5ed5,0xf5ed5,3
|
|
712
|
+
np.float32,0xbf3b1d34,0xbf21949e,3
|
|
713
|
+
np.float32,0x1f0343,0x1f0343,3
|
|
714
|
+
np.float32,0x3f0e52b5,0x3f01e4ef,3
|
|
715
|
+
np.float32,0x7f57c596,0x3fc90fdb,3
|
|
716
|
+
np.float64,0x7fd8e333ddb1c667,0x3ff921fb54442d18,1
|
|
717
|
+
np.float64,0x800bcc9cdad7993a,0x800bcc9cdad7993a,1
|
|
718
|
+
np.float64,0x3fcd6f81df3adf00,0x3fcceebbafc5d55e,1
|
|
719
|
+
np.float64,0x3fed7338a57ae671,0x3fe7ce3e5811fc0a,1
|
|
720
|
+
np.float64,0x7fe64994fcac9329,0x3ff921fb54442d18,1
|
|
721
|
+
np.float64,0xfa5a6345f4b4d,0xfa5a6345f4b4d,1
|
|
722
|
+
np.float64,0xe9dcd865d3b9b,0xe9dcd865d3b9b,1
|
|
723
|
+
np.float64,0x7fea6cffabf4d9fe,0x3ff921fb54442d18,1
|
|
724
|
+
np.float64,0xa9e1de6153c3c,0xa9e1de6153c3c,1
|
|
725
|
+
np.float64,0xab6bdc5356d7c,0xab6bdc5356d7c,1
|
|
726
|
+
np.float64,0x80062864a02c50ca,0x80062864a02c50ca,1
|
|
727
|
+
np.float64,0xbfdac03aa7b58076,0xbfd9569f3230128d,1
|
|
728
|
+
np.float64,0xbfe61b77752c36ef,0xbfe3588f51b8be8f,1
|
|
729
|
+
np.float64,0x800bc854c8d790aa,0x800bc854c8d790aa,1
|
|
730
|
+
np.float64,0x3feed1a2da3da346,0x3fe887f9b8ea031f,1
|
|
731
|
+
np.float64,0x3fe910d3697221a7,0x3fe54365a53d840e,1
|
|
732
|
+
np.float64,0x7fe7ab4944ef5692,0x3ff921fb54442d18,1
|
|
733
|
+
np.float64,0x3fa462f1a028c5e3,0x3fa460303a6a4e69,1
|
|
734
|
+
np.float64,0x800794f1a3af29e4,0x800794f1a3af29e4,1
|
|
735
|
+
np.float64,0x3fee6fe7fafcdfd0,0x3fe854f863816d55,1
|
|
736
|
+
np.float64,0x8000000000000000,0x8000000000000000,1
|
|
737
|
+
np.float64,0x7f336472fe66d,0x7f336472fe66d,1
|
|
738
|
+
np.float64,0xffb1623ac822c478,0xbff921fb54442d18,1
|
|
739
|
+
np.float64,0x3fbacd68ce359ad2,0x3fbab480b3638846,1
|
|
740
|
+
np.float64,0xffd5c02706ab804e,0xbff921fb54442d18,1
|
|
741
|
+
np.float64,0xbfd4daf03d29b5e0,0xbfd42928f069c062,1
|
|
742
|
+
np.float64,0x800c6e85dbd8dd0c,0x800c6e85dbd8dd0c,1
|
|
743
|
+
np.float64,0x800e3599c5bc6b34,0x800e3599c5bc6b34,1
|
|
744
|
+
np.float64,0x2c0d654c581ad,0x2c0d654c581ad,1
|
|
745
|
+
np.float64,0xbfdd3eb13fba7d62,0xbfdb6e8143302de7,1
|
|
746
|
+
np.float64,0x800b60cb8776c197,0x800b60cb8776c197,1
|
|
747
|
+
np.float64,0x80089819ad113034,0x80089819ad113034,1
|
|
748
|
+
np.float64,0x29fe721453fcf,0x29fe721453fcf,1
|
|
749
|
+
np.float64,0x3fe8722f4df0e45f,0x3fe4e026d9eadb4d,1
|
|
750
|
+
np.float64,0xffd1fbcd01a3f79a,0xbff921fb54442d18,1
|
|
751
|
+
np.float64,0x7fc74e1e982e9c3c,0x3ff921fb54442d18,1
|
|
752
|
+
np.float64,0x800c09d3d15813a8,0x800c09d3d15813a8,1
|
|
753
|
+
np.float64,0xbfeee4578b3dc8af,0xbfe891ab3d6c3ce4,1
|
|
754
|
+
np.float64,0xffdd01a6f33a034e,0xbff921fb54442d18,1
|
|
755
|
+
np.float64,0x7fcc130480382608,0x3ff921fb54442d18,1
|
|
756
|
+
np.float64,0xffcbb6bd1d376d7c,0xbff921fb54442d18,1
|
|
757
|
+
np.float64,0xc068a53780d15,0xc068a53780d15,1
|
|
758
|
+
np.float64,0xbfc974f15532e9e4,0xbfc92100b355f3e7,1
|
|
759
|
+
np.float64,0x3fe6da79442db4f3,0x3fe3d87393b082e7,1
|
|
760
|
+
np.float64,0xd9d9be4db3b38,0xd9d9be4db3b38,1
|
|
761
|
+
np.float64,0x5ea50a20bd4a2,0x5ea50a20bd4a2,1
|
|
762
|
+
np.float64,0xbfe5597f7d2ab2ff,0xbfe2d3ccc544b52b,1
|
|
763
|
+
np.float64,0x80019364e4e326cb,0x80019364e4e326cb,1
|
|
764
|
+
np.float64,0x3fed2902c3fa5206,0x3fe7a5e1df07e5c1,1
|
|
765
|
+
np.float64,0xbfa7b72b5c2f6e50,0xbfa7b2d545b3cc1f,1
|
|
766
|
+
np.float64,0xffdb60dd43b6c1ba,0xbff921fb54442d18,1
|
|
767
|
+
np.float64,0x81a65d8b034cc,0x81a65d8b034cc,1
|
|
768
|
+
np.float64,0x8000c30385818608,0x8000c30385818608,1
|
|
769
|
+
np.float64,0x6022f5f4c045f,0x6022f5f4c045f,1
|
|
770
|
+
np.float64,0x8007a2bb810f4578,0x8007a2bb810f4578,1
|
|
771
|
+
np.float64,0x7fdc68893238d111,0x3ff921fb54442d18,1
|
|
772
|
+
np.float64,0x7fd443454ea8868a,0x3ff921fb54442d18,1
|
|
773
|
+
np.float64,0xffe6b04209ed6084,0xbff921fb54442d18,1
|
|
774
|
+
np.float64,0x7fcd9733d13b2e67,0x3ff921fb54442d18,1
|
|
775
|
+
np.float64,0xf5ee80a9ebdd0,0xf5ee80a9ebdd0,1
|
|
776
|
+
np.float64,0x3fe3788e8de6f11e,0x3fe17dec7e6843a0,1
|
|
777
|
+
np.float64,0x3fee36f62f7c6dec,0x3fe836f832515b43,1
|
|
778
|
+
np.float64,0xf6cb49aded969,0xf6cb49aded969,1
|
|
779
|
+
np.float64,0x3fd2b15ea4a562bc,0x3fd22fdc09920e67,1
|
|
780
|
+
np.float64,0x7fccf6aef139ed5d,0x3ff921fb54442d18,1
|
|
781
|
+
np.float64,0x3fd396b8ce272d72,0x3fd3026118857bd4,1
|
|
782
|
+
np.float64,0x7fe53d3c80ea7a78,0x3ff921fb54442d18,1
|
|
783
|
+
np.float64,0x3feae88fc4f5d120,0x3fe65fb04b18ef7a,1
|
|
784
|
+
np.float64,0x3fedc643747b8c86,0x3fe7fafa6c20e25a,1
|
|
785
|
+
np.float64,0xffdb2dc0df365b82,0xbff921fb54442d18,1
|
|
786
|
+
np.float64,0xbfa2af3658255e70,0xbfa2ad17348f4253,1
|
|
787
|
+
np.float64,0x3f8aa77b30354ef6,0x3f8aa71892336a69,1
|
|
788
|
+
np.float64,0xbfdd1b1efbba363e,0xbfdb510dcd186820,1
|
|
789
|
+
np.float64,0x800f50d99c5ea1b3,0x800f50d99c5ea1b3,1
|
|
790
|
+
np.float64,0xff6ed602403dac00,0xbff921fb54442d18,1
|
|
791
|
+
np.float64,0x800477d71aa8efaf,0x800477d71aa8efaf,1
|
|
792
|
+
np.float64,0xbfe729a9e86e5354,0xbfe40ca78d9eefcf,1
|
|
793
|
+
np.float64,0x3fd81ab2d4303566,0x3fd70d7e3937ea22,1
|
|
794
|
+
np.float64,0xb617cbab6c2fa,0xb617cbab6c2fa,1
|
|
795
|
+
np.float64,0x7fefffffffffffff,0x3ff921fb54442d18,1
|
|
796
|
+
np.float64,0xffa40933ac281260,0xbff921fb54442d18,1
|
|
797
|
+
np.float64,0xbfe1ede621e3dbcc,0xbfe057bb2b341ced,1
|
|
798
|
+
np.float64,0xbfec700f03b8e01e,0xbfe73fb190bc722e,1
|
|
799
|
+
np.float64,0x6e28af02dc517,0x6e28af02dc517,1
|
|
800
|
+
np.float64,0x3fe37ad37ae6f5a7,0x3fe17f94674818a9,1
|
|
801
|
+
np.float64,0x8000cbdeeae197bf,0x8000cbdeeae197bf,1
|
|
802
|
+
np.float64,0x3fe8fd1f01f1fa3e,0x3fe5372bbec5d72c,1
|
|
803
|
+
np.float64,0x3f8f9229103f2452,0x3f8f918531894256,1
|
|
804
|
+
np.float64,0x800536858e0a6d0c,0x800536858e0a6d0c,1
|
|
805
|
+
np.float64,0x7fe82bb4f9f05769,0x3ff921fb54442d18,1
|
|
806
|
+
np.float64,0xffc1c2fb592385f8,0xbff921fb54442d18,1
|
|
807
|
+
np.float64,0x7f924ddfc0249bbf,0x3ff921fb54442d18,1
|
|
808
|
+
np.float64,0xffd5e125c52bc24c,0xbff921fb54442d18,1
|
|
809
|
+
np.float64,0xbfef0d8738be1b0e,0xbfe8a6ef17b16c10,1
|
|
810
|
+
np.float64,0x3fc9c8875233910f,0x3fc9715e708503cb,1
|
|
811
|
+
np.float64,0xbfe2d926f4e5b24e,0xbfe108956e61cbb3,1
|
|
812
|
+
np.float64,0x7fd61c496dac3892,0x3ff921fb54442d18,1
|
|
813
|
+
np.float64,0x7fed545c6b7aa8b8,0x3ff921fb54442d18,1
|
|
814
|
+
np.float64,0x8003746fea86e8e1,0x8003746fea86e8e1,1
|
|
815
|
+
np.float64,0x3fdf515e75bea2bd,0x3fdd201a5585caa3,1
|
|
816
|
+
np.float64,0xffda87c8ee350f92,0xbff921fb54442d18,1
|
|
817
|
+
np.float64,0xffc675d8e22cebb0,0xbff921fb54442d18,1
|
|
818
|
+
np.float64,0xffcdc173433b82e8,0xbff921fb54442d18,1
|
|
819
|
+
np.float64,0xffed9df1517b3be2,0xbff921fb54442d18,1
|
|
820
|
+
np.float64,0x3fd6a2eec72d45de,0x3fd5c1f1d7dcddcf,1
|
|
821
|
+
np.float64,0xffec116a66f822d4,0xbff921fb54442d18,1
|
|
822
|
+
np.float64,0x8007c2a2458f8545,0x8007c2a2458f8545,1
|
|
823
|
+
np.float64,0x3fe4ee80d969dd02,0x3fe2895076094668,1
|
|
824
|
+
np.float64,0x3fe3cae7116795ce,0x3fe1b9c07e0d03a7,1
|
|
825
|
+
np.float64,0xbfd81bf8d8b037f2,0xbfd70e9bbbb4ca57,1
|
|
826
|
+
np.float64,0x800c88ccd1f9119a,0x800c88ccd1f9119a,1
|
|
827
|
+
np.float64,0xffdab2aee2b5655e,0xbff921fb54442d18,1
|
|
828
|
+
np.float64,0x3fe743d227ee87a4,0x3fe41dcaef186d96,1
|
|
829
|
+
np.float64,0x3fb060fd0220c1fa,0x3fb05b47f56ebbb4,1
|
|
830
|
+
np.float64,0xbfd3f03772a7e06e,0xbfd3541522377291,1
|
|
831
|
+
np.float64,0x190a5ae03216,0x190a5ae03216,1
|
|
832
|
+
np.float64,0x3fe48c71916918e4,0x3fe24442f45b3183,1
|
|
833
|
+
np.float64,0x800862470590c48e,0x800862470590c48e,1
|
|
834
|
+
np.float64,0x7fd3ced89d279db0,0x3ff921fb54442d18,1
|
|
835
|
+
np.float64,0x3feb3d9b4ab67b37,0x3fe69140cf2623f7,1
|
|
836
|
+
np.float64,0xbc3f296b787e5,0xbc3f296b787e5,1
|
|
837
|
+
np.float64,0xbfed6b905dfad721,0xbfe7ca1881a8c0fd,1
|
|
838
|
+
np.float64,0xbfe621c2aaac4386,0xbfe35cd1969a82db,1
|
|
839
|
+
np.float64,0x8009e7b17593cf63,0x8009e7b17593cf63,1
|
|
840
|
+
np.float64,0x80045f580ca8beb1,0x80045f580ca8beb1,1
|
|
841
|
+
np.float64,0xbfea2e177e745c2f,0xbfe5f13971633339,1
|
|
842
|
+
np.float64,0x3fee655787fccab0,0x3fe84f6b98b6de26,1
|
|
843
|
+
np.float64,0x3fc9cde92f339bd0,0x3fc9768a88b2c97c,1
|
|
844
|
+
np.float64,0x3fc819c3b3303388,0x3fc7d25e1526e731,1
|
|
845
|
+
np.float64,0x3fd3e848d2a7d090,0x3fd34cd9e6af558f,1
|
|
846
|
+
np.float64,0x3fe19dacac633b5a,0x3fe01a6b4d27adc2,1
|
|
847
|
+
np.float64,0x800b190da316321c,0x800b190da316321c,1
|
|
848
|
+
np.float64,0xd5c69711ab8d3,0xd5c69711ab8d3,1
|
|
849
|
+
np.float64,0xbfdc31bed7b8637e,0xbfda8ea3c1309d6d,1
|
|
850
|
+
np.float64,0xbfd02ba007a05740,0xbfcfad86f0d756dc,1
|
|
851
|
+
np.float64,0x3fe874473d70e88e,0x3fe4e1793cd82123,1
|
|
852
|
+
np.float64,0xffb465585c28cab0,0xbff921fb54442d18,1
|
|
853
|
+
np.float64,0xbfb5d8e13e2bb1c0,0xbfb5cb5c7807fc4d,1
|
|
854
|
+
np.float64,0xffe80f933bf01f26,0xbff921fb54442d18,1
|
|
855
|
+
np.float64,0x7feea783f5fd4f07,0x3ff921fb54442d18,1
|
|
856
|
+
np.float64,0xbfae6665f43cccd0,0xbfae5d45b0a6f90a,1
|
|
857
|
+
np.float64,0x800bd6ef5a77addf,0x800bd6ef5a77addf,1
|
|
858
|
+
np.float64,0x800d145babda28b8,0x800d145babda28b8,1
|
|
859
|
+
np.float64,0x39de155473bc3,0x39de155473bc3,1
|
|
860
|
+
np.float64,0x3fefbd6bb1ff7ad8,0x3fe9008e73a3296e,1
|
|
861
|
+
np.float64,0x3fc40bca3d281798,0x3fc3e2710e167007,1
|
|
862
|
+
np.float64,0x3fcae0918335c120,0x3fca7e09e704a678,1
|
|
863
|
+
np.float64,0x51287fbea2511,0x51287fbea2511,1
|
|
864
|
+
np.float64,0x7fa6bc33a82d7866,0x3ff921fb54442d18,1
|
|
865
|
+
np.float64,0xe72a2bebce546,0xe72a2bebce546,1
|
|
866
|
+
np.float64,0x3fe1c8fd686391fa,0x3fe03b9622aeb4e3,1
|
|
867
|
+
np.float64,0x3fe2a73ac3654e76,0x3fe0e36bc1ee4ac4,1
|
|
868
|
+
np.float64,0x59895218b312b,0x59895218b312b,1
|
|
869
|
+
np.float64,0xc6dc25c78db85,0xc6dc25c78db85,1
|
|
870
|
+
np.float64,0xbfc06cfac520d9f4,0xbfc0561f85d2c907,1
|
|
871
|
+
np.float64,0xbfea912dc4f5225c,0xbfe62c3b1c01c793,1
|
|
872
|
+
np.float64,0x3fb78ce89a2f19d0,0x3fb77bfcb65a67d3,1
|
|
873
|
+
np.float64,0xbfece5cdea39cb9c,0xbfe78103d24099e5,1
|
|
874
|
+
np.float64,0x30d3054e61a61,0x30d3054e61a61,1
|
|
875
|
+
np.float64,0xbfd3fe26fba7fc4e,0xbfd360c8447c4f7a,1
|
|
876
|
+
np.float64,0x800956072a92ac0f,0x800956072a92ac0f,1
|
|
877
|
+
np.float64,0x7fe639b3b6ec7366,0x3ff921fb54442d18,1
|
|
878
|
+
np.float64,0x800ee30240bdc605,0x800ee30240bdc605,1
|
|
879
|
+
np.float64,0x7fef6af0d2bed5e1,0x3ff921fb54442d18,1
|
|
880
|
+
np.float64,0xffefce8725ff9d0d,0xbff921fb54442d18,1
|
|
881
|
+
np.float64,0x3fe2e311da65c624,0x3fe10ff1623089dc,1
|
|
882
|
+
np.float64,0xbfe7e5cbe56fcb98,0xbfe486c3daeda67c,1
|
|
883
|
+
np.float64,0x80095bc14472b783,0x80095bc14472b783,1
|
|
884
|
+
np.float64,0xffef0cb4553e1968,0xbff921fb54442d18,1
|
|
885
|
+
np.float64,0xe3e60567c7cc1,0xe3e60567c7cc1,1
|
|
886
|
+
np.float64,0xffde919f06bd233e,0xbff921fb54442d18,1
|
|
887
|
+
np.float64,0x3fe3f9632e27f2c6,0x3fe1db49ebd21c4e,1
|
|
888
|
+
np.float64,0x9dee9a233bdd4,0x9dee9a233bdd4,1
|
|
889
|
+
np.float64,0xbfe3bb0602e7760c,0xbfe1ae41b6d4c488,1
|
|
890
|
+
np.float64,0x3fc46945a128d288,0x3fc43da54c6c6a2a,1
|
|
891
|
+
np.float64,0x7fdef149ac3de292,0x3ff921fb54442d18,1
|
|
892
|
+
np.float64,0x800a96c76d752d8f,0x800a96c76d752d8f,1
|
|
893
|
+
np.float64,0x3f971a32382e3464,0x3f9719316b9e9baf,1
|
|
894
|
+
np.float64,0x7fe97bcf15b2f79d,0x3ff921fb54442d18,1
|
|
895
|
+
np.float64,0x7fea894558f5128a,0x3ff921fb54442d18,1
|
|
896
|
+
np.float64,0x3fc9e3be1933c780,0x3fc98b847c3923eb,1
|
|
897
|
+
np.float64,0x3f7accac40359959,0x3f7acc9330741b64,1
|
|
898
|
+
np.float64,0xa80c136950183,0xa80c136950183,1
|
|
899
|
+
np.float64,0x3fe408732b2810e6,0x3fe1e61e7cbc8824,1
|
|
900
|
+
np.float64,0xffa775bc042eeb80,0xbff921fb54442d18,1
|
|
901
|
+
np.float64,0x3fbf04bd223e0980,0x3fbede37b8fc697e,1
|
|
902
|
+
np.float64,0x7fd999b34c333366,0x3ff921fb54442d18,1
|
|
903
|
+
np.float64,0xe72146dfce429,0xe72146dfce429,1
|
|
904
|
+
np.float64,0x4f511ee49ea24,0x4f511ee49ea24,1
|
|
905
|
+
np.float64,0xffb3e6e58827cdc8,0xbff921fb54442d18,1
|
|
906
|
+
np.float64,0x3fd1f180cfa3e300,0x3fd17e85b2871de2,1
|
|
907
|
+
np.float64,0x97c8e45b2f91d,0x97c8e45b2f91d,1
|
|
908
|
+
np.float64,0xbfeeb20e88fd641d,0xbfe8778f878440bf,1
|
|
909
|
+
np.float64,0xbfe1fc6dee23f8dc,0xbfe062c815a93cde,1
|
|
910
|
+
np.float64,0xab4bf71f5697f,0xab4bf71f5697f,1
|
|
911
|
+
np.float64,0xa9675a2952cec,0xa9675a2952cec,1
|
|
912
|
+
np.float64,0xbfef3ea4a33e7d49,0xbfe8c02743ebc1b6,1
|
|
913
|
+
np.float64,0x3fe22a2eafa4545d,0x3fe08577afca52a9,1
|
|
914
|
+
np.float64,0x3fe8a08daaf1411c,0x3fe4fd5a34f05305,1
|
|
915
|
+
np.float64,0xbfc6cda77b2d9b50,0xbfc6910bcfa0cf4f,1
|
|
916
|
+
np.float64,0x3fec398394387307,0x3fe7211dd5276500,1
|
|
917
|
+
np.float64,0x3fe36c95c626d92c,0x3fe1752e5aa2357b,1
|
|
918
|
+
np.float64,0xffd8b9e7073173ce,0xbff921fb54442d18,1
|
|
919
|
+
np.float64,0xffe19f043ae33e08,0xbff921fb54442d18,1
|
|
920
|
+
np.float64,0x800e3640709c6c81,0x800e3640709c6c81,1
|
|
921
|
+
np.float64,0x3fe7d6c20aafad84,0x3fe47d1a3307d9c8,1
|
|
922
|
+
np.float64,0x80093fd63b727fad,0x80093fd63b727fad,1
|
|
923
|
+
np.float64,0xffe1a671a4634ce3,0xbff921fb54442d18,1
|
|
924
|
+
np.float64,0xbfe53a6b386a74d6,0xbfe2be41859cb10d,1
|
|
925
|
+
np.float64,0xbfed149a097a2934,0xbfe79ab7e3e93c1c,1
|
|
926
|
+
np.float64,0x7fc2769a5724ed34,0x3ff921fb54442d18,1
|
|
927
|
+
np.float64,0xffd01e4e99a03c9e,0xbff921fb54442d18,1
|
|
928
|
+
np.float64,0xa61f38434c3e7,0xa61f38434c3e7,1
|
|
929
|
+
np.float64,0x800ad4ac5195a959,0x800ad4ac5195a959,1
|
|
930
|
+
np.float64,0x7ff8000000000000,0x7ff8000000000000,1
|
|
931
|
+
np.float64,0x80034a45b6c6948c,0x80034a45b6c6948c,1
|
|
932
|
+
np.float64,0x6350b218c6a17,0x6350b218c6a17,1
|
|
933
|
+
np.float64,0xfff0000000000000,0xbff921fb54442d18,1
|
|
934
|
+
np.float64,0x3fe363e759e6c7cf,0x3fe16ed58d80f9ce,1
|
|
935
|
+
np.float64,0xffe3b98e59e7731c,0xbff921fb54442d18,1
|
|
936
|
+
np.float64,0x3fdbf7b40337ef68,0x3fda5df7ad3c80f9,1
|
|
937
|
+
np.float64,0xbfe9cdf784739bef,0xbfe5b74f346ef93d,1
|
|
938
|
+
np.float64,0xbfc321bea326437c,0xbfc2fdc0d4ff7561,1
|
|
939
|
+
np.float64,0xbfe40f77d2a81ef0,0xbfe1eb28c4ae4dde,1
|
|
940
|
+
np.float64,0x7fe071806960e300,0x3ff921fb54442d18,1
|
|
941
|
+
np.float64,0x7fd269006ea4d200,0x3ff921fb54442d18,1
|
|
942
|
+
np.float64,0x80017a56e0e2f4af,0x80017a56e0e2f4af,1
|
|
943
|
+
np.float64,0x8004b4ea09a969d5,0x8004b4ea09a969d5,1
|
|
944
|
+
np.float64,0xbfedbb01e63b7604,0xbfe7f4f0e84297df,1
|
|
945
|
+
np.float64,0x3fe44454826888a9,0x3fe210ff6d005706,1
|
|
946
|
+
np.float64,0xbfe0e77e6ea1cefd,0xbfdf1a977da33402,1
|
|
947
|
+
np.float64,0xbfed6d4c8c3ada99,0xbfe7cb0932093f60,1
|
|
948
|
+
np.float64,0x1d74cb9e3ae9a,0x1d74cb9e3ae9a,1
|
|
949
|
+
np.float64,0x80082a785d1054f1,0x80082a785d1054f1,1
|
|
950
|
+
np.float64,0x3fe58393266b0726,0x3fe2f0d8e91d4887,1
|
|
951
|
+
np.float64,0xffe4028899680510,0xbff921fb54442d18,1
|
|
952
|
+
np.float64,0x783a2e5af0746,0x783a2e5af0746,1
|
|
953
|
+
np.float64,0x7fcdce88e73b9d11,0x3ff921fb54442d18,1
|
|
954
|
+
np.float64,0x3fc58672a72b0ce5,0x3fc5535e090e56e2,1
|
|
955
|
+
np.float64,0x800889c839b11391,0x800889c839b11391,1
|
|
956
|
+
np.float64,0xffe5e05c466bc0b8,0xbff921fb54442d18,1
|
|
957
|
+
np.float64,0xbfcbef6ebe37dedc,0xbfcb810752468f49,1
|
|
958
|
+
np.float64,0xffe9408563b2810a,0xbff921fb54442d18,1
|
|
959
|
+
np.float64,0xbfee4738367c8e70,0xbfe83f8e5dd7602f,1
|
|
960
|
+
np.float64,0xbfe4aeb587295d6b,0xbfe25c7a0c76a454,1
|
|
961
|
+
np.float64,0xffc9aea0a7335d40,0xbff921fb54442d18,1
|
|
962
|
+
np.float64,0xe1e02199c3c04,0xe1e02199c3c04,1
|
|
963
|
+
np.float64,0xbfbd9400783b2800,0xbfbd729345d1d14f,1
|
|
964
|
+
np.float64,0x7a5418bcf4a84,0x7a5418bcf4a84,1
|
|
965
|
+
np.float64,0x3fdc1c2fa5b83860,0x3fda7c935965ae72,1
|
|
966
|
+
np.float64,0x80076a9f58ced53f,0x80076a9f58ced53f,1
|
|
967
|
+
np.float64,0x3fedc4bf957b897f,0x3fe7fa2a83148f1c,1
|
|
968
|
+
np.float64,0x800981b8a9d30372,0x800981b8a9d30372,1
|
|
969
|
+
np.float64,0xffe1082311621046,0xbff921fb54442d18,1
|
|
970
|
+
np.float64,0xe0091f89c0124,0xe0091f89c0124,1
|
|
971
|
+
np.float64,0xbfce8d674f3d1ad0,0xbfcdfdbf2ddaa0ca,1
|
|
972
|
+
np.float64,0x800516e72eaa2dcf,0x800516e72eaa2dcf,1
|
|
973
|
+
np.float64,0xffe61ee64c6c3dcc,0xbff921fb54442d18,1
|
|
974
|
+
np.float64,0x7fed2683cafa4d07,0x3ff921fb54442d18,1
|
|
975
|
+
np.float64,0xffd4faf27729f5e4,0xbff921fb54442d18,1
|
|
976
|
+
np.float64,0x7fe308fa842611f4,0x3ff921fb54442d18,1
|
|
977
|
+
np.float64,0x3fc612a62b2c2550,0x3fc5db9ddbd4e159,1
|
|
978
|
+
np.float64,0xbfe5b01e766b603d,0xbfe30f72a875e988,1
|
|
979
|
+
np.float64,0x3fc2dd8b9a25bb17,0x3fc2bb06246b9f78,1
|
|
980
|
+
np.float64,0x8170908102e12,0x8170908102e12,1
|
|
981
|
+
np.float64,0x800c1c8a8a583915,0x800c1c8a8a583915,1
|
|
982
|
+
np.float64,0xffe5d91e8b6bb23c,0xbff921fb54442d18,1
|
|
983
|
+
np.float64,0xffd140adee22815c,0xbff921fb54442d18,1
|
|
984
|
+
np.float64,0xbfe2f1f5f8e5e3ec,0xbfe11afa5d749952,1
|
|
985
|
+
np.float64,0xbfed6d1d587ada3b,0xbfe7caef9ecf7651,1
|
|
986
|
+
np.float64,0x3fe9b85e67f370bd,0x3fe5aa3474768982,1
|
|
987
|
+
np.float64,0x7fdc8932edb91265,0x3ff921fb54442d18,1
|
|
988
|
+
np.float64,0x7fd136bc54a26d78,0x3ff921fb54442d18,1
|
|
989
|
+
np.float64,0x800a1ea12a343d43,0x800a1ea12a343d43,1
|
|
990
|
+
np.float64,0x3fec6a5c1b78d4b8,0x3fe73c82235c3f8f,1
|
|
991
|
+
np.float64,0x800fbf6a00df7ed4,0x800fbf6a00df7ed4,1
|
|
992
|
+
np.float64,0xbfd0e6e0cda1cdc2,0xbfd0864bf8cad294,1
|
|
993
|
+
np.float64,0x3fc716df482e2dbf,0x3fc6d7fbfd4a8470,1
|
|
994
|
+
np.float64,0xbfe75990936eb321,0xbfe42bffec3fa0d7,1
|
|
995
|
+
np.float64,0x3fd58e54a02b1ca9,0x3fd4cace1107a5cc,1
|
|
996
|
+
np.float64,0xbfc9c04136338084,0xbfc9696ad2591d54,1
|
|
997
|
+
np.float64,0xdd1f0147ba3e0,0xdd1f0147ba3e0,1
|
|
998
|
+
np.float64,0x5c86a940b90e,0x5c86a940b90e,1
|
|
999
|
+
np.float64,0xbfecae3b8e795c77,0xbfe7624d4988c612,1
|
|
1000
|
+
np.float64,0xffd0370595206e0c,0xbff921fb54442d18,1
|
|
1001
|
+
np.float64,0xbfdc26d443384da8,0xbfda857ecd33ba9f,1
|
|
1002
|
+
np.float64,0xbfd1c849d9a39094,0xbfd15849449cc378,1
|
|
1003
|
+
np.float64,0xffee04acdb3c0959,0xbff921fb54442d18,1
|
|
1004
|
+
np.float64,0xbfded1056dbda20a,0xbfdcb83b30e1528c,1
|
|
1005
|
+
np.float64,0x7fb7b826622f704c,0x3ff921fb54442d18,1
|
|
1006
|
+
np.float64,0xbfee4df8ae7c9bf1,0xbfe8431df9dfd05d,1
|
|
1007
|
+
np.float64,0x7fe7f3670e2fe6cd,0x3ff921fb54442d18,1
|
|
1008
|
+
np.float64,0x8008ac9ae0d15936,0x8008ac9ae0d15936,1
|
|
1009
|
+
np.float64,0x800dce9f3b3b9d3f,0x800dce9f3b3b9d3f,1
|
|
1010
|
+
np.float64,0x7fbb19db203633b5,0x3ff921fb54442d18,1
|
|
1011
|
+
np.float64,0x3fe56c7f302ad8fe,0x3fe2e0eec3ad45fd,1
|
|
1012
|
+
np.float64,0x7fe82c05c570580b,0x3ff921fb54442d18,1
|
|
1013
|
+
np.float64,0xc0552b7780aa6,0xc0552b7780aa6,1
|
|
1014
|
+
np.float64,0x39d40e3073a83,0x39d40e3073a83,1
|
|
1015
|
+
np.float64,0x3fd8db54d731b6aa,0x3fd7b589b3ee9b20,1
|
|
1016
|
+
np.float64,0xffcdd355233ba6ac,0xbff921fb54442d18,1
|
|
1017
|
+
np.float64,0x3fbe97b3a43d2f67,0x3fbe72bca9be0348,1
|
|
1018
|
+
np.float64,0xbff0000000000000,0xbfe921fb54442d18,1
|
|
1019
|
+
np.float64,0xbfb4f55e6229eac0,0xbfb4e96df18a75a7,1
|
|
1020
|
+
np.float64,0xbfc66399ba2cc734,0xbfc62a3298bd96fc,1
|
|
1021
|
+
np.float64,0x3fd00988bb201311,0x3fcf6d67a9374c38,1
|
|
1022
|
+
np.float64,0x7fe471867d28e30c,0x3ff921fb54442d18,1
|
|
1023
|
+
np.float64,0xbfe38e0e64271c1d,0xbfe18d9888b7523b,1
|
|
1024
|
+
np.float64,0x8009dc127573b825,0x8009dc127573b825,1
|
|
1025
|
+
np.float64,0x800047bde4608f7d,0x800047bde4608f7d,1
|
|
1026
|
+
np.float64,0xffeede42c77dbc85,0xbff921fb54442d18,1
|
|
1027
|
+
np.float64,0xd8cf6d13b19ee,0xd8cf6d13b19ee,1
|
|
1028
|
+
np.float64,0xbfd08fb302a11f66,0xbfd034b1f8235e23,1
|
|
1029
|
+
np.float64,0x7fdb404c0b368097,0x3ff921fb54442d18,1
|
|
1030
|
+
np.float64,0xbfd6ba0438ad7408,0xbfd5d673e3276ec1,1
|
|
1031
|
+
np.float64,0xffd9568027b2ad00,0xbff921fb54442d18,1
|
|
1032
|
+
np.float64,0xbfb313b73e262770,0xbfb30ab4acb4fa67,1
|
|
1033
|
+
np.float64,0xbfe2dc1a15e5b834,0xbfe10ac5f8f3acd3,1
|
|
1034
|
+
np.float64,0xbfee426bf4bc84d8,0xbfe83d061df91edd,1
|
|
1035
|
+
np.float64,0xd9142c2fb2286,0xd9142c2fb2286,1
|
|
1036
|
+
np.float64,0x7feb0d11dff61a23,0x3ff921fb54442d18,1
|
|
1037
|
+
np.float64,0x800fea5b509fd4b7,0x800fea5b509fd4b7,1
|
|
1038
|
+
np.float64,0x3fe1a8818da35103,0x3fe022ba1bdf366e,1
|
|
1039
|
+
np.float64,0x8010000000000000,0x8010000000000000,1
|
|
1040
|
+
np.float64,0xbfd8fc6de6b1f8dc,0xbfd7d24726ed8dcc,1
|
|
1041
|
+
np.float64,0xf4b3dc2de967c,0xf4b3dc2de967c,1
|
|
1042
|
+
np.float64,0x8af0409b15e08,0x8af0409b15e08,1
|
|
1043
|
+
np.float64,0x3fb21e6934243cd2,0x3fb216b065f8709a,1
|
|
1044
|
+
np.float64,0x3fc53069392a60d2,0x3fc4ffa931211fb9,1
|
|
1045
|
+
np.float64,0xffc955812c32ab04,0xbff921fb54442d18,1
|
|
1046
|
+
np.float64,0xbfe3de42b1a7bc86,0xbfe1c7bd1324de75,1
|
|
1047
|
+
np.float64,0x1dc149a03b82a,0x1dc149a03b82a,1
|
|
1048
|
+
np.float64,0x8001bc5a24a378b5,0x8001bc5a24a378b5,1
|
|
1049
|
+
np.float64,0x3da14c407b44,0x3da14c407b44,1
|
|
1050
|
+
np.float64,0x80025e8da924bd1c,0x80025e8da924bd1c,1
|
|
1051
|
+
np.float64,0xbfcb0141c9360284,0xbfca9d572ea5e1f3,1
|
|
1052
|
+
np.float64,0xc90036fd92007,0xc90036fd92007,1
|
|
1053
|
+
np.float64,0x138312c427063,0x138312c427063,1
|
|
1054
|
+
np.float64,0x800dda3a963bb475,0x800dda3a963bb475,1
|
|
1055
|
+
np.float64,0x3fe9339934f26732,0x3fe558e723291f78,1
|
|
1056
|
+
np.float64,0xbfea8357027506ae,0xbfe6240826faaf48,1
|
|
1057
|
+
np.float64,0x7fe04735cae08e6b,0x3ff921fb54442d18,1
|
|
1058
|
+
np.float64,0x3fe29aca3c653594,0x3fe0da214c8bc6a4,1
|
|
1059
|
+
np.float64,0x3fbe1f09a03c3e13,0x3fbdfbbefef0155b,1
|
|
1060
|
+
np.float64,0x816ee4ad02ddd,0x816ee4ad02ddd,1
|
|
1061
|
+
np.float64,0xffddd1b31d3ba366,0xbff921fb54442d18,1
|
|
1062
|
+
np.float64,0x3fe2e01e0625c03c,0x3fe10dc0bd6677c2,1
|
|
1063
|
+
np.float64,0x3fec6bcf1978d79e,0x3fe73d518cddeb7c,1
|
|
1064
|
+
np.float64,0x7fe01aaaf8603555,0x3ff921fb54442d18,1
|
|
1065
|
+
np.float64,0xdf300cc5be602,0xdf300cc5be602,1
|
|
1066
|
+
np.float64,0xbfe71c01a36e3804,0xbfe403af80ce47b8,1
|
|
1067
|
+
np.float64,0xffa5be00ac2b7c00,0xbff921fb54442d18,1
|
|
1068
|
+
np.float64,0xbfda9ba711b5374e,0xbfd93775e3ac6bda,1
|
|
1069
|
+
np.float64,0xbfe56d8a27eadb14,0xbfe2e1a7185e8e6d,1
|
|
1070
|
+
np.float64,0x800f1bc937be3792,0x800f1bc937be3792,1
|
|
1071
|
+
np.float64,0x800a61d93c74c3b3,0x800a61d93c74c3b3,1
|
|
1072
|
+
np.float64,0x7fe71a52fcae34a5,0x3ff921fb54442d18,1
|
|
1073
|
+
np.float64,0x7fb4aef256295de4,0x3ff921fb54442d18,1
|
|
1074
|
+
np.float64,0x3fe6c1e861ed83d1,0x3fe3c828f281a7ef,1
|
|
1075
|
+
np.float64,0x3fba128402342508,0x3fb9fb94cf141860,1
|
|
1076
|
+
np.float64,0x3fee55a7ecfcab50,0x3fe8472a9af893ee,1
|
|
1077
|
+
np.float64,0x3fe586f31b2b0de6,0x3fe2f32bce9e91bc,1
|
|
1078
|
+
np.float64,0xbfbb1d1442363a28,0xbfbb034c7729d5f2,1
|
|
1079
|
+
np.float64,0xc78b4d3f8f16a,0xc78b4d3f8f16a,1
|
|
1080
|
+
np.float64,0x7fdbc277d4b784ef,0x3ff921fb54442d18,1
|
|
1081
|
+
np.float64,0xbfa728ca2c2e5190,0xbfa724c04e73ccbd,1
|
|
1082
|
+
np.float64,0x7fefc7b2143f8f63,0x3ff921fb54442d18,1
|
|
1083
|
+
np.float64,0x3fd153a3dda2a748,0x3fd0ebccd33a4dca,1
|
|
1084
|
+
np.float64,0xbfe18a6eace314de,0xbfe00ba32ec89d30,1
|
|
1085
|
+
np.float64,0x7feef518537dea30,0x3ff921fb54442d18,1
|
|
1086
|
+
np.float64,0x8005f007cd4be010,0x8005f007cd4be010,1
|
|
1087
|
+
np.float64,0x7fd890b840b12170,0x3ff921fb54442d18,1
|
|
1088
|
+
np.float64,0x7feed0582ebda0af,0x3ff921fb54442d18,1
|
|
1089
|
+
np.float64,0x1013f53220280,0x1013f53220280,1
|
|
1090
|
+
np.float64,0xbfe77273986ee4e7,0xbfe43c375a8bf6de,1
|
|
1091
|
+
np.float64,0x7fe3ab8918675711,0x3ff921fb54442d18,1
|
|
1092
|
+
np.float64,0xbfc6ad515b2d5aa4,0xbfc671b2f7f86624,1
|
|
1093
|
+
np.float64,0x7fcd86231d3b0c45,0x3ff921fb54442d18,1
|
|
1094
|
+
np.float64,0xffe2523299a4a464,0xbff921fb54442d18,1
|
|
1095
|
+
np.float64,0x7fcadc5a1b35b8b3,0x3ff921fb54442d18,1
|
|
1096
|
+
np.float64,0x3fe5e020c4ebc042,0x3fe330418eec75bd,1
|
|
1097
|
+
np.float64,0x7fe332a9dc266553,0x3ff921fb54442d18,1
|
|
1098
|
+
np.float64,0xfa11dc21f425,0xfa11dc21f425,1
|
|
1099
|
+
np.float64,0xbec800177d900,0xbec800177d900,1
|
|
1100
|
+
np.float64,0x3fcadd057835ba0b,0x3fca7aa42face8bc,1
|
|
1101
|
+
np.float64,0xbfe6b9a206ad7344,0xbfe3c2a9719803de,1
|
|
1102
|
+
np.float64,0x3fbb4250b63684a0,0x3fbb281e9cefc519,1
|
|
1103
|
+
np.float64,0x7fef8787517f0f0e,0x3ff921fb54442d18,1
|
|
1104
|
+
np.float64,0x8001315c2d6262b9,0x8001315c2d6262b9,1
|
|
1105
|
+
np.float64,0xbfd94e3cf2b29c7a,0xbfd819257d36f56c,1
|
|
1106
|
+
np.float64,0xf1f325abe3e65,0xf1f325abe3e65,1
|
|
1107
|
+
np.float64,0x7fd6c07079ad80e0,0x3ff921fb54442d18,1
|
|
1108
|
+
np.float64,0x7fe328b075a65160,0x3ff921fb54442d18,1
|
|
1109
|
+
np.float64,0x7fe7998f812f331e,0x3ff921fb54442d18,1
|
|
1110
|
+
np.float64,0xffe026bb65604d76,0xbff921fb54442d18,1
|
|
1111
|
+
np.float64,0xffd6c06de8ad80dc,0xbff921fb54442d18,1
|
|
1112
|
+
np.float64,0x3fcd5a37bf3ab46f,0x3fccda82935d98ce,1
|
|
1113
|
+
np.float64,0xffc3e5a45227cb48,0xbff921fb54442d18,1
|
|
1114
|
+
np.float64,0x3febf7dd8177efbc,0x3fe6fc0bb999883e,1
|
|
1115
|
+
np.float64,0x7fd7047ea92e08fc,0x3ff921fb54442d18,1
|
|
1116
|
+
np.float64,0x35b3fc406b680,0x35b3fc406b680,1
|
|
1117
|
+
np.float64,0x7fd52e97632a5d2e,0x3ff921fb54442d18,1
|
|
1118
|
+
np.float64,0x3fd464d401a8c9a8,0x3fd3be2967fc97c3,1
|
|
1119
|
+
np.float64,0x800e815b2ebd02b6,0x800e815b2ebd02b6,1
|
|
1120
|
+
np.float64,0x3fca8428af350850,0x3fca257b466b8970,1
|
|
1121
|
+
np.float64,0x8007b7526f6f6ea6,0x8007b7526f6f6ea6,1
|
|
1122
|
+
np.float64,0x82f60a8f05ec2,0x82f60a8f05ec2,1
|
|
1123
|
+
np.float64,0x3fb71a5d0a2e34c0,0x3fb70a629ef8e2a2,1
|
|
1124
|
+
np.float64,0x7fc8570c7d30ae18,0x3ff921fb54442d18,1
|
|
1125
|
+
np.float64,0x7fe5528e77eaa51c,0x3ff921fb54442d18,1
|
|
1126
|
+
np.float64,0xffc20dbbf1241b78,0xbff921fb54442d18,1
|
|
1127
|
+
np.float64,0xeb13368fd6267,0xeb13368fd6267,1
|
|
1128
|
+
np.float64,0x7fe7d529056faa51,0x3ff921fb54442d18,1
|
|
1129
|
+
np.float64,0x3fecd02eabf9a05d,0x3fe77516f0ba1ac4,1
|
|
1130
|
+
np.float64,0x800fcba6a09f974d,0x800fcba6a09f974d,1
|
|
1131
|
+
np.float64,0x7fe7e8e015afd1bf,0x3ff921fb54442d18,1
|
|
1132
|
+
np.float64,0xbfd271a382a4e348,0xbfd1f513a191c595,1
|
|
1133
|
+
np.float64,0x9f1014013e21,0x9f1014013e21,1
|
|
1134
|
+
np.float64,0x3fc05da47f20bb49,0x3fc04708a13a3a47,1
|
|
1135
|
+
np.float64,0x3fe0f427dda1e850,0x3fdf2e60ba8678b9,1
|
|
1136
|
+
np.float64,0xbfecb29fa539653f,0xbfe764bc791c45dd,1
|
|
1137
|
+
np.float64,0x45881ec68b104,0x45881ec68b104,1
|
|
1138
|
+
np.float64,0x8000000000000001,0x8000000000000001,1
|
|
1139
|
+
np.float64,0x3fe9c67ee1338cfe,0x3fe5b2c7b3df6ce8,1
|
|
1140
|
+
np.float64,0x7fedb8fef6bb71fd,0x3ff921fb54442d18,1
|
|
1141
|
+
np.float64,0x3fe54f6aaaea9ed6,0x3fe2ccd1df2abaa9,1
|
|
1142
|
+
np.float64,0x7feff58a1bbfeb13,0x3ff921fb54442d18,1
|
|
1143
|
+
np.float64,0x7fe3b62827276c4f,0x3ff921fb54442d18,1
|
|
1144
|
+
np.float64,0x3fe5feb682ebfd6d,0x3fe345105bc6d980,1
|
|
1145
|
+
np.float64,0x3fe49f38d9693e72,0x3fe2518b2824757f,1
|
|
1146
|
+
np.float64,0x8006bfd27c6d7fa6,0x8006bfd27c6d7fa6,1
|
|
1147
|
+
np.float64,0x3fc13409e2226814,0x3fc119ce0c01a5a2,1
|
|
1148
|
+
np.float64,0x95f8c7212bf19,0x95f8c7212bf19,1
|
|
1149
|
+
np.float64,0x3fd9f0fa6133e1f5,0x3fd8a567515edecf,1
|
|
1150
|
+
np.float64,0x3fef95cbe5ff2b98,0x3fe8ec88c768ba0b,1
|
|
1151
|
+
np.float64,0x3fbed28bba3da510,0x3fbeacbf136e51c2,1
|
|
1152
|
+
np.float64,0xbfd3987aeca730f6,0xbfd303fca58e3e60,1
|
|
1153
|
+
np.float64,0xbfed0f90cbfa1f22,0xbfe797f59249410d,1
|
|
1154
|
+
np.float64,0xffe55d8cbf2abb19,0xbff921fb54442d18,1
|
|
1155
|
+
np.float64,0x3feb4d9fc6769b40,0x3fe69a88131a1f1f,1
|
|
1156
|
+
np.float64,0x80085569acd0aad4,0x80085569acd0aad4,1
|
|
1157
|
+
np.float64,0x20557a6e40ab0,0x20557a6e40ab0,1
|
|
1158
|
+
np.float64,0x3fead2fd5df5a5fb,0x3fe653091f33b27f,1
|
|
1159
|
+
np.float64,0x3fe7b9983eaf7330,0x3fe46a50c4b5235e,1
|
|
1160
|
+
np.float64,0xffdad237ffb5a470,0xbff921fb54442d18,1
|
|
1161
|
+
np.float64,0xbfe5cc39a4eb9874,0xbfe322ad3a903f93,1
|
|
1162
|
+
np.float64,0x800ad6eecb35adde,0x800ad6eecb35adde,1
|
|
1163
|
+
np.float64,0xffec620f6438c41e,0xbff921fb54442d18,1
|
|
1164
|
+
np.float64,0xbfe5ef29122bde52,0xbfe33a7dfcc255e2,1
|
|
1165
|
+
np.float64,0x3fd451e7d0a8a3d0,0x3fd3acfa4939af10,1
|
|
1166
|
+
np.float64,0x8003ea93c127d528,0x8003ea93c127d528,1
|
|
1167
|
+
np.float64,0x800b48d37c9691a7,0x800b48d37c9691a7,1
|
|
1168
|
+
np.float64,0x3fe7e202acafc405,0x3fe484558246069b,1
|
|
1169
|
+
np.float64,0x80070c9b686e1938,0x80070c9b686e1938,1
|
|
1170
|
+
np.float64,0xbfda90bbc6352178,0xbfd92e25fcd12288,1
|
|
1171
|
+
np.float64,0x800e1ffebb1c3ffe,0x800e1ffebb1c3ffe,1
|
|
1172
|
+
np.float64,0x3ff0000000000000,0x3fe921fb54442d18,1
|
|
1173
|
+
np.float64,0xffd8cfdd46319fba,0xbff921fb54442d18,1
|
|
1174
|
+
np.float64,0x7fd8cd4182319a82,0x3ff921fb54442d18,1
|
|
1175
|
+
np.float64,0x3fed8bb778bb176f,0x3fe7db7c77c4c694,1
|
|
1176
|
+
np.float64,0x3fc74a70302e94e0,0x3fc709e95d6defec,1
|
|
1177
|
+
np.float64,0x3fe87269d070e4d4,0x3fe4e04bcc4a2137,1
|
|
1178
|
+
np.float64,0x7fb48223f6290447,0x3ff921fb54442d18,1
|
|
1179
|
+
np.float64,0xffe8ec444b71d888,0xbff921fb54442d18,1
|
|
1180
|
+
np.float64,0x7fde17d280bc2fa4,0x3ff921fb54442d18,1
|
|
1181
|
+
np.float64,0x3fd1cbde01a397bc,0x3fd15b9bb7b3147b,1
|
|
1182
|
+
np.float64,0x800883a64451074d,0x800883a64451074d,1
|
|
1183
|
+
np.float64,0x7fe3160a3f262c13,0x3ff921fb54442d18,1
|
|
1184
|
+
np.float64,0xbfe051d4d9a0a3aa,0xbfde2ecf14dc75fb,1
|
|
1185
|
+
np.float64,0xbfd89de689b13bce,0xbfd780176d1a28a3,1
|
|
1186
|
+
np.float64,0x3fecde2bf779bc58,0x3fe77ccf10bdd8e2,1
|
|
1187
|
+
np.float64,0xffe75774dc6eaee9,0xbff921fb54442d18,1
|
|
1188
|
+
np.float64,0x7fe834414d706882,0x3ff921fb54442d18,1
|
|
1189
|
+
np.float64,0x1,0x1,1
|
|
1190
|
+
np.float64,0xbfea5e4e4a74bc9c,0xbfe60e0601711835,1
|
|
1191
|
+
np.float64,0xffec248d4cb8491a,0xbff921fb54442d18,1
|
|
1192
|
+
np.float64,0xffd9942c2c332858,0xbff921fb54442d18,1
|
|
1193
|
+
np.float64,0xa9db36a553b67,0xa9db36a553b67,1
|
|
1194
|
+
np.float64,0x7fec630718b8c60d,0x3ff921fb54442d18,1
|
|
1195
|
+
np.float64,0xbfd062188f20c432,0xbfd009ecd652be89,1
|
|
1196
|
+
np.float64,0x8001b84e3023709d,0x8001b84e3023709d,1
|
|
1197
|
+
np.float64,0xbfe9e26d7cb3c4db,0xbfe5c3b157ecf668,1
|
|
1198
|
+
np.float64,0xbfef66ddf33ecdbc,0xbfe8d4b1f6410a24,1
|
|
1199
|
+
np.float64,0x3fd8d7109431ae21,0x3fd7b1d4860719a2,1
|
|
1200
|
+
np.float64,0xffee0f53107c1ea5,0xbff921fb54442d18,1
|
|
1201
|
+
np.float64,0x80000b4fd60016a0,0x80000b4fd60016a0,1
|
|
1202
|
+
np.float64,0xbfd99ff6e5333fee,0xbfd85fb3cbdaa049,1
|
|
1203
|
+
np.float64,0xbfe9cfd268339fa5,0xbfe5b86ef021a1b1,1
|
|
1204
|
+
np.float64,0xe32eace1c65d6,0xe32eace1c65d6,1
|
|
1205
|
+
np.float64,0xffc81f6627303ecc,0xbff921fb54442d18,1
|
|
1206
|
+
np.float64,0x7fe98dadde331b5b,0x3ff921fb54442d18,1
|
|
1207
|
+
np.float64,0xbfbcebd11e39d7a0,0xbfbccc8ec47883c7,1
|
|
1208
|
+
np.float64,0x7fe164880f22c90f,0x3ff921fb54442d18,1
|
|
1209
|
+
np.float64,0x800467c0cae8cf82,0x800467c0cae8cf82,1
|
|
1210
|
+
np.float64,0x800071e4b140e3ca,0x800071e4b140e3ca,1
|
|
1211
|
+
np.float64,0xbfc87a7eae30f4fc,0xbfc82fbc55bb0f24,1
|
|
1212
|
+
np.float64,0xffb2e0e23225c1c8,0xbff921fb54442d18,1
|
|
1213
|
+
np.float64,0x20ef338041df,0x20ef338041df,1
|
|
1214
|
+
np.float64,0x7fe6de71ca6dbce3,0x3ff921fb54442d18,1
|
|
1215
|
+
np.float64,0x5d1fa026ba3f5,0x5d1fa026ba3f5,1
|
|
1216
|
+
np.float64,0xffd112a9ce222554,0xbff921fb54442d18,1
|
|
1217
|
+
np.float64,0x3fb351f66626a3ed,0x3fb3489ab578c452,1
|
|
1218
|
+
np.float64,0x7fef7b2bd3bef657,0x3ff921fb54442d18,1
|
|
1219
|
+
np.float64,0xffe144f5d4e289eb,0xbff921fb54442d18,1
|
|
1220
|
+
np.float64,0xffd63a6750ac74ce,0xbff921fb54442d18,1
|
|
1221
|
+
np.float64,0x7fd2d8bb25a5b175,0x3ff921fb54442d18,1
|
|
1222
|
+
np.float64,0x3fec5920a078b242,0x3fe732dcffcf6521,1
|
|
1223
|
+
np.float64,0x80009a8b7f813518,0x80009a8b7f813518,1
|
|
1224
|
+
np.float64,0x3fdea220893d4441,0x3fdc921edf6bf3d8,1
|
|
1225
|
+
np.float64,0x8006cee2208d9dc5,0x8006cee2208d9dc5,1
|
|
1226
|
+
np.float64,0xdd0b0081ba17,0xdd0b0081ba17,1
|
|
1227
|
+
np.float64,0x7ff4000000000000,0x7ffc000000000000,1
|
|
1228
|
+
np.float64,0xbfdac33955358672,0xbfd9592bce7daf1f,1
|
|
1229
|
+
np.float64,0x7fe8301d7170603a,0x3ff921fb54442d18,1
|
|
1230
|
+
np.float64,0xbfc1d34d8523a69c,0xbfc1b62449af9684,1
|
|
1231
|
+
np.float64,0x800c62239458c447,0x800c62239458c447,1
|
|
1232
|
+
np.float64,0xffd398c009a73180,0xbff921fb54442d18,1
|
|
1233
|
+
np.float64,0xbfe0c6d9ee218db4,0xbfdee777557f4401,1
|
|
1234
|
+
np.float64,0x3feccdd373799ba7,0x3fe773c9c2263f89,1
|
|
1235
|
+
np.float64,0xbfd21898bda43132,0xbfd1a2be8545fcc5,1
|
|
1236
|
+
np.float64,0x3fd77019b62ee033,0x3fd67793cabdf267,1
|
|
1237
|
+
np.float64,0x7fa609cad42c1395,0x3ff921fb54442d18,1
|
|
1238
|
+
np.float64,0x7fb4eaea5a29d5d4,0x3ff921fb54442d18,1
|
|
1239
|
+
np.float64,0x3fc570dc9a2ae1b9,0x3fc53e5f6218a799,1
|
|
1240
|
+
np.float64,0x800344ae8466895e,0x800344ae8466895e,1
|
|
1241
|
+
np.float64,0xbfc7c985252f930c,0xbfc784d60fa27bac,1
|
|
1242
|
+
np.float64,0xffaa2929fc345250,0xbff921fb54442d18,1
|
|
1243
|
+
np.float64,0xffe63e5ee9ac7cbe,0xbff921fb54442d18,1
|
|
1244
|
+
np.float64,0x73f0280ce7e06,0x73f0280ce7e06,1
|
|
1245
|
+
np.float64,0xffc525f8822a4bf0,0xbff921fb54442d18,1
|
|
1246
|
+
np.float64,0x7fd744d00aae899f,0x3ff921fb54442d18,1
|
|
1247
|
+
np.float64,0xbfe0fe590761fcb2,0xbfdf3e493e8b1f32,1
|
|
1248
|
+
np.float64,0xfae04ae7f5c0a,0xfae04ae7f5c0a,1
|
|
1249
|
+
np.float64,0xef821939df043,0xef821939df043,1
|
|
1250
|
+
np.float64,0x7fef6135843ec26a,0x3ff921fb54442d18,1
|
|
1251
|
+
np.float64,0xbfebf34dcbf7e69c,0xbfe6f97588a8f911,1
|
|
1252
|
+
np.float64,0xbfeec0b498fd8169,0xbfe87f2eceeead12,1
|
|
1253
|
+
np.float64,0x7fb67161b42ce2c2,0x3ff921fb54442d18,1
|
|
1254
|
+
np.float64,0x3fdcfd998639fb33,0x3fdb38934927c096,1
|
|
1255
|
+
np.float64,0xffda5960bc34b2c2,0xbff921fb54442d18,1
|
|
1256
|
+
np.float64,0xbfe11f8c71223f19,0xbfdf71fe770c96ab,1
|
|
1257
|
+
np.float64,0x3fe4ac1bab695838,0x3fe25aa4517b8322,1
|
|
1258
|
+
np.float64,0x3f730458a02608b1,0x3f73044fabb5e999,1
|
|
1259
|
+
np.float64,0x3fdb14ffcdb62a00,0x3fd99ea6c241a3ed,1
|
|
1260
|
+
np.float64,0xbfc93208cd326410,0xbfc8e09d78b6d4db,1
|
|
1261
|
+
np.float64,0x19e734dc33ce8,0x19e734dc33ce8,1
|
|
1262
|
+
np.float64,0x3fe5e98428abd308,0x3fe336a6a085eb55,1
|
|
1263
|
+
np.float64,0x7fec672a1378ce53,0x3ff921fb54442d18,1
|
|
1264
|
+
np.float64,0x800f8bd8d4ff17b2,0x800f8bd8d4ff17b2,1
|
|
1265
|
+
np.float64,0xbfe5a12e4e6b425c,0xbfe30533f99d5d06,1
|
|
1266
|
+
np.float64,0x75a34cb0eb46a,0x75a34cb0eb46a,1
|
|
1267
|
+
np.float64,0x7fe1d21d16a3a439,0x3ff921fb54442d18,1
|
|
1268
|
+
np.float64,0x7ff0000000000000,0x3ff921fb54442d18,1
|
|
1269
|
+
np.float64,0xffe0f50db261ea1b,0xbff921fb54442d18,1
|
|
1270
|
+
np.float64,0xbfd9dc22feb3b846,0xbfd8937ec965a501,1
|
|
1271
|
+
np.float64,0x8009d68e48d3ad1d,0x8009d68e48d3ad1d,1
|
|
1272
|
+
np.float64,0xbfe2eba620e5d74c,0xbfe1164d7d273c60,1
|
|
1273
|
+
np.float64,0x992efa09325e0,0x992efa09325e0,1
|
|
1274
|
+
np.float64,0x3fdab640ea356c82,0x3fd94e20cab88db2,1
|
|
1275
|
+
np.float64,0x69a6f04ad34df,0x69a6f04ad34df,1
|
|
1276
|
+
np.float64,0x3fe397df25272fbe,0x3fe194bd1a3a6192,1
|
|
1277
|
+
np.float64,0xebcce9fdd799d,0xebcce9fdd799d,1
|
|
1278
|
+
np.float64,0x3fbb49490c369292,0x3fbb2f02eccc497d,1
|
|
1279
|
+
np.float64,0xffd871f980b0e3f4,0xbff921fb54442d18,1
|
|
1280
|
+
np.float64,0x800348f6966691ee,0x800348f6966691ee,1
|
|
1281
|
+
np.float64,0xbfebc270a7f784e1,0xbfe6dda8d0d80f26,1
|
|
1282
|
+
np.float64,0xffd6d559b1adaab4,0xbff921fb54442d18,1
|
|
1283
|
+
np.float64,0x3fec3635c0b86c6c,0x3fe71f420256e43e,1
|
|
1284
|
+
np.float64,0x7fbc82ad7039055a,0x3ff921fb54442d18,1
|
|
1285
|
+
np.float64,0x7f873050602e60a0,0x3ff921fb54442d18,1
|
|
1286
|
+
np.float64,0x3fca44b8c3348970,0x3fc9e8a1a1a2d96e,1
|
|
1287
|
+
np.float64,0x3fe0fc308fe1f861,0x3fdf3aeb469ea225,1
|
|
1288
|
+
np.float64,0x7fefc27de8bf84fb,0x3ff921fb54442d18,1
|
|
1289
|
+
np.float64,0x8005f3f3916be7e8,0x8005f3f3916be7e8,1
|
|
1290
|
+
np.float64,0xbfd4278c7c284f18,0xbfd38678988873b6,1
|
|
1291
|
+
np.float64,0x435eafc486bd7,0x435eafc486bd7,1
|
|
1292
|
+
np.float64,0xbfd01f5199203ea4,0xbfcf96631f2108a3,1
|
|
1293
|
+
np.float64,0xffd5ee9185abdd24,0xbff921fb54442d18,1
|
|
1294
|
+
np.float64,0xffedb363257b66c5,0xbff921fb54442d18,1
|
|
1295
|
+
np.float64,0x800d68e6e11ad1ce,0x800d68e6e11ad1ce,1
|
|
1296
|
+
np.float64,0xbfcf687f8e3ed100,0xbfceccb771b0d39a,1
|
|
1297
|
+
np.float64,0x7feb3b9ef2f6773d,0x3ff921fb54442d18,1
|
|
1298
|
+
np.float64,0x3fe15ec5ca62bd8c,0x3fdfd3fab9d96f81,1
|
|
1299
|
+
np.float64,0x10000000000000,0x10000000000000,1
|
|
1300
|
+
np.float64,0xd2386f81a470e,0xd2386f81a470e,1
|
|
1301
|
+
np.float64,0xb9feed4573fde,0xb9feed4573fde,1
|
|
1302
|
+
np.float64,0x3fe7ed25c9efda4c,0x3fe48b7b72db4014,1
|
|
1303
|
+
np.float64,0xbfe01478726028f1,0xbfddcd1f5a2efc59,1
|
|
1304
|
+
np.float64,0x9946d02f328da,0x9946d02f328da,1
|
|
1305
|
+
np.float64,0xbfe3bb67f06776d0,0xbfe1ae88aa81c5a6,1
|
|
1306
|
+
np.float64,0xbfd3fd8a4c27fb14,0xbfd3603982e3b78d,1
|
|
1307
|
+
np.float64,0xffd5c3ab912b8758,0xbff921fb54442d18,1
|
|
1308
|
+
np.float64,0xffd5f502b12bea06,0xbff921fb54442d18,1
|
|
1309
|
+
np.float64,0xbfc64981ec2c9304,0xbfc610e0382b1fa6,1
|
|
1310
|
+
np.float64,0xffec42e3413885c6,0xbff921fb54442d18,1
|
|
1311
|
+
np.float64,0x80084eb4ed109d6a,0x80084eb4ed109d6a,1
|
|
1312
|
+
np.float64,0xbfd17cac9fa2f95a,0xbfd112020588a4b3,1
|
|
1313
|
+
np.float64,0xbfd06c1359a0d826,0xbfd0134a28aa9a66,1
|
|
1314
|
+
np.float64,0x7fdc3d7c03b87af7,0x3ff921fb54442d18,1
|
|
1315
|
+
np.float64,0x7bdf5aaaf7bec,0x7bdf5aaaf7bec,1
|
|
1316
|
+
np.float64,0xbfee3cd966fc79b3,0xbfe83a14bc07ac3b,1
|
|
1317
|
+
np.float64,0x7fec910da3f9221a,0x3ff921fb54442d18,1
|
|
1318
|
+
np.float64,0xffb4ea667029d4d0,0xbff921fb54442d18,1
|
|
1319
|
+
np.float64,0x800103d7cce207b0,0x800103d7cce207b0,1
|
|
1320
|
+
np.float64,0x7fbb229a6c364534,0x3ff921fb54442d18,1
|
|
1321
|
+
np.float64,0x0,0x0,1
|
|
1322
|
+
np.float64,0xffd8fccd0331f99a,0xbff921fb54442d18,1
|
|
1323
|
+
np.float64,0xbfd0784ae1a0f096,0xbfd01ebff62e39ad,1
|
|
1324
|
+
np.float64,0xbfed2ec9b3ba5d93,0xbfe7a9099410bc76,1
|
|
1325
|
+
np.float64,0x800690b8d16d2172,0x800690b8d16d2172,1
|
|
1326
|
+
np.float64,0x7fc061b26520c364,0x3ff921fb54442d18,1
|
|
1327
|
+
np.float64,0x8007ec47054fd88f,0x8007ec47054fd88f,1
|
|
1328
|
+
np.float64,0x775546b6eeaa9,0x775546b6eeaa9,1
|
|
1329
|
+
np.float64,0x8005e00fb56bc020,0x8005e00fb56bc020,1
|
|
1330
|
+
np.float64,0xbfe510f8d0ea21f2,0xbfe2a16862b5a37f,1
|
|
1331
|
+
np.float64,0xffd87a6bf3b0f4d8,0xbff921fb54442d18,1
|
|
1332
|
+
np.float64,0x800906e3d0520dc8,0x800906e3d0520dc8,1
|
|
1333
|
+
np.float64,0x2296f000452f,0x2296f000452f,1
|
|
1334
|
+
np.float64,0xbfe3189fa2e63140,0xbfe1378c0e005be4,1
|
|
1335
|
+
np.float64,0xb4d2447f69a49,0xb4d2447f69a49,1
|
|
1336
|
+
np.float64,0xffd056a24a20ad44,0xbff921fb54442d18,1
|
|
1337
|
+
np.float64,0xbfe3b23fe4e76480,0xbfe1a7e5840fcbeb,1
|
|
1338
|
+
np.float64,0x80018ee270831dc6,0x80018ee270831dc6,1
|
|
1339
|
+
np.float64,0x800df89f245bf13e,0x800df89f245bf13e,1
|
|
1340
|
+
np.float64,0x3fee1409d7bc2814,0x3fe824779d133232,1
|
|
1341
|
+
np.float64,0xbfef8d81667f1b03,0xbfe8e85523620368,1
|
|
1342
|
+
np.float64,0xffd8a6519b314ca4,0xbff921fb54442d18,1
|
|
1343
|
+
np.float64,0x7fc7bc86f32f790d,0x3ff921fb54442d18,1
|
|
1344
|
+
np.float64,0xffea6159e674c2b3,0xbff921fb54442d18,1
|
|
1345
|
+
np.float64,0x3fe153c3fba2a788,0x3fdfc2f74769d300,1
|
|
1346
|
+
np.float64,0xffc4261ef3284c3c,0xbff921fb54442d18,1
|
|
1347
|
+
np.float64,0x7fe8a8961ff1512b,0x3ff921fb54442d18,1
|
|
1348
|
+
np.float64,0xbfe3fb1fd167f640,0xbfe1dc89dcb7ecdf,1
|
|
1349
|
+
np.float64,0x3fd88577c2b10af0,0x3fd76acc09660704,1
|
|
1350
|
+
np.float64,0x3fe128ec27e251d8,0x3fdf808fc7ebcd8f,1
|
|
1351
|
+
np.float64,0xbfed6ca7c4fad950,0xbfe7caafe9a3e213,1
|
|
1352
|
+
np.float64,0xbf9a3912b8347220,0xbf9a379b3349352e,1
|
|
1353
|
+
np.float64,0xbfd724d7bcae49b0,0xbfd6351efa2a5fc5,1
|
|
1354
|
+
np.float64,0xbfed59700a7ab2e0,0xbfe7c043014c694c,1
|
|
1355
|
+
np.float64,0x8002ad435bc55a87,0x8002ad435bc55a87,1
|
|
1356
|
+
np.float64,0xffe46ed345a8dda6,0xbff921fb54442d18,1
|
|
1357
|
+
np.float64,0x7fd2f1d1d825e3a3,0x3ff921fb54442d18,1
|
|
1358
|
+
np.float64,0xbfea0265e23404cc,0xbfe5d6fb3fd30464,1
|
|
1359
|
+
np.float64,0xbfd17e049122fc0a,0xbfd113421078bbae,1
|
|
1360
|
+
np.float64,0xffea03b986b40772,0xbff921fb54442d18,1
|
|
1361
|
+
np.float64,0x800b55331a16aa67,0x800b55331a16aa67,1
|
|
1362
|
+
np.float64,0xbfc6fcafbf2df960,0xbfc6be9ecd0ebc1f,1
|
|
1363
|
+
np.float64,0xd6a36017ad46c,0xd6a36017ad46c,1
|
|
1364
|
+
np.float64,0xbfe9ba86dfb3750e,0xbfe5ab840cb0ef86,1
|
|
1365
|
+
np.float64,0x75c4a108eb895,0x75c4a108eb895,1
|
|
1366
|
+
np.float64,0x8008d6bc8051ad79,0x8008d6bc8051ad79,1
|
|
1367
|
+
np.float64,0xbfd3dc5984a7b8b4,0xbfd341f78e0528ec,1
|
|
1368
|
+
np.float64,0xffe1cbb01aa39760,0xbff921fb54442d18,1
|
|
1369
|
+
np.float64,0x3fc7e292f52fc526,0x3fc79d0ce9365767,1
|
|
1370
|
+
np.float64,0xbfcbeae2bd37d5c4,0xbfcb7cb034f82467,1
|
|
1371
|
+
np.float64,0x8000f0c62e21e18d,0x8000f0c62e21e18d,1
|
|
1372
|
+
np.float64,0xbfe23d8bc6247b18,0xbfe09418ee35c3c7,1
|
|
1373
|
+
np.float64,0x717394bae2e73,0x717394bae2e73,1
|
|
1374
|
+
np.float64,0xffa2ef1cc425de40,0xbff921fb54442d18,1
|
|
1375
|
+
np.float64,0x3fd938c229b27184,0x3fd806900735c99d,1
|
|
1376
|
+
np.float64,0x800bf3ec8a77e7d9,0x800bf3ec8a77e7d9,1
|
|
1377
|
+
np.float64,0xffeef41dd57de83b,0xbff921fb54442d18,1
|
|
1378
|
+
np.float64,0x8008df97e5b1bf30,0x8008df97e5b1bf30,1
|
|
1379
|
+
np.float64,0xffe9ab9d0db35739,0xbff921fb54442d18,1
|
|
1380
|
+
np.float64,0x99ff391333fe7,0x99ff391333fe7,1
|
|
1381
|
+
np.float64,0x3fb864b4a630c969,0x3fb851e883ea2cf9,1
|
|
1382
|
+
np.float64,0x22c1230a45825,0x22c1230a45825,1
|
|
1383
|
+
np.float64,0xff2336fbfe467,0xff2336fbfe467,1
|
|
1384
|
+
np.float64,0xbfd488f4cea911ea,0xbfd3def0490f5414,1
|
|
1385
|
+
np.float64,0x3fa379c78426f38f,0x3fa377607370800b,1
|
|
1386
|
+
np.float64,0xbfb0873302210e68,0xbfb08155b78dfd53,1
|
|
1387
|
+
np.float64,0xbfdf9ff7c2bf3ff0,0xbfdd5f658e357ad2,1
|
|
1388
|
+
np.float64,0x800978719192f0e4,0x800978719192f0e4,1
|
|
1389
|
+
np.float64,0xbfba8759ea350eb0,0xbfba6f325013b9e5,1
|
|
1390
|
+
np.float64,0xbfdd3e6b06ba7cd6,0xbfdb6e472b6091b0,1
|
|
1391
|
+
np.float64,0x7fe0c334a7a18668,0x3ff921fb54442d18,1
|
|
1392
|
+
np.float64,0xbfeb971feb772e40,0xbfe6c4e0f61404d1,1
|
|
1393
|
+
np.float64,0x3fe2a50968e54a13,0x3fe0e1c8b8d96e85,1
|
|
1394
|
+
np.float64,0x800fa9c5515f538b,0x800fa9c5515f538b,1
|
|
1395
|
+
np.float64,0x800f8532fbbf0a66,0x800f8532fbbf0a66,1
|
|
1396
|
+
np.float64,0x167d6f1e2cfaf,0x167d6f1e2cfaf,1
|
|
1397
|
+
np.float64,0xffee88e769fd11ce,0xbff921fb54442d18,1
|
|
1398
|
+
np.float64,0xbfeecc8529fd990a,0xbfe885520cdad8ea,1
|
|
1399
|
+
np.float64,0xffefffffffffffff,0xbff921fb54442d18,1
|
|
1400
|
+
np.float64,0xbfef6a566afed4ad,0xbfe8d6767b4c4235,1
|
|
1401
|
+
np.float64,0xffec12415af82482,0xbff921fb54442d18,1
|
|
1402
|
+
np.float64,0x3678a20a6cf15,0x3678a20a6cf15,1
|
|
1403
|
+
np.float64,0xffe468d54ee8d1aa,0xbff921fb54442d18,1
|
|
1404
|
+
np.float64,0x800ad6006795ac01,0x800ad6006795ac01,1
|
|
1405
|
+
np.float64,0x8001d5b61063ab6d,0x8001d5b61063ab6d,1
|
|
1406
|
+
np.float64,0x800dfcd1863bf9a3,0x800dfcd1863bf9a3,1
|
|
1407
|
+
np.float64,0xc9fbff6f93f80,0xc9fbff6f93f80,1
|
|
1408
|
+
np.float64,0xffe55c20f9eab842,0xbff921fb54442d18,1
|
|
1409
|
+
np.float64,0xbfcb596b6536b2d8,0xbfcaf1b339c5c615,1
|
|
1410
|
+
np.float64,0xbfe092689ea124d1,0xbfde94fa58946e51,1
|
|
1411
|
+
np.float64,0x3fe9ec733af3d8e6,0x3fe5c9bf5dee2623,1
|
|
1412
|
+
np.float64,0x3fe30f3d83261e7b,0x3fe1309fd6620e03,1
|
|
1413
|
+
np.float64,0xffd31d7f84263b00,0xbff921fb54442d18,1
|
|
1414
|
+
np.float64,0xbfe88d2d3e711a5a,0xbfe4f12b5a136178,1
|
|
1415
|
+
np.float64,0xffc81e4ce1303c98,0xbff921fb54442d18,1
|
|
1416
|
+
np.float64,0xffe5b96ebfab72dd,0xbff921fb54442d18,1
|
|
1417
|
+
np.float64,0x512f0502a25e1,0x512f0502a25e1,1
|
|
1418
|
+
np.float64,0x7fa3a376982746ec,0x3ff921fb54442d18,1
|
|
1419
|
+
np.float64,0x80005b5f2f60b6bf,0x80005b5f2f60b6bf,1
|
|
1420
|
+
np.float64,0xc337cc69866fa,0xc337cc69866fa,1
|
|
1421
|
+
np.float64,0x3fe7719c4caee339,0x3fe43bab42b19e64,1
|
|
1422
|
+
np.float64,0x7fde7ec1d93cfd83,0x3ff921fb54442d18,1
|
|
1423
|
+
np.float64,0x3fd2f38f3825e71e,0x3fd26cc7b1dd0acb,1
|
|
1424
|
+
np.float64,0x7fce298b993c5316,0x3ff921fb54442d18,1
|
|
1425
|
+
np.float64,0x56ae3b2cad5c8,0x56ae3b2cad5c8,1
|
|
1426
|
+
np.float64,0x3fe9299f2bf2533e,0x3fe552bddd999e72,1
|
|
1427
|
+
np.float64,0x7feff3a4823fe748,0x3ff921fb54442d18,1
|
|
1428
|
+
np.float64,0xbfd05c670aa0b8ce,0xbfd00494d78e9e97,1
|
|
1429
|
+
np.float64,0xffe745323eae8a64,0xbff921fb54442d18,1
|