zemu 0.1.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/lib/zemu/config.rb +312 -0
- data/lib/zemu/instance.rb +179 -0
- data/lib/zemu.rb +172 -0
- data/src/debug.c +118 -0
- data/src/debug.h +30 -0
- data/src/external/Z/API/Z/ABIs/generic/allocator.h +36 -0
- data/src/external/Z/API/Z/ABIs/generic/cipher.h +47 -0
- data/src/external/Z/API/Z/ABIs/generic/data codec.h +33 -0
- data/src/external/Z/API/Z/ABIs/generic/emulation.h +103 -0
- data/src/external/Z/API/Z/ABIs/generic/hash function.h +33 -0
- data/src/external/Z/API/Z/ABIs/generic/module.h +33 -0
- data/src/external/Z/API/Z/ABIs/generic/wave codec.h +40 -0
- data/src/external/Z/API/Z/classes/base/InitializerList.hpp +34 -0
- data/src/external/Z/API/Z/classes/base/OpaqueFunctionPointer.hpp +26 -0
- data/src/external/Z/API/Z/classes/base/OpaqueMemberFunctionPointer.hpp +26 -0
- data/src/external/Z/API/Z/classes/base/Pair.hpp +46 -0
- data/src/external/Z/API/Z/classes/base/Range.hpp +111 -0
- data/src/external/Z/API/Z/classes/base/SizedString.hpp +66 -0
- data/src/external/Z/API/Z/classes/base/Status.hpp +89 -0
- data/src/external/Z/API/Z/classes/base/Symbol.hpp +39 -0
- data/src/external/Z/API/Z/classes/base/Tuple.hpp +111 -0
- data/src/external/Z/API/Z/classes/base/Value2D.hpp +389 -0
- data/src/external/Z/API/Z/classes/base/Value3D.hpp +368 -0
- data/src/external/Z/API/Z/classes/buffering/RingBuffer.hpp +93 -0
- data/src/external/Z/API/Z/classes/buffering/TripleBuffer.hpp +68 -0
- data/src/external/Z/API/Z/classes/functional/Functor.hpp +265 -0
- data/src/external/Z/API/Z/classes/functional/MemberFunction.hpp +98 -0
- data/src/external/Z/API/Z/classes/functional/ObjectMemberFunction.hpp +172 -0
- data/src/external/Z/API/Z/classes/functional/ObjectSelector.hpp +219 -0
- data/src/external/Z/API/Z/classes/functional/Selector.hpp +146 -0
- data/src/external/Z/API/Z/classes/mathematics/geometry/euclidean/AABB.hpp +81 -0
- data/src/external/Z/API/Z/classes/mathematics/geometry/euclidean/AABR.hpp +685 -0
- data/src/external/Z/API/Z/classes/mathematics/geometry/euclidean/Box.hpp +219 -0
- data/src/external/Z/API/Z/classes/mathematics/geometry/euclidean/Circle.hpp +80 -0
- data/src/external/Z/API/Z/classes/mathematics/geometry/euclidean/Line2D.hpp +93 -0
- data/src/external/Z/API/Z/classes/mathematics/geometry/euclidean/Line3D.hpp +80 -0
- data/src/external/Z/API/Z/classes/mathematics/geometry/euclidean/Rectangle.hpp +675 -0
- data/src/external/Z/API/Z/classes/mathematics/geometry/euclidean/Sphere.hpp +0 -0
- data/src/external/Z/API/Z/classes/memory/Shared.hpp +90 -0
- data/src/external/Z/API/Z/constants/base.h +35 -0
- data/src/external/Z/API/Z/constants/chemical elements.h +6385 -0
- data/src/external/Z/API/Z/constants/numbers.h +963 -0
- data/src/external/Z/API/Z/constants/version.h +15 -0
- data/src/external/Z/API/Z/formats/character set/ASCII.h +158 -0
- data/src/external/Z/API/Z/formats/character set/DOS CP437.h +159 -0
- data/src/external/Z/API/Z/formats/character set/DOS CP737.h +159 -0
- data/src/external/Z/API/Z/formats/character set/DOS CP775.h +159 -0
- data/src/external/Z/API/Z/formats/character set/DOS CP850.h +159 -0
- data/src/external/Z/API/Z/formats/character set/DOS CP852.h +159 -0
- data/src/external/Z/API/Z/formats/character set/DOS CP855.h +159 -0
- data/src/external/Z/API/Z/formats/character set/DOS CP857.h +159 -0
- data/src/external/Z/API/Z/formats/character set/DOS CP858.h +159 -0
- data/src/external/Z/API/Z/formats/character set/DOS CP860.h +159 -0
- data/src/external/Z/API/Z/formats/character set/DOS CP861.h +159 -0
- data/src/external/Z/API/Z/formats/character set/DOS CP862.h +159 -0
- data/src/external/Z/API/Z/formats/character set/DOS CP863.h +159 -0
- data/src/external/Z/API/Z/formats/character set/DOS CP864.h +159 -0
- data/src/external/Z/API/Z/formats/character set/DOS CP865.h +159 -0
- data/src/external/Z/API/Z/formats/character set/DOS CP866.h +159 -0
- data/src/external/Z/API/Z/formats/character set/DOS CP869.h +159 -0
- data/src/external/Z/API/Z/formats/character set/DOS CP872.h +159 -0
- data/src/external/Z/API/Z/formats/character set/DOS CP874.h +159 -0
- data/src/external/Z/API/Z/formats/character set/Unicode.h +30119 -0
- data/src/external/Z/API/Z/formats/data model/I16LP32.h +19 -0
- data/src/external/Z/API/Z/formats/data model/ILP32.h +19 -0
- data/src/external/Z/API/Z/formats/data model/ILP64.h +19 -0
- data/src/external/Z/API/Z/formats/data model/IP16L32.h +19 -0
- data/src/external/Z/API/Z/formats/data model/LLP64.h +19 -0
- data/src/external/Z/API/Z/formats/data model/LP32.h +19 -0
- data/src/external/Z/API/Z/formats/data model/LP64.h +19 -0
- data/src/external/Z/API/Z/formats/data model/SILP64.h +19 -0
- data/src/external/Z/API/Z/formats/file system/FAT12.h +61 -0
- data/src/external/Z/API/Z/formats/floating-point/IEEE 754.h +141 -0
- data/src/external/Z/API/Z/formats/floating-point/x87.h +74 -0
- data/src/external/Z/API/Z/formats/image/ICNS.h +39 -0
- data/src/external/Z/API/Z/formats/keymap/Mac OS.h +284 -0
- data/src/external/Z/API/Z/formats/keymap/Z.h +141 -0
- data/src/external/Z/API/Z/formats/multimedia/Creative Voice.h +106 -0
- data/src/external/Z/API/Z/formats/multimedia/Microsoft Wave.h +49 -0
- data/src/external/Z/API/Z/formats/snapshot/machine/computer/ZX Spectrum/ACH.h +44 -0
- data/src/external/Z/API/Z/formats/snapshot/machine/computer/ZX Spectrum/FRZ.h +54 -0
- data/src/external/Z/API/Z/formats/snapshot/machine/computer/ZX Spectrum/PRG.h +33 -0
- data/src/external/Z/API/Z/formats/snapshot/machine/computer/ZX Spectrum/SEM.h +46 -0
- data/src/external/Z/API/Z/formats/snapshot/machine/computer/ZX Spectrum/SIT.h +34 -0
- data/src/external/Z/API/Z/formats/snapshot/machine/computer/ZX Spectrum/SNA.h +117 -0
- data/src/external/Z/API/Z/formats/snapshot/machine/computer/ZX Spectrum/SNP.h +37 -0
- data/src/external/Z/API/Z/formats/snapshot/machine/computer/ZX Spectrum/SP.h +62 -0
- data/src/external/Z/API/Z/formats/snapshot/machine/computer/ZX Spectrum/Z80.h +117 -0
- data/src/external/Z/API/Z/formats/snapshot/machine/computer/ZX Spectrum/ZX.h +56 -0
- data/src/external/Z/API/Z/formats/snapshot/machine/computer/ZX Spectrum/ZX82.h +70 -0
- data/src/external/Z/API/Z/formats/storage medium image/NES Game Pak/UNIF.h +26 -0
- data/src/external/Z/API/Z/formats/storage medium image/NES Game Pak/iNES.h +76 -0
- data/src/external/Z/API/Z/formats/storage medium image/audio/TAP.h +25 -0
- data/src/external/Z/API/Z/formats/storage medium image/audio/TZX.h +1185 -0
- data/src/external/Z/API/Z/formats/storage medium image/audio/Warajevo TAP.h +32 -0
- data/src/external/Z/API/Z/formats/storage medium image/floppy disk/FDI.h +45 -0
- data/src/external/Z/API/Z/functions/base/Z2D.h +583 -0
- data/src/external/Z/API/Z/functions/base/Z3D.h +712 -0
- data/src/external/Z/API/Z/functions/base/ZRange.h +137 -0
- data/src/external/Z/API/Z/functions/base/all.h +16 -0
- data/src/external/Z/API/Z/functions/base/casting.hpp +37 -0
- data/src/external/Z/API/Z/functions/base/character.h +38 -0
- data/src/external/Z/API/Z/functions/base/constructors.h +326 -0
- data/src/external/Z/API/Z/functions/base/structure.hpp +26 -0
- data/src/external/Z/API/Z/functions/base/type.hpp +60 -0
- data/src/external/Z/API/Z/functions/base/value.h +1901 -0
- data/src/external/Z/API/Z/functions/base/value.hpp +112 -0
- data/src/external/Z/API/Z/functions/buffering/ZRingBuffer.h +85 -0
- data/src/external/Z/API/Z/functions/buffering/ZTripleBuffer.h +65 -0
- data/src/external/Z/API/Z/functions/mathematics/geometry/euclidean/Z2DLine.h +179 -0
- data/src/external/Z/API/Z/functions/mathematics/geometry/euclidean/Z3DLine.h +168 -0
- data/src/external/Z/API/Z/functions/mathematics/geometry/euclidean/ZAABB.h +361 -0
- data/src/external/Z/API/Z/functions/mathematics/geometry/euclidean/ZAABR.h +1081 -0
- data/src/external/Z/API/Z/functions/mathematics/geometry/euclidean/ZBox.h +340 -0
- data/src/external/Z/API/Z/functions/mathematics/geometry/euclidean/ZCircle.h +142 -0
- data/src/external/Z/API/Z/functions/mathematics/geometry/euclidean/ZRectangle.h +1267 -0
- data/src/external/Z/API/Z/functions/mathematics/geometry/euclidean/ZSphere.h +156 -0
- data/src/external/Z/API/Z/functions/mathematics/geometry/euclidean/all.h +18 -0
- data/src/external/Z/API/Z/functions/mathematics/geometry/euclidean/constructors.h +620 -0
- data/src/external/Z/API/Z/functions/time/date.h +29 -0
- data/src/external/Z/API/Z/hardware/CPU/architecture/6502.h +90 -0
- data/src/external/Z/API/Z/hardware/CPU/architecture/Z80.h +245 -0
- data/src/external/Z/API/Z/hardware/CPU/architecture/i4004.h +37 -0
- data/src/external/Z/API/Z/hardware/PSG/General Instrument/AY-3-891x.h +180 -0
- data/src/external/Z/API/Z/hardware/VDC/Ricoh/RP2C0x.h +625 -0
- data/src/external/Z/API/Z/hardware/bus/AGP.h +24 -0
- data/src/external/Z/API/Z/hardware/bus/USB.h +510 -0
- data/src/external/Z/API/Z/hardware/machine/model/computer/ZX Spectrum/Inves Spectrum +.h +47 -0
- data/src/external/Z/API/Z/hardware/machine/model/computer/ZX Spectrum/Pentagon.h +13 -0
- data/src/external/Z/API/Z/hardware/machine/model/computer/ZX Spectrum/Scorpion.h +13 -0
- data/src/external/Z/API/Z/hardware/machine/model/computer/ZX Spectrum/ZX Spectrum + 128K.h +158 -0
- data/src/external/Z/API/Z/hardware/machine/model/computer/ZX Spectrum/ZX Spectrum +.h +82 -0
- data/src/external/Z/API/Z/hardware/machine/model/computer/ZX Spectrum/ZX Spectrum +2.h +13 -0
- data/src/external/Z/API/Z/hardware/machine/model/computer/ZX Spectrum/ZX Spectrum +2A.h +13 -0
- data/src/external/Z/API/Z/hardware/machine/model/computer/ZX Spectrum/ZX Spectrum +3.h +13 -0
- data/src/external/Z/API/Z/hardware/machine/model/computer/ZX Spectrum/ZX Spectrum.h +109 -0
- data/src/external/Z/API/Z/hardware/machine/model/console/Nintendo Entertainment System/NES-001 (NTSC).h +29 -0
- data/src/external/Z/API/Z/hardware/machine/model/console/Nintendo Entertainment System/NES-001 (PAL).h +29 -0
- data/src/external/Z/API/Z/hardware/machine/platform/computer/ZX Spectrum.h +405 -0
- data/src/external/Z/API/Z/hardware/machine/platform/console/Game Boy.h +49 -0
- data/src/external/Z/API/Z/hardware/machine/platform/console/Nintendo Entertainment System.h +350 -0
- data/src/external/Z/API/Z/hardware/storage medium/ROM cartridge/SNES Game Pak.h +238 -0
- data/src/external/Z/API/Z/inspection/C/completion.h +178 -0
- data/src/external/Z/API/Z/inspection/C/modules/C11.h +41 -0
- data/src/external/Z/API/Z/inspection/C/modules/C18.h +13 -0
- data/src/external/Z/API/Z/inspection/C/modules/C89.h +19 -0
- data/src/external/Z/API/Z/inspection/C/modules/C90.h +13 -0
- data/src/external/Z/API/Z/inspection/C/modules/C94.h +15 -0
- data/src/external/Z/API/Z/inspection/C/modules/C99.h +29 -0
- data/src/external/Z/API/Z/inspection/C/modules/KR C.h +19 -0
- data/src/external/Z/API/Z/inspection/C++/completion.h +512 -0
- data/src/external/Z/API/Z/inspection/C++/modules/C++03.h +15 -0
- data/src/external/Z/API/Z/inspection/C++/modules/C++11.h +80 -0
- data/src/external/Z/API/Z/inspection/C++/modules/C++14.h +26 -0
- data/src/external/Z/API/Z/inspection/C++/modules/C++17.h +55 -0
- data/src/external/Z/API/Z/inspection/C++/modules/C++85.h +11 -0
- data/src/external/Z/API/Z/inspection/C++/modules/C++89.h +13 -0
- data/src/external/Z/API/Z/inspection/C++/modules/C++98.h +17 -0
- data/src/external/Z/API/Z/inspection/C++.h +78 -0
- data/src/external/Z/API/Z/inspection/C.h +79 -0
- data/src/external/Z/API/Z/inspection/CPU/completion.h +56 -0
- data/src/external/Z/API/Z/inspection/CPU/detection.h +714 -0
- data/src/external/Z/API/Z/inspection/CPU/modules/6502.h +25 -0
- data/src/external/Z/API/Z/inspection/CPU/modules/AArch32.h +32 -0
- data/src/external/Z/API/Z/inspection/CPU/modules/AArch64.h +32 -0
- data/src/external/Z/API/Z/inspection/CPU/modules/Z80.h +26 -0
- data/src/external/Z/API/Z/inspection/CPU/modules/x86-32.h +31 -0
- data/src/external/Z/API/Z/inspection/CPU/modules/x86-64.h +312 -0
- data/src/external/Z/API/Z/inspection/CPU.h +209 -0
- data/src/external/Z/API/Z/inspection/OS/completion.h +36 -0
- data/src/external/Z/API/Z/inspection/OS/detection.h +768 -0
- data/src/external/Z/API/Z/inspection/OS/modules/Linux.h +22 -0
- data/src/external/Z/API/Z/inspection/OS/modules/MS-DOS.h +16 -0
- data/src/external/Z/API/Z/inspection/OS/modules/Mac OS X.h +23 -0
- data/src/external/Z/API/Z/inspection/OS/modules/Windows.h +19 -0
- data/src/external/Z/API/Z/inspection/OS/modules/iPhone OS.h +23 -0
- data/src/external/Z/API/Z/inspection/OS.h +236 -0
- data/src/external/Z/API/Z/inspection/Objective-C/completion.h +8 -0
- data/src/external/Z/API/Z/inspection/Objective-C/modules/Objective-C v1.0.h +11 -0
- data/src/external/Z/API/Z/inspection/Objective-C/modules/Objective-C v2.0.h +15 -0
- data/src/external/Z/API/Z/inspection/Objective-C.h +51 -0
- data/src/external/Z/API/Z/inspection/Z.h +19 -0
- data/src/external/Z/API/Z/inspection/build.h +22 -0
- data/src/external/Z/API/Z/inspection/character set.h +66 -0
- data/src/external/Z/API/Z/inspection/compiler/completion.h +2885 -0
- data/src/external/Z/API/Z/inspection/compiler/modules/Apple LLVM.h +26 -0
- data/src/external/Z/API/Z/inspection/compiler/modules/Clang.h +1664 -0
- data/src/external/Z/API/Z/inspection/compiler/modules/GCC.h +1366 -0
- data/src/external/Z/API/Z/inspection/compiler/modules/SCCZ80.h +473 -0
- data/src/external/Z/API/Z/inspection/compiler/modules/Visual C++.h +606 -0
- data/src/external/Z/API/Z/inspection/compiler/modules/cc65.h +529 -0
- data/src/external/Z/API/Z/inspection/compiler/modules/generic.h +13 -0
- data/src/external/Z/API/Z/inspection/compiler/modules/template.h +650 -0
- data/src/external/Z/API/Z/inspection/compiler.h +299 -0
- data/src/external/Z/API/Z/inspection/data model/completion.h +128 -0
- data/src/external/Z/API/Z/inspection/data model/deduction.h +9 -0
- data/src/external/Z/API/Z/inspection/data model/detection.h +45 -0
- data/src/external/Z/API/Z/inspection/data model.h +362 -0
- data/src/external/Z/API/Z/inspection/floating-point/completion.h +50 -0
- data/src/external/Z/API/Z/inspection/floating-point.h +324 -0
- data/src/external/Z/API/Z/inspection/language.h +163 -0
- data/src/external/Z/API/Z/inspection/platform/detection.h +9 -0
- data/src/external/Z/API/Z/inspection/platform.h +29 -0
- data/src/external/Z/API/Z/keys/C++.h +27 -0
- data/src/external/Z/API/Z/keys/C.h +29 -0
- data/src/external/Z/API/Z/keys/CPU.h +80 -0
- data/src/external/Z/API/Z/keys/OS.h +182 -0
- data/src/external/Z/API/Z/keys/Objective-C.h +17 -0
- data/src/external/Z/API/Z/keys/chemistry.h +26 -0
- data/src/external/Z/API/Z/keys/compiler.h +178 -0
- data/src/external/Z/API/Z/keys/data model.h +32 -0
- data/src/external/Z/API/Z/keys/endianness.h +24 -0
- data/src/external/Z/API/Z/keys/language.h +21 -0
- data/src/external/Z/API/Z/keys/layout.h +20 -0
- data/src/external/Z/API/Z/keys/mathematics/geometry.h +29 -0
- data/src/external/Z/API/Z/keys/mathematics/number.h +21 -0
- data/src/external/Z/API/Z/keys/order.h +18 -0
- data/src/external/Z/API/Z/keys/platform.h +87 -0
- data/src/external/Z/API/Z/keys/program.h +39 -0
- data/src/external/Z/API/Z/keys/science/chemical elements.h +200 -0
- data/src/external/Z/API/Z/keys/science/electricity.h +18 -0
- data/src/external/Z/API/Z/keys/science/magnetism.h +19 -0
- data/src/external/Z/API/Z/keys/status.h +69 -0
- data/src/external/Z/API/Z/keys/text.h +27 -0
- data/src/external/Z/API/Z/keys/value.h +88 -0
- data/src/external/Z/API/Z/macros/arguments.h +25 -0
- data/src/external/Z/API/Z/macros/casting.h +22 -0
- data/src/external/Z/API/Z/macros/character.h +159 -0
- data/src/external/Z/API/Z/macros/date.h +14 -0
- data/src/external/Z/API/Z/macros/key.h +20 -0
- data/src/external/Z/API/Z/macros/language.h +126 -0
- data/src/external/Z/API/Z/macros/language.hpp +81 -0
- data/src/external/Z/API/Z/macros/members.h +86 -0
- data/src/external/Z/API/Z/macros/pasting.h +308 -0
- data/src/external/Z/API/Z/macros/pointer.h +33 -0
- data/src/external/Z/API/Z/macros/repetition.h +283 -0
- data/src/external/Z/API/Z/macros/structure.h +104 -0
- data/src/external/Z/API/Z/macros/templating.h +407 -0
- data/src/external/Z/API/Z/macros/tokens.h +14 -0
- data/src/external/Z/API/Z/macros/type enumeration.h +43 -0
- data/src/external/Z/API/Z/macros/type selection.hpp +76 -0
- data/src/external/Z/API/Z/macros/value.h +489 -0
- data/src/external/Z/API/Z/macros/variadic pasting.h +21 -0
- data/src/external/Z/API/Z/macros/variadic selection.h +56 -0
- data/src/external/Z/API/Z/macros/variadic.h +46 -0
- data/src/external/Z/API/Z/macros/version.h +17 -0
- data/src/external/Z/API/Z/network/3/IP.h +36 -0
- data/src/external/Z/API/Z/network/4/TCP.h +24 -0
- data/src/external/Z/API/Z/network/4/UDP.h +26 -0
- data/src/external/Z/API/Z/network/7/ED2K.h +104 -0
- data/src/external/Z/API/Z/network/7/HTTP.h +100 -0
- data/src/external/Z/API/Z/traits/SelectType.hpp +71 -0
- data/src/external/Z/API/Z/traits/TernaryType.hpp +20 -0
- data/src/external/Z/API/Z/traits/Type.hpp +4516 -0
- data/src/external/Z/API/Z/traits/TypeCount.hpp +52 -0
- data/src/external/Z/API/Z/traits/TypeList.hpp +376 -0
- data/src/external/Z/API/Z/traits/base.hpp +19 -0
- data/src/external/Z/API/Z/traits/filtering.hpp +30 -0
- data/src/external/Z/API/Z/traits/mathematics.hpp +48 -0
- data/src/external/Z/API/Z/types/arguments.h +19 -0
- data/src/external/Z/API/Z/types/base.h +1655 -0
- data/src/external/Z/API/Z/types/base.hpp +169 -0
- data/src/external/Z/API/Z/types/buffering.h +27 -0
- data/src/external/Z/API/Z/types/mathematics.h +135 -0
- data/src/external/Z/API/Z/types/time.h +23 -0
- data/src/external/Z/COPYING.LESSER +165 -0
- data/src/external/Z/development/Qt Creator/Z.pro +253 -0
- data/src/external/Z/distribution/CocoaPods/Zeta.podspec +18 -0
- data/src/external/Z/distribution/Gentoo Linux/Zeta-0.1.ebuild +22 -0
- data/src/external/Z/distribution/Gentoo Linux/metadata.xml +8 -0
- data/src/external/Z/distribution/Homebrew/Zeta.rb +11 -0
- data/src/external/z80/API/emulation/CPU/Z80.h +201 -0
- data/src/external/z80/README.md +229 -0
- data/src/external/z80/building/premake4.lua +33 -0
- data/src/external/z80/development/Xcode/Z80.xcodeproj/project.pbxproj +520 -0
- data/src/external/z80/sources/Z80.c +1660 -0
- data/src/interrupt.c +6 -0
- data/src/interrupt.h +3 -0
- data/src/io.c.erb +115 -0
- data/src/io.h.erb +18 -0
- data/src/main.c +69 -0
- data/src/memory.c.erb +43 -0
- data/src/memory.h.erb +9 -0
- metadata +329 -0
@@ -0,0 +1,963 @@
|
|
1
|
+
/* Z Kit - constants/numbers.h
|
2
|
+
_____ _______________
|
3
|
+
/_ /_/ -_/_ _/ _ |
|
4
|
+
/____/\___/ /__//___/_| Kit
|
5
|
+
Copyright (C) 2006-2018 Manuel Sainz de Baranda y Goñi.
|
6
|
+
Released under the terms of the GNU Lesser General Public License v3. */
|
7
|
+
|
8
|
+
#ifndef _Z_constants_numbers_H_
|
9
|
+
#define _Z_constants_numbers_H_
|
10
|
+
|
11
|
+
/* MARK: - Irrational numbers */
|
12
|
+
|
13
|
+
#define Z_ALPHA /* α ~ Feigenbaum's α Constant */ 2.\
|
14
|
+
5029078750958928222839028732182157863812713767271499773361920567\
|
15
|
+
7923546317959020670329964974643383412959523186999585472394218237\
|
16
|
+
7785445179272863314993372578112163594879503744781260997380598671\
|
17
|
+
2397117373289276654044010306698313834600094139322364490657889951\
|
18
|
+
2205843172507873377463087853424285351988587500042358246918740820\
|
19
|
+
4281700901714823051821621619413199856066129382742649709844084470\
|
20
|
+
1008054549677936760888126446406885181552709324007542506497157047\
|
21
|
+
0475419932831783645332562415378693957125097066387979492654623137\
|
22
|
+
6745918909813116752434221110130913127837160951158341230841503716\
|
23
|
+
4997020224681219644081216686527458043026245782561067150138521821\
|
24
|
+
6449532543349873487413352795815351016583605455763513276501810781\
|
25
|
+
1948369459574850237398235452625632779475397269902012891516645793\
|
26
|
+
9420198920248803394051699686551494477396533876979741232354061781\
|
27
|
+
9896112494095990353128997733611849847377946108428833293833903950\
|
28
|
+
9008914086351525626803381414669279913310743349705143545201344643\
|
29
|
+
4264752001621384610729922641994332772918977769053802596851
|
30
|
+
|
31
|
+
#define Z_GAMMA /* γ ~ Euler–Mascheroni Constant */ 0.\
|
32
|
+
5772156649015328606065120900824024310421593359399235988057672348\
|
33
|
+
8486772677766467093694706329174674951463144724980708248096050401\
|
34
|
+
4486542836224173997644923536253500333742937337737673942792595258\
|
35
|
+
2470949160087352039481656708532331517766115286211995015079847937\
|
36
|
+
4508570574002992135478614669402960432542151905877553526733139925\
|
37
|
+
4012967420513754139549111685102807984234877587205038431093997361\
|
38
|
+
3725530608893312676001724795378367592713515772261027349291394079\
|
39
|
+
8430103417771778088154957066107501016191663340152278935867965497\
|
40
|
+
2520362128792265559536696281763887927268013243101047650596370394\
|
41
|
+
7394957638906572967929601009015125195950922243501409349871228247\
|
42
|
+
9497471956469763185066761290638110518241974448678363808617494551\
|
43
|
+
6989279230187739107294578155431600500218284409605377243420328547\
|
44
|
+
8367015177394398700302370339518328690001558193988042707411542227\
|
45
|
+
8197165230110735658339673487176504919418123000406546931429992977\
|
46
|
+
7956930310050308630341856980323108369164002589297089098548682577\
|
47
|
+
73642882539549258736295961332985747393023734388470703702844129
|
48
|
+
|
49
|
+
#define Z_DELTA /* δ ~ Feigenbaum's δ Constant */ 4.\
|
50
|
+
6692016091029906718532038204662016172581855774757686327456513430\
|
51
|
+
0413433021131473713868974402394801381716598485518981513440862714\
|
52
|
+
2027932522312442988890890859944935463236713411532481714219947455\
|
53
|
+
6443658237932020095610583305754586176522220703854106467494942849\
|
54
|
+
8145339172620056875566595233987560382563722564800409510712838906\
|
55
|
+
1184470277585428541980111344017500242858538249833571552205223608\
|
56
|
+
7250291678860362674527213399057131606875345083433934446103706309\
|
57
|
+
4520191158769724322735898389037949462572512890979489867683346116\
|
58
|
+
2688911656312347446057517953912204556247280709520219819909455858\
|
59
|
+
1946136877445617396074115614074243754435499204869180982648652368\
|
60
|
+
4387027996490173977934251347238087371362116018601281861020563818\
|
61
|
+
1835409759847796417390032893617143215987824078977661439139576403\
|
62
|
+
7760537119096932066998361984288981837003229412030210655743295550\
|
63
|
+
3888458497370347275321219257069584140746618419819610061296401614\
|
64
|
+
8771294441590140546794180019813325337859249336588307045999993837\
|
65
|
+
5411726563553016862529032210862320550634510679399023341675
|
66
|
+
|
67
|
+
#define Z_PI /* π */ 3.\
|
68
|
+
1415926535897932384626433832795028841971693993751058209749445923\
|
69
|
+
0781640628620899862803482534211706798214808651328230664709384460\
|
70
|
+
9550582231725359408128481117450284102701938521105559644622948954\
|
71
|
+
9303819644288109756659334461284756482337867831652712019091456485\
|
72
|
+
6692346034861045432664821339360726024914127372458700660631558817\
|
73
|
+
4881520920962829254091715364367892590360011330530548820466521384\
|
74
|
+
1469519415116094330572703657595919530921861173819326117931051185\
|
75
|
+
4807446237996274956735188575272489122793818301194912983367336244\
|
76
|
+
0656643086021394946395224737190702179860943702770539217176293176\
|
77
|
+
7523846748184676694051320005681271452635608277857713427577896091\
|
78
|
+
7363717872146844090122495343014654958537105079227968925892354201\
|
79
|
+
9956112129021960864034418159813629774771309960518707211349999998\
|
80
|
+
3729780499510597317328160963185950244594553469083026425223082533\
|
81
|
+
4468503526193118817101000313783875288658753320838142061717766914\
|
82
|
+
7303598253490428755468731159562863882353787593751957781857780532\
|
83
|
+
1712268066130019278766111959092164201989380952572010654858632788
|
84
|
+
|
85
|
+
#define Z_RHO /* ρ ~ Plastic Number */ 1.\
|
86
|
+
3247179572447460259609088544780973407344040569017333645340150503\
|
87
|
+
0282785124554759405469934798178728032991092099474220742510890263\
|
88
|
+
9045897795594314757096723471754166839038867418751736931584253549\
|
89
|
+
9082466223545337273504589879909568150627745509802486213012169894\
|
90
|
+
1575245745486250756265246103689389048399322699520749759628288685\
|
91
|
+
5690815070451369610985335257728158603344114192782827376529603299\
|
92
|
+
3584674231028483241695239006108543338218508398101808957353870473\
|
93
|
+
9313439673137676460210316527688939639353259439924831031095839537\
|
94
|
+
7519426028877409271862033892820161525553218270947061305676123988\
|
95
|
+
9204637306571962977716886308761533248001117680731166845322774315\
|
96
|
+
6628996072663835722103634707098383715980223371021309824684908631\
|
97
|
+
2969366344392445007154150429000819030670589845339053468872874066\
|
98
|
+
1957756261670617642889193912308379183117162296038861476358807306\
|
99
|
+
3150974837675824592702890131950955155601228003859576154017842151\
|
100
|
+
7618
|
101
|
+
|
102
|
+
#define Z_TAU /* τ ~ Prouhet–Thue–Morse Constant */ 0.\
|
103
|
+
412454033640107597783361
|
104
|
+
|
105
|
+
#define Z_PHI /* φ ~ Divine Proportion, Golden Ratio */ 1.\
|
106
|
+
6180339887498948482045868343656381177203091798057628621354486227\
|
107
|
+
0526046281890244970720720418939113748475408807538689175212663386\
|
108
|
+
2223536931793180060766726354433389086595939582905638322661319928\
|
109
|
+
2902678806752087668925017116962070322210432162695486262963136144\
|
110
|
+
3814975870122034080588795445474924618569536486444924104432077134\
|
111
|
+
4947049565846788509874339442212544877066478091588460749988712400\
|
112
|
+
7652170575179788341662562494075890697040002812104276217711177780\
|
113
|
+
5315317141011704666599146697987317613560067087480710131795236894\
|
114
|
+
2752194843530567830022878569978297783478458782289110976250030269\
|
115
|
+
6156170025046433824377648610283831268330372429267526311653392473\
|
116
|
+
1671112115881863851331620384005222165791286675294654906811317159\
|
117
|
+
9343235973494985090409476213222981017261070596116456299098162905\
|
118
|
+
5520852479035240602017279974717534277759277862561943208275051312\
|
119
|
+
1815628551222480939471234145170223735805772786160086883829523045\
|
120
|
+
9264787801788992199027077690389532196819861514378031499741106926\
|
121
|
+
0886742962267575605231727775203536139362107673893764556060605921
|
122
|
+
|
123
|
+
#define Z_OMEGA /* Ω ~ W(1) */ 0.\
|
124
|
+
5671432904097838729999686622103555497538157871865125081351310792\
|
125
|
+
2304579308668456669321944696175229455763802497286678978545235846\
|
126
|
+
5940072995608516439289994614311571492959803594376698474635606134\
|
127
|
+
2268461356989570453977624855707865877337063566333012384304556354\
|
128
|
+
2978608509015429081920856055752374819658465950807273089050157336\
|
129
|
+
1831596070667108039283918360149499646349348448317465915933636893\
|
130
|
+
3680971490856983717510093546792166747552889731475588925030572822\
|
131
|
+
4604865124854109688318448770433467727016574464765200627013360494\
|
132
|
+
8057883875774914635983034808686985627342099151198306130250270223\
|
133
|
+
7292838727216542426572698430693890685874829642167823425504200307\
|
134
|
+
1966795220895590936913343950051154949542716768789494702443830337\
|
135
|
+
8784002606637609098563645828787818795338304237475555696975428665\
|
136
|
+
6135480540090110477123732473016808842009334259193374301935466235\
|
137
|
+
3076567270975761218841385994442828002635250684447525596225061138\
|
138
|
+
7848128978427693880472920268889238516484753423844953902789609971\
|
139
|
+
1060547842212061361983111973376227976096491011771088137407049732
|
140
|
+
|
141
|
+
#define Z_E /* e ~ Euler's Number */ 2.\
|
142
|
+
7182818284590452353602874713526624977572470936999595749669676277\
|
143
|
+
2407663035354759457138217852516642742746639193200305992181741359\
|
144
|
+
6629043572900334295260595630738132328627943490763233829880753195\
|
145
|
+
2510190115738341879307021540891499348841675092447614606680822648\
|
146
|
+
0016847741185374234544243710753907774499206955170276183860626133\
|
147
|
+
1384583000752044933826560297606737113200709328709127443747047230\
|
148
|
+
6969772093101416928368190255151086574637721112523897844250569536\
|
149
|
+
9677078544996996794686445490598793163688923009879312773617821542\
|
150
|
+
4999229576351482208269895193668033182528869398496465105820939239\
|
151
|
+
8294887933203625094431173012381970684161403970198376793206832823\
|
152
|
+
7646480429531180232878250981945581530175671736133206981125099618\
|
153
|
+
1881593041690351598888519345807273866738589422879228499892086805\
|
154
|
+
8257492796104841984443634632449684875602336248270419786232090021\
|
155
|
+
6099023530436994184914631409343173814364054625315209618369088870\
|
156
|
+
7016768396424378140592714563549061303107208510383750510115747704\
|
157
|
+
1718986106873969655212671546889570350354021234078498193343210681
|
158
|
+
|
159
|
+
#define Z_G /* G ~ Catalan's Constant */ 0.\
|
160
|
+
9159655941772190150546035149323841107741493742816721342664981196\
|
161
|
+
21763019776254769479356512926115106248574
|
162
|
+
|
163
|
+
#define Z_P2 /* P₂ ~ Universal Parabolic Constant */ 2.\
|
164
|
+
2955871493926380740342980491894903875978322036385834839299753466\
|
165
|
+
4410966268413312668409442623789761559175
|
166
|
+
|
167
|
+
#define Z_DELTA_S /* δs ~ Silver Ratio */ 2.\
|
168
|
+
4142135623730950488016887242096980785696718753769480731766797379\
|
169
|
+
9073247846210703885038753432764157
|
170
|
+
|
171
|
+
#define Z_ZETA_3 /* ζ(3) ~ Apéry's Constant */ 1.\
|
172
|
+
2020569031595942853997381615114499907649862923404988817922715553\
|
173
|
+
4183820578631309018645587360933525814619915779526071941849199599\
|
174
|
+
8673283213776396837207900161453941782949360066719191575522242494\
|
175
|
+
2439615639096641032911590957809655146512799184051057152559880154\
|
176
|
+
3710978110203982753256678760352233698494166181105701471577863949\
|
177
|
+
9737523785277937030956025701853182790003076547107563048843320869\
|
178
|
+
7115737423807934450316076253177145354444118311781822497185263570\
|
179
|
+
9182448998796203508335756172022603393785870328131267807990054177\
|
180
|
+
3486911525370656237057440966221712902627320732361492242913040528\
|
181
|
+
5553723410330775777980642420243048828152100091460265382206962715\
|
182
|
+
5202082274335001015294801198690117625951676366998171835575234880\
|
183
|
+
7037195557423472940835952088616662025728537558130792825864872821\
|
184
|
+
7370556619689895266201877681062920081779233813587682842641243243\
|
185
|
+
1480282173674506720693507626895304345939375032966363775750624733\
|
186
|
+
2399234828831077339052768020075798435679371150509005027366047114\
|
187
|
+
0085335034364672248565315181177661810922279191022488396800266606
|
188
|
+
|
189
|
+
#define Z_APERY_CONSTANT Z_ZETA_3
|
190
|
+
|
191
|
+
/* Bernstein's Constant */
|
192
|
+
#define Z_BERNSTEIN_CONSTANT 0.\
|
193
|
+
28016949902386913303643649123067200004248213981236
|
194
|
+
|
195
|
+
/* Cahen's constant */
|
196
|
+
#define Z_CAHEN_CONSTANT 0.\
|
197
|
+
6434105462883380261822543077575647632865878602682395059870309203\
|
198
|
+
0749277646183261084844089555046343195405372900995969467846947098\
|
199
|
+
1802430097780147073963456948247668586823491596555581306050580602\
|
200
|
+
6256306777475500425607601960884398861769982603193090004364305280\
|
201
|
+
6567338111342478976190975546079525373761160043883391348037160666\
|
202
|
+
7849974184079776825402840257413825951159592097430630557408812114\
|
203
|
+
4696101394340462070490073318995421946198637524805100624978738532\
|
204
|
+
6841116944408820095760047244297718746082273520598185316636923727\
|
205
|
+
6790472958772175441607432838562778155230454121621791172401531531\
|
206
|
+
8883239557424569302059076729469550847427091071937146523382004276\
|
207
|
+
6671376387740391112213044251840172373010457848486880087124078290\
|
208
|
+
1457449877274770249676563130590862156100889975149986642474501700\
|
209
|
+
5581154212587814616117557775789114686770822872829465693504467164\
|
210
|
+
0959525956030861979618867444196869756004609746414038853402815847\
|
211
|
+
5936540509205782123128626092476347619412226683926102068711744992\
|
212
|
+
8500177376751575327731991603831036751803975694669235336301908766
|
213
|
+
|
214
|
+
/* Conway's Constant */
|
215
|
+
#define Z_CONWAY_CONSTANT 1.\
|
216
|
+
3035772690342963912570991121525518907307025046594048757548613906\
|
217
|
+
2855088785246155712681576686442522555347139304709490268396284989\
|
218
|
+
3551554347375824856691088977770216576006666613618195758149971416\
|
219
|
+
2117477679231324299325720143046277132953880169252753163112124160\
|
220
|
+
2789744556311221192891765945442844221050348398443048435036597886\
|
221
|
+
1636568696122933005217967812127420727428338418585389780462975362\
|
222
|
+
1113325713155961142841646364930650685182742924915750807604716554\
|
223
|
+
8732899031406796262775210982301850098048676804171127036928277045\
|
224
|
+
5569925410472532552960023967416151761300757699523941470920962729\
|
225
|
+
7796525283812895292399842146646970063628087185984737643242596375\
|
226
|
+
3778614871491804177943882564549629612672676317034139989238683800\
|
227
|
+
1749933916383255041973874337640464423096341637734299996402795347\
|
228
|
+
7812315036938111361969193101105512224328065334872949851635350180\
|
229
|
+
0086189800442695696203908949639604105938945262628974848057200498\
|
230
|
+
9520589408315451152746418415125180247302001937967778366214066091\
|
231
|
+
1047529322875883638588769569619942051649976764376226646605546524
|
232
|
+
|
233
|
+
/* Copeland–Erdős Constant */
|
234
|
+
#define Z_COPELAND_ERDOS_CONSTANT 0.\
|
235
|
+
2357111317192329313741434753596167717379838997101103107109113127\
|
236
|
+
1311371391491511571631671731791811911931971992112232272292332392\
|
237
|
+
4125125726326927127728128329330731131331733133734734935335936737\
|
238
|
+
3379383389397401409419421431433439443449457461463467479487491499\
|
239
|
+
5035095215235415475575635695715775875935996016076136176196316416\
|
240
|
+
4364765365966167367768369170170971972773373974375175776176977378\
|
241
|
+
7797809811821823827829839853857859863877881883887907911919929937\
|
242
|
+
9419479539679719779839919971009101310191021103110331039104910511\
|
243
|
+
0611063106910871091109310971103110911171123112911511153116311711\
|
244
|
+
1811187119312011213121712231229123112371249125912771279128312891\
|
245
|
+
2911297130113031307131913211327136113671373138113991409142314271\
|
246
|
+
4291433143914471451145314591471148114831487148914931499151115231\
|
247
|
+
5311543154915531559156715711579158315971601160716091613161916211\
|
248
|
+
6271637165716631667166916931697169917091721172317331741174717531\
|
249
|
+
7591777178317871789180118111823183118471861186718711873187718791\
|
250
|
+
8891901190719131931193319491951197319791987199319971999200320112
|
251
|
+
|
252
|
+
/* Dubois-Raymond Constant */
|
253
|
+
#define Z_DUBOIS_RAYMOND_CONSTANT 0.\
|
254
|
+
1945280494653251136152137302875039065901577852759236620435639112\
|
255
|
+
6128689803952888169215624253956089738687658063273943306194230184\
|
256
|
+
6390636687239196106699038887450061447803705376851195665473775341\
|
257
|
+
0432909101348239341042021104911276174378712312707073399640646659\
|
258
|
+
4403538165050966894987036499348004765165375766040941184234739651\
|
259
|
+
4956779385722841561961636382301294169998230606424642604839452569\
|
260
|
+
4123319935614068634305323678131896475911139214742172930676438469\
|
261
|
+
3349287600077498007403753598564668470942599861444131812798597054\
|
262
|
+
7933095739935752164198846632305117558156194995005256891703382249\
|
263
|
+
3319463428079109321077886242460055967658105859758658736348984146\
|
264
|
+
7259992527092431598567842973511456278699178055257489684072513882\
|
265
|
+
2403821492552091058527972095893841735642638248904856731252070117\
|
266
|
+
6210793704693341271357851963226482022753143890006555463250692416\
|
267
|
+
7265132318157078023594405882897139317429953835226355968647936199\
|
268
|
+
7993536655407480626554885296765049525164840537710545438813154286\
|
269
|
+
2425019139361380724333725282493692938578755281217194719835697214
|
270
|
+
|
271
|
+
/* Fransén–Robinson Constant */
|
272
|
+
#define Z_FRANSEN_ROBINSON_CONSTANT 2.\
|
273
|
+
8077702420285193652215011865577729323080859209301982912200548095\
|
274
|
+
9710088912190166551018530816819663814187416434292647678607356834\
|
275
|
+
7830897012446742487764751667549180849932709220052990094447342952\
|
276
|
+
0658351475152131155061828050485818763476748076712998234216343271\
|
277
|
+
32839553888361830581061735321115429359987705
|
278
|
+
|
279
|
+
/* Froda Constant */
|
280
|
+
#define Z_FRODA_CONSTANT 6.\
|
281
|
+
5808859910179209708515424038864864915730774383480740051215126610\
|
282
|
+
3130504039582040980102991492610759196856156668455125548138339170\
|
283
|
+
3289202458856954899842363505373271623341799384794496221955199521\
|
284
|
+
9817257192218388867595645961802004143922594049488307254920458946\
|
285
|
+
8453227772258857709537332768570509596095271117425536510662899569\
|
286
|
+
7277185088450012821602790991199992049536662057550853887690385613\
|
287
|
+
7002632531317153051100200863766096686558637839580581513980142957\
|
288
|
+
7334256389687241990566392949483335138446018013413478388302980462\
|
289
|
+
1310697071249342564168139126312706622063772884318204059466632628\
|
290
|
+
8699565585079898698033973449949718559489634828335307265242104748\
|
291
|
+
2135319342734258054306012628140042042969387544936469490135496070\
|
292
|
+
6954953488235435685881195896105422830179666394139001710669418514\
|
293
|
+
8764432569707997421913960662789237104829140068449429415344843421\
|
294
|
+
6682628035399961925125252573981078131758341309762667123525922193\
|
295
|
+
5544343127146165493705806126785444366179457823420514254471624604\
|
296
|
+
1373218142284623260713740224396531435039076042586205557463472653
|
297
|
+
|
298
|
+
/* Gauss-Kuzmin-Wirsing Constant */
|
299
|
+
#define Z_GAUSS_KUZMIN_WIRSING_CONSTANT 0.\
|
300
|
+
3036630028987326585974481219015562331108773522536578951882454814\
|
301
|
+
6722699529424691098434081193436363681109827226371061693847461485\
|
302
|
+
9745801316065265381818237879132446139896476429740950446293759490\
|
303
|
+
4870297728772511058335175922044472408659119650778105589295791867\
|
304
|
+
1475292565364259184412178423449205725529426910040657788006767324\
|
305
|
+
30364396401389692767134073782286711534915435462112848419717968
|
306
|
+
|
307
|
+
/* Glaisher-Kinkelin Constant */
|
308
|
+
#define Z_GLAISHER_KINKELIN_CONSTANT 1.\
|
309
|
+
2824271291006226368753425688697917277676889273250011920637400217\
|
310
|
+
4040630885882646112973649195820237439420646120399000748933157791\
|
311
|
+
3627752804041590725738617275221433432714343978733506791525736685\
|
312
|
+
6907876561146686449997784962754518174312394652761282138081802192\
|
313
|
+
6451685154614391990108357373070350490388812341881367497813305093\
|
314
|
+
7708336822224941158748373480643999788300701255670012869941577054\
|
315
|
+
3205392758540581731588155481762970384743250467775147374600031616\
|
316
|
+
0230466132963429915580958792933634388728870198895346072523318470\
|
317
|
+
2489001091776941712153569193674967261270398013526526688689782188\
|
318
|
+
9740172937584075016747211489528881599666874316451389030696264559\
|
319
|
+
8704695437402530996068008424474175540614901894441393861960891296\
|
320
|
+
8217352879862988434220366989900606980888785849587494085307347117\
|
321
|
+
0901326675675033105234052210541417677615630819191999718523704776\
|
322
|
+
1312315374135304725819814797451761027540834943143849652341394533\
|
323
|
+
7306583232567395495760169225642773692635882169215987077585827469\
|
324
|
+
575162841550648585890834128227556209758
|
325
|
+
|
326
|
+
/* Golomb–Dickman Constant */
|
327
|
+
#define Z_GOLOMB_DICKMAN_CONSTANT 0.\
|
328
|
+
6243299885435508709929363831008372441796426201805292869735519024\
|
329
|
+
9563808885511325446246027619553986886914041039406274314156555911\
|
330
|
+
8325420596284465847978987572474465109280189639441135184902499148\
|
331
|
+
4947232561121165840654419399681097868927028519012517369465
|
332
|
+
|
333
|
+
/* Khinchin-Lévy Constant */
|
334
|
+
#define Z_KHINCHIN_LEVY_CONSTANT 1.\
|
335
|
+
1865691104156254528217229759472371205683565364720543359542542986\
|
336
|
+
5280963205625444330034830110848687594663926374717514798866899462\
|
337
|
+
8858792892048589683500305263953652862648543238996756950630481767\
|
338
|
+
7137897971160075137260514827163656857323386723372834729020622716\
|
339
|
+
7397717492785936707669402534024864255657756897536580928012999629\
|
340
|
+
8097683768221776246950334807687137738646291848495287534547268657\
|
341
|
+
5981454718758041876163312814165488785235808196886092272054841330\
|
342
|
+
0497613271141838825016107202035985960092613178946519602806110533\
|
343
|
+
1471179799737169111649605099218023355663781315651819442304413647\
|
344
|
+
1107321421137880088845327720664931005413077138234468810688679034\
|
345
|
+
4040265903168814806991853006483510887007401837153184162772458809\
|
346
|
+
9463237501503333492577302701015075319588656808653915811854702488\
|
347
|
+
5109994793687122151974779482404010825711270498595566342029575930\
|
348
|
+
5048539691167157693662265797795733855688822243559909166408814653\
|
349
|
+
6378563759581862456361968781886906440464238011566830343822036684\
|
350
|
+
767237417945240901293641495989710341133651272953540904463262571
|
351
|
+
|
352
|
+
/* Lehmer's Constant */
|
353
|
+
#define Z_LEHMER_CONSTANT 0.\
|
354
|
+
5926327182016361971040786049957014690842754071971610710995626081\
|
355
|
+
5824735236416000851066478429710125705118718346542386963492602972\
|
356
|
+
0676068278560798719794374872514034030005836924869155386406146603\
|
357
|
+
4856682341215484563644664283093780498006899118318496569617201211\
|
358
|
+
3759470623436986514577152028677342172295805168234444776889445080\
|
359
|
+
5416320615585123236230643791702235207816036696392763427125248854\
|
360
|
+
5674262839723419486114155544111865660734792387798043466342553169\
|
361
|
+
2753922997364863485871218333767125332765552976528666126066185788\
|
362
|
+
7136229494030890319843139079584054789895099470074892500536563296\
|
363
|
+
9001766440856359838520947830182186895213784898496770578735653738\
|
364
|
+
5497593520672298603936207528576177510978795686629351912784453933\
|
365
|
+
5684548746146679936886718357439373791659084376165704157947507762\
|
366
|
+
0030956011574042760302493993921496419367417172065429695390317552\
|
367
|
+
6951535843439567271915190168880981717597249067581873559990538542\
|
368
|
+
6905758956901623071748479727018609084969996895767596082849838196\
|
369
|
+
9270404195036511309800972643309599823665
|
370
|
+
|
371
|
+
/* Lemniscate Constant */
|
372
|
+
#define Z_LEMNISCATE_CONSTANT 2.\
|
373
|
+
6220575542921198104648395898911194136827549514316231628168217038\
|
374
|
+
0079058707041425023029553296142909344613575267178321805560895690\
|
375
|
+
1393935694701119434775235840422641497164906951936899979932146072\
|
376
|
+
3831213908102062218974296008565545397723053695497102888883255264\
|
377
|
+
8702132901209754083312856851172975222921429669243051396845645553\
|
378
|
+
9432881415381331735108409226312132476667633414509988603429421479\
|
379
|
+
2247144879639078725641895218110272525166299643333846606793336350\
|
380
|
+
9313980852623773940914262648984803480457254147704617542125634212\
|
381
|
+
9955863129980224054609012091499139897885645312480971101149665075\
|
382
|
+
0605420938417238869000402747853896254830305803039463247832195583\
|
383
|
+
2552297303719134191898359219991422953667256910686113093813498072\
|
384
|
+
5552913015093730332611087045814240765781886530766932476940761626\
|
385
|
+
7216362495494800667609613881223224769255910187057757436146489128\
|
386
|
+
7983268666203073137331356210761263637924578580178136410536130609\
|
387
|
+
3563472025022592312041202668270457723044608378953311357002940577\
|
388
|
+
442011806826257962983642671092116198595
|
389
|
+
|
390
|
+
/* Lévy's Constant */
|
391
|
+
#define Z_LEVY_CONSTANT 3.\
|
392
|
+
2758229187218111597876818824538438636084755259823741494051989241\
|
393
|
+
9072321564496035518127754047917452949269852624340163332818980851\
|
394
|
+
1503417099708230466465646703708071290224186139594237720129817924\
|
395
|
+
2510876976149300288068249261705940412908086970544412349223798884\
|
396
|
+
4270897269164098355358548048374785828762526918445007643383703876\
|
397
|
+
7418844594203517000037321222306241936013409165748043544702217325\
|
398
|
+
9938222983822632339151552857798612046849447252148722901480936120\
|
399
|
+
8904543420920995199781624005150390513815387714754291393073946178\
|
400
|
+
0455278382777274148472215134988266729112154482704520186334876500\
|
401
|
+
1974618041826296536528801168151105751350871152301630294274883364\
|
402
|
+
6260993628966063363776317216508834801936111756326698411146757164\
|
403
|
+
6737885366090624367033259688737535781426541959925075527820545637\
|
404
|
+
1594070177616321153570559233923794384292709017743923016374406041\
|
405
|
+
2678496160747830990299680560833690479092323361110349271473790052\
|
406
|
+
5389549165714734199722931676646307641198327646538816962046346297\
|
407
|
+
332994286181358520050377154266892424005731518557308952871781294
|
408
|
+
|
409
|
+
/* Magata's Constant */
|
410
|
+
#define Z_MAGATA_CONSTANT 3.\
|
411
|
+
4070691656272561422194582628271806535540344380150321161910338275\
|
412
|
+
729699387
|
413
|
+
|
414
|
+
/* Mills' Constant */
|
415
|
+
#define Z_MILLS_CONSTANT 1.\
|
416
|
+
3063778838630806904686144926026057129167845851567136443680537599\
|
417
|
+
66434
|
418
|
+
|
419
|
+
/* Alfréd Rényi's Parking Constant */
|
420
|
+
#define Z_PARKING_CONSTANT 0.\
|
421
|
+
7475979202534114351787309438301781730247862640742283766042291634\
|
422
|
+
2516788160295440431243085036931411115
|
423
|
+
|
424
|
+
/* Porter's Constant */
|
425
|
+
#define Z_PORTER_CONSTANT 1.\
|
426
|
+
4670780794339754728977984847072299534499033224148877773996858176\
|
427
|
+
1660674432904480843036932751117401521266484679045379512110834380\
|
428
|
+
0963912989965561898768045389373100175492129255790244549548891509\
|
429
|
+
825064836565770339644748288818978123102459699275573160698353198
|
430
|
+
|
431
|
+
/* Wilbraham-Gibbs Constant */
|
432
|
+
#define Z_WILBRAHAM_GIBBS_CONSTANT 1.\
|
433
|
+
8519370519824661703610533701579913633458097289811549098047837818\
|
434
|
+
7698189016634835853271033650295475770168436164800715700937245079\
|
435
|
+
9901963934227232241416503636507478802775776040700542538704594703\
|
436
|
+
7548070012549126196000327078575312602462781280151598692712625156\
|
437
|
+
6580378191706570498191117142153830172868690950027668919698378356\
|
438
|
+
4878693375929431917536185883987328136153711174160053365028598892\
|
439
|
+
8906414670095488877382247112955736673406636533206353917604135172\
|
440
|
+
0391124030289113514513183861349292577441824075264760309052792077\
|
441
|
+
8214856022187181490425447150146363584277794711774661377560583998\
|
442
|
+
0813601589774035700341407559120370214113987005974964457642432794\
|
443
|
+
5717202979146195145875005521298368008394022754407873371890776002\
|
444
|
+
3337859174819734615441535401375520206534953637077479723223530762\
|
445
|
+
7711101354680926841172462714308267187960091741576168508046447756\
|
446
|
+
2945596278463818094505702063151083460862967611583842446423313950\
|
447
|
+
2651856882443995288504068180671418260092625808323715322324469000\
|
448
|
+
4091924289785349238396416174935955727240494968269552946845809079
|
449
|
+
|
450
|
+
/* MARK: - Irrational numbers (Roots) */
|
451
|
+
|
452
|
+
#define Z_SQUARE_ROOT_2 /* Pythagoras's Constant */ 1.\
|
453
|
+
4142135623730950488016887242096980785696718753769480731766797379\
|
454
|
+
9073247846210703885038753432764157273501384623091229702492483605\
|
455
|
+
5850737212644121497099935831413222665927505592755799950501152782\
|
456
|
+
0605714701095599716059702745345968620147285174186408891986095523\
|
457
|
+
2923048430871432145083976260362799525140798968725339654633180882\
|
458
|
+
9640620615258352395054745750287759961729835575220337531857011354\
|
459
|
+
3746034084988471603868999706990048150305440277903164542478230684\
|
460
|
+
9293691862158057846311159666871301301561856898723723528850926486\
|
461
|
+
1249497715421833420428568606014682472077143585487415565706967765\
|
462
|
+
3720226485447015858801620758474922657226002085584466521458398893\
|
463
|
+
9443709265918003113882464681570826301005948587040031864803421948\
|
464
|
+
9727829064104507263688131373985525611732204024509122770022694112\
|
465
|
+
7573627280495738108967504018369868368450725799364729060762996941\
|
466
|
+
3804756548237289971803268024744206292691248590521810044598421505\
|
467
|
+
9112024944134172853147810580360337107730918286931471017111168391\
|
468
|
+
6581726889419758716582152128229518488472089694633862891562882765
|
469
|
+
|
470
|
+
#define Z_SQUARE_ROOT_3 /* Theodorus' Constant */ 1.\
|
471
|
+
7320508075688772935274463415058723669428052538103806280558069794\
|
472
|
+
5193301690880003708114618675724857567562614141540670302996994509\
|
473
|
+
4998952478811655512094373648528093231902305582067974820101084674\
|
474
|
+
9232650153123432669033228866506722546689218379712270471316603678\
|
475
|
+
6158801904998653737985938946765034750657605075661834812960610094\
|
476
|
+
7602187190325083145829523959832997789824508288714463832917347224\
|
477
|
+
1639845878553976679580638183536661108431737808943783161020883055\
|
478
|
+
2490167002352071114428869599095636579708716849807289949329648428\
|
479
|
+
3020786408603988738697537582317317831395992983007838702877053913\
|
480
|
+
3695633121037072640192491067682311992883756411414220167427521023\
|
481
|
+
7299427083105989845947598766428889779614783795839022885485290357\
|
482
|
+
6033852808064381972344661059689722872865264153822664698420021195\
|
483
|
+
4841552784411812865345070351916500166892944154808460712771439997\
|
484
|
+
6292683462957743836189511012714863874697654598245178855097537901\
|
485
|
+
3880664961911962222957110555242923723192197738262561631468842032\
|
486
|
+
8537166829386496119170497388363954959381457576718533736331259108
|
487
|
+
|
488
|
+
#define Z_SQUARE_ROOT_5 2.\
|
489
|
+
2360679774997896964091736687312762354406183596115257242708972454\
|
490
|
+
1052092563780489941441440837878227496950817615077378350425326772\
|
491
|
+
4447073863586360121533452708866778173191879165811276645322639856\
|
492
|
+
5805357613504175337850034233924140644420864325390972525926272288\
|
493
|
+
7629951740244068161177590890949849237139072972889848208864154268\
|
494
|
+
9894099131693577019748678884425089754132956183176921499977424801\
|
495
|
+
5304341150359576683325124988151781394080005624208552435422355561\
|
496
|
+
0630634282023409333198293395974635227120134174961420263590473788\
|
497
|
+
5504389687061135660045757139956595566956917564578221952500060539\
|
498
|
+
2312340050092867648755297220567662536660744858535052623306784946\
|
499
|
+
3342224231763727702663240768010444331582573350589309813622634319\
|
500
|
+
8686471946989970180818952426445962034522141192232912598196325811\
|
501
|
+
1041704958070481204034559949435068555518555725123886416550102624\
|
502
|
+
3631257102444961878942468290340447471611545572320173767659046091\
|
503
|
+
8529575603577984398054155380779064393639723028756062999482213852\
|
504
|
+
1773485924535151210463455550407072278724215347787529112121211843
|
505
|
+
|
506
|
+
#define Z_SQUARE_ROOT_6 2.\
|
507
|
+
4494897427831780981972840747058913919659474806566701284326925672\
|
508
|
+
5096037745731502653985943310464023481859460122661418912485886545\
|
509
|
+
9837757341625783951237278552828912747527676571247630105270911770\
|
510
|
+
2234813106789866908536324433525456040338088089393745855678465747\
|
511
|
+
2436130414427027021617420183830008158980783801308970072869399363\
|
512
|
+
0837158094400800443738687549164514653939145012044726448133316293\
|
513
|
+
5109447418135132854950444661717266314254976483181245040115660453\
|
514
|
+
6459009343586167931983665666266909131906535863766105258156179366\
|
515
|
+
2361791102946720883545755128835529898324100558690205006415466124\
|
516
|
+
1173533994104310579928984673395325527873604182965517183039103678\
|
517
|
+
0038362316629732330282904977391047426360070512637697546888677006\
|
518
|
+
4099295592571732846450288809151442574630260295296323707552503422\
|
519
|
+
7559915454262812980030646720799424253022878426205340679478600465\
|
520
|
+
9693997993559754061671358654653456248208256276886369280941306372\
|
521
|
+
4335088648015724846337232447379545488144384793363700919741014778\
|
522
|
+
5232875591063159846078310367009535324726423167141887586237415065
|
523
|
+
|
524
|
+
#define Z_SQUARE_ROOT_7 2.\
|
525
|
+
6457513110645905905016157536392604257102591830824501803683344592\
|
526
|
+
0106882323028362776039288647454361061506457833849746309574352988\
|
527
|
+
8627214784427390555880107722717150729728323892299689594865087260\
|
528
|
+
7009780542037238280237159411003419391160015785255963059457410351\
|
529
|
+
5239680271640737379907404158151990440347431945367139973059700505\
|
530
|
+
1399692237545616097119027378154991633288287704000657570674651963\
|
531
|
+
4977520837938181146130908764737865956243305799479812816323070548\
|
532
|
+
3650107715617946361191553454536477494820593090494849834033989002\
|
533
|
+
1047861667332795036939246225717053716492578754832290732492671346\
|
534
|
+
9802989499080377482511092278955688979198088148340908316852513353\
|
535
|
+
5829539172211770714414974576907081989444441458972284741400303502\
|
536
|
+
3532037194870738262931851936409083228059646278376102195979419708\
|
537
|
+
9096354695861341181793067816213608491016778353212556334634900218\
|
538
|
+
9814604225592950366956241869273732771502208752309966469813203212\
|
539
|
+
8189454785680209506359624466285500761905041393504474371234885223\
|
540
|
+
3277362510045059621080672334698120004300514490251206257311759115
|
541
|
+
|
542
|
+
#define Z_SQUARE_ROOT_8 2.\
|
543
|
+
8284271247461900976033774484193961571393437507538961463533594759\
|
544
|
+
8146495692421407770077506865528314547002769246182459404984967211\
|
545
|
+
1701474425288242994199871662826445331855011185511599901002305564\
|
546
|
+
1211429402191199432119405490691937240294570348372817783972191046\
|
547
|
+
5846096861742864290167952520725599050281597937450679309266361765\
|
548
|
+
9281241230516704790109491500575519923459671150440675063714022708\
|
549
|
+
7492068169976943207737999413980096300610880555806329084956461369\
|
550
|
+
8587383724316115692622319333742602603123713797447447057701852972\
|
551
|
+
2498995430843666840857137212029364944154287170974831131413935530\
|
552
|
+
7440452970894031717603241516949845314452004171168933042916797787\
|
553
|
+
8887418531836006227764929363141652602011897174080063729606843897\
|
554
|
+
9455658128209014527376262747971051223464408049018245540045388225\
|
555
|
+
5147254560991476217935008036739736736901451598729458121525993882\
|
556
|
+
7609513096474579943606536049488412585382497181043620089196843011\
|
557
|
+
8224049888268345706295621160720674215461836573862942034222336783\
|
558
|
+
3163453778839517433164304256459036976944179389267725783125765531
|
559
|
+
|
560
|
+
#define Z_SQUARE_ROOT_10 3.\
|
561
|
+
1622776601683793319988935444327185337195551393252168268575048527\
|
562
|
+
9259443863923822134424810837930029518734728415284005514854885603\
|
563
|
+
0453880014690519596700153903344921657179259940659150153474113339\
|
564
|
+
4841240853169295770904715764610443692578790620378086099418283717\
|
565
|
+
1154840632855299911859682456420332696160469131433612894979189026\
|
566
|
+
6529543612676178781350061388186278580463683134952478031143769334\
|
567
|
+
6719738195131856784032312417954022183080458728446146002535775797\
|
568
|
+
0282864402902440797789603454398916334922265261206779265167603104\
|
569
|
+
8436697793756926155720500369894909469421850007358348844643882731\
|
570
|
+
1092891090423480542356534039072740197865437259396417260013069900\
|
571
|
+
0095578446310962679069441833613018130289454170331580773162638639\
|
572
|
+
5193793704654765220632063686587197822049312426053454111609356979\
|
573
|
+
8281324522970007988835237595853285792513629646865114976752171234\
|
574
|
+
5955923803937562512536985519495532509994703884399033646616547064\
|
575
|
+
7234999796132343403021857052187836676345789510732982875157945215\
|
576
|
+
7716521396263244383990184845609357626020316768042407958946934247
|
577
|
+
|
578
|
+
#define Z_SQUARE_ROOT_11 3.\
|
579
|
+
3166247903553998491149327366706866839270885455893535970586821461\
|
580
|
+
1648464260904384670884339912829065090701255784952745659227543978\
|
581
|
+
4857547479779324933044728847302873974828655682577394444612098044\
|
582
|
+
4771931123571441329715210988326604957100372485207381068208074875\
|
583
|
+
8396589499452515931529840068271971051828955724842455676637002050\
|
584
|
+
8129842236770597842039737427437130311226448688072317190977752062\
|
585
|
+
9616099310799036448345876084690325051455517093627372268267160321\
|
586
|
+
0207901919996927385750204334035187564780307139686203097819560584\
|
587
|
+
3725362410405466369580534808247443172811968386717118059036597033\
|
588
|
+
7448997202863169540371541080201902845827165665889629545544234863\
|
589
|
+
9548140847137804628618335608388738384826935918833704592147012515\
|
590
|
+
8427710904925025882797138714982167119273365512547126431962404617\
|
591
|
+
2648548926892536495944124838553075458386858642464148905256510508\
|
592
|
+
2976405813698950347726301882000479106251003209582933018375612614\
|
593
|
+
1859454774457145379132752736187749409863990889436652633890856923\
|
594
|
+
9596152811690656996164370695457708259448190021400820246857635105
|
595
|
+
|
596
|
+
#define Z_SQUARE_ROOT_12 3.\
|
597
|
+
4641016151377545870548926830117447338856105076207612561116139589\
|
598
|
+
0386603381760007416229237351449715135125228283081340605993989018\
|
599
|
+
9997904957623311024188747297056186463804611164135949640202169349\
|
600
|
+
8465300306246865338066457733013445093378436759424540942633207357\
|
601
|
+
2317603809997307475971877893530069501315210151323669625921220189\
|
602
|
+
5204374380650166291659047919665995579649016577428927665834694448\
|
603
|
+
3279691757107953359161276367073322216863475617887566322041766110\
|
604
|
+
4980334004704142228857739198191273159417433699614579898659296856\
|
605
|
+
6041572817207977477395075164634635662791985966015677405754107826\
|
606
|
+
7391266242074145280384982135364623985767512822828440334855042047\
|
607
|
+
4598854166211979691895197532857779559229567591678045770970580715\
|
608
|
+
2067705616128763944689322119379445745730528307645329396840042390\
|
609
|
+
9683105568823625730690140703833000333785888309616921425542879995\
|
610
|
+
2585366925915487672379022025429727749395309196490357710195075802\
|
611
|
+
7761329923823924445914221110485847446384395476525123262937684065\
|
612
|
+
7074333658772992238340994776727909918762915153437067472662518217
|
613
|
+
|
614
|
+
#define Z_SQUARE_ROOT_13 3.\
|
615
|
+
6055512754639892931192212674704959462512965738452462127104530562\
|
616
|
+
2716694829301044520461908201849071767351418202406354037603067826\
|
617
|
+
4697807705163017166892709757742690564274152633233830394962346944\
|
618
|
+
7962732299962880032688564272130721127331690722052975017855588384\
|
619
|
+
4481465386892107539539248256331024468283663873252869681018926331\
|
620
|
+
3049835539921621174410861805701512768903102881214399483179868380\
|
621
|
+
9191329034353620627951223336511358206979573836238526577606890679\
|
622
|
+
2609603184500630561512640198380725552254880439995068063909609144\
|
623
|
+
6317976289163564544719685392169068915669891846759739035394769849\
|
624
|
+
9962247909644289010644441276675481640212983715961814894472819793\
|
625
|
+
8173214447846457811396497056952460736874807030279572211614048803\
|
626
|
+
2881716595571961517619126745071133538732853360545103521380556650\
|
627
|
+
2555494587073292081260347734391582994367395751429587741287176131\
|
628
|
+
4898328491367481982288670670500887357298564518320813595755837452\
|
629
|
+
8748997770498225074491739486122149917346314129778530567936583385\
|
630
|
+
9084923735540651072975297023582252157988378502698942824546906255
|
631
|
+
|
632
|
+
#define Z_SQUARE_ROOT_14 3.\
|
633
|
+
7416573867739413855837487323165493017560198077787269463037454673\
|
634
|
+
2003515630693902797680989519437957150099108872775197754550656536\
|
635
|
+
8164242592660042052551835117407401124474858631911100015230402627\
|
636
|
+
9990638550213390300377330889721284945398105001694377593170299544\
|
637
|
+
7319506049992643849467871984350198478834312631025757959589728144\
|
638
|
+
9423640188510302034929081127343124602795306338103482722099939933\
|
639
|
+
1632325073523166184196678410645529042707896011422412228117857535\
|
640
|
+
3666229821592216114192712401401062892124966991333243644395454349\
|
641
|
+
5761495087928623919979989096898963145846865535325529594557326107\
|
642
|
+
0496315592433061044542370501975004465989191778372841899586982015\
|
643
|
+
8709794801887759510441696284709199101022413286189989722195565414\
|
644
|
+
2721715251914875629353000674583453673567421640048791525684582413\
|
645
|
+
4590381859339872060995709667653664064804204506068932544077875384\
|
646
|
+
0945992448071804734066289369704503299185073788343176149673387719\
|
647
|
+
4520482494319253841618179781624882985315814656755067051262017785\
|
648
|
+
5028030354711313419236714908509541918604246710579888794708646720
|
649
|
+
|
650
|
+
#define Z_SQUARE_ROOT_15 3.\
|
651
|
+
8729833462074168851792653997823996108329217052915908265875737661\
|
652
|
+
1348309193697903351928737685867351791630220686094964701318954043\
|
653
|
+
9163649615679891746121203511068754791013493581283919531228889292\
|
654
|
+
5658464170280625091931734126598648184554646285513159402626176726\
|
655
|
+
4050864630045057781063197288093978192518830035530153001074835443\
|
656
|
+
8098719014432460775585023104811717090606284157397581582901013330\
|
657
|
+
3274447305580667026371791243800477125912479424727638166001355365\
|
658
|
+
2722953567945703078465466105357724026016703376374906204296078718\
|
659
|
+
7206146764349685215198853426648827511094432134918227578894674852\
|
660
|
+
0940721921133583223212180500077532431298433832388736330198673631\
|
661
|
+
2508581503502850494110642412413006178631087545427595823501050197\
|
662
|
+
6880877132399945421214298433563187193571267457433965110883897630\
|
663
|
+
1514122678489583087574339802329960288316221061594612915860282464\
|
664
|
+
6477150647269610878726287509531568836209909087170850054933375711\
|
665
|
+
4169765329150875277299737911463436952970866868642440087090506787\
|
666
|
+
5857643721298543747329634589332214829062724155722750086355049105
|
667
|
+
|
668
|
+
#define Z_SQUARE_ROOT_17 4.\
|
669
|
+
1231056256176605498214098559740770251471992253736204343986335730\
|
670
|
+
9495434633762159358786365081068429668454404093921414161530142084\
|
671
|
+
0415868363079548145746906977677023266436240863087790567572385708\
|
672
|
+
2255213807325630838603091427498046719135293221479787181678157964\
|
673
|
+
7590608056549697390076672138368921210670892102900552026497699722\
|
674
|
+
7788461399259924591373145657819254743622377232515783073400662476\
|
675
|
+
8914608949933141024362794433862805526374750609050808692574826754\
|
676
|
+
0375757692746463166635103309681712291987419586443197105470595848\
|
677
|
+
5725931943603620656058152613585046428067872150064104914222367522\
|
678
|
+
2434867372580470377712749985665712185704321003036026065064871546\
|
679
|
+
9069828154684645956450344184993059763950907861995904333420778303\
|
680
|
+
6732466105002383305603648597891517738125149725101393295630516977\
|
681
|
+
3961561344837040214695495172837747751283320867754324793019645038\
|
682
|
+
5894596773652195702235648129282323237309165004475570946016572174\
|
683
|
+
9143175547451122718361635317492475624065195560022755934398822460\
|
684
|
+
4515186239457694121228445234277642559126704332598083584929486998
|
685
|
+
|
686
|
+
#define Z_SQUARE_ROOT_18 4.\
|
687
|
+
2426406871192851464050661726290942357090156261308442195300392139\
|
688
|
+
7219743538632111655116260298292471820504153869273689107477450816\
|
689
|
+
7552211637932364491299807494239667997782516778267399851503458346\
|
690
|
+
1817144103286799148179108236037905860441855522559226675958286569\
|
691
|
+
8769145292614296435251928781088398575422396906176018963899542648\
|
692
|
+
8921861845775057185164237250863279885189506725661012595571034063\
|
693
|
+
1238102254965414811606999120970144450916320833709493627434692054\
|
694
|
+
7881075586474173538933479000613903904685570696171170586552779458\
|
695
|
+
3748493146265500261285705818044047416231430756462246697120903296\
|
696
|
+
1160679456341047576404862275424767971678006256753399564375196681\
|
697
|
+
8331127797754009341647394044712478903017845761120095594410265846\
|
698
|
+
9183487192313521791064394121956576835196612073527368310068082338\
|
699
|
+
2720881841487214326902512055109605105352177398094187182288990824\
|
700
|
+
1414269644711869915409804074232618878073745771565430133795264517\
|
701
|
+
7336074832402518559443431741081011323192754860794413051333505174\
|
702
|
+
9745180668259276149746456384688555465416269083901588674688648297
|
703
|
+
|
704
|
+
#define Z_SQUARE_ROOT_19 4.\
|
705
|
+
3588989435406735522369819838596156591370039252324449368903441381\
|
706
|
+
5955732820315808565615915585194452690565862129827421362958399278\
|
707
|
+
3826117012156560836417469900977752918879405890061996715663120740\
|
708
|
+
2231024023243567359810484091999315007271878765601001355045664223\
|
709
|
+
6597215798755072654740213348140339529383325316877083080148213289\
|
710
|
+
2551238612636799418213993270206440885128549665158595212562962839\
|
711
|
+
7050658074438389410005683926884800608708853847459490888521365568\
|
712
|
+
2897687595213123671741821514292631858005215674427058607461711815\
|
713
|
+
5313027391249683899068318958451783502733357016401652084179746424\
|
714
|
+
9119887199195969203059693282567695404609647987775117895043783641\
|
715
|
+
5092493623204442923896243349974708299840429604797134370576918442\
|
716
|
+
5627972643810658724900993631178508595844998222091790883188614272\
|
717
|
+
7181833978529354535768671044286487630521371921331655648231766597\
|
718
|
+
9345008389213635130240253829821964016254338391921650785627655996\
|
719
|
+
5090650060052816150475689600376677031529536405227933016338897672\
|
720
|
+
3371709651582983076636407988920374740815704060472903563584299215
|
721
|
+
|
722
|
+
#define Z_SQUARE_ROOT_20 0.4\
|
723
|
+
4721359549995793928183473374625524708812367192230514485417944908\
|
724
|
+
2104185127560979882882881675756454993901635230154756700850653544\
|
725
|
+
8894147727172720243066905417733556346383758331622553290645279713\
|
726
|
+
1610715227008350675700068467848281288841728650781945051852544577\
|
727
|
+
5259903480488136322355181781899698474278145945779696417728308537\
|
728
|
+
9788198263387154039497357768850179508265912366353842999954849603\
|
729
|
+
0608682300719153366650249976303562788160011248417104870844711122\
|
730
|
+
1261268564046818666396586791949270454240268349922840527180947577\
|
731
|
+
1008779374122271320091514279913191133913835129156443905000121078\
|
732
|
+
4624680100185735297510594441135325073321489717070105246613569892\
|
733
|
+
6684448463527455405326481536020888663165146701178619627245268639\
|
734
|
+
7372943893979940361637904852891924069044282384465825196392651622\
|
735
|
+
2083409916140962408069119898870137111037111450247772833100205248\
|
736
|
+
7262514204889923757884936580680894943223091144640347535318092183\
|
737
|
+
7059151207155968796108310761558128787279446057512125998964427704\
|
738
|
+
3546971849070302420926911100814144557448430695575058224242423686
|
739
|
+
|
740
|
+
#define Z_SQUARE_ROOT_21 4.\
|
741
|
+
5825756949558400065880471937280084889844565767679719026072421239\
|
742
|
+
0686842554777088660436155949344503267760090539758574087331189917\
|
743
|
+
0755601963573863362344755370281722824427798191940596904914344920\
|
744
|
+
0907589407063891768364965598654748231477641506627774586518102302\
|
745
|
+
3617481540081394241092573936592199391754224118467149808042185260\
|
746
|
+
7864914105576957812554767761302518635256936196112241897810062910\
|
747
|
+
4930136394500794769783448686170875778719949754100133598746930349\
|
748
|
+
7232710675634826547407841963209655321589895494373754264061908665\
|
749
|
+
0298094580890976956617810617911595220000768142485134230665143669\
|
750
|
+
5554446605650313382719148849087683899267628798139136482473790088\
|
751
|
+
8189170796483375176737417000297190682904936268171676523400834394\
|
752
|
+
2339309104876265524351270370284614919106272664101521171992383656\
|
753
|
+
8917367993395211009062164895819102794521088994407788913640625972\
|
754
|
+
4578658417328751486109851757581404328234441664632974490001787377\
|
755
|
+
2961869702397214029105976389008894920760202937832728984606379406\
|
756
|
+
5965444919348178013459962365934780900907742704128997390722047147
|
757
|
+
|
758
|
+
#define Z_SQUARE_ROOT_22 4.\
|
759
|
+
6904157598234295545656301135444662805882283534117371536057018910\
|
760
|
+
1702463275323972148211559606154313535459589666150860748165195244\
|
761
|
+
0782925621666958709181664447500641262161250754928188331862529999\
|
762
|
+
9547606735605004577761471186401246176232605036362090494527493856\
|
763
|
+
8281756795270303532693227571317120606062561691541530323494743550\
|
764
|
+
5309200200713172534601558297417528194918298027430089141037481791\
|
765
|
+
4120990984295018191164831945523178805176328354177778500806080498\
|
766
|
+
3518565354318050021673153166262609016615771045384513239925669691\
|
767
|
+
2783671255846108434988804201553172568680512142690822589008911929\
|
768
|
+
7301919366967756643487865411179999979426852739982780774547630300\
|
769
|
+
0579761472344263648399737905839299334981849660115492759940947126\
|
770
|
+
7706320024001816123943437823342252060261602573061333660063214842\
|
771
|
+
6550799462989785932504639612108923454456269629026365378382391889\
|
772
|
+
5594959128764376806042909687553399184617386068557664784079261917\
|
773
|
+
5504341699503617915696514044517092560612721096824920432766881292\
|
774
|
+
5020851744085369494907976490160054424569362473428698311315235875
|
775
|
+
|
776
|
+
#define Z_SQUARE_ROOT_23 4.\
|
777
|
+
7958315233127195415974380641626939199967070419041293464853091144\
|
778
|
+
4825723590746408249219144643691886061747456324573686513392890392\
|
779
|
+
1230265488845783794334079664727569671653494343978434561416798721\
|
780
|
+
3151199128895631880449641132459392571845949603945392600435614646\
|
781
|
+
0202152486503532934363086274731937668011877025054737708513330390\
|
782
|
+
3772090443266178015016833535830415070486401794767454104791880465\
|
783
|
+
7855465617661756852445057646538971125395858740433006194113747360\
|
784
|
+
9109976350633040762876386724156939220008934770208711136596906907\
|
785
|
+
1990861472258832971773823771307619381379694156308798460488452356\
|
786
|
+
9769990440305484325289322905572397161711567767993108038428496669\
|
787
|
+
0265902454607543365705389368190995394922917929701618373910486985\
|
788
|
+
6969068133822070893274626509746898482482517803749584860075661414\
|
789
|
+
0813637335815377083815895114543027468556805151334525399288480358\
|
790
|
+
2656451880775953716880018678299314916241332339317904053586692241\
|
791
|
+
7622541983641096572858498556893157253685192802209028187428956944\
|
792
|
+
4281562508597976297795059510410340787752350836307895023173926977
|
793
|
+
|
794
|
+
#define Z_SQUARE_ROOT_24 4.\
|
795
|
+
8989794855663561963945681494117827839318949613133402568653851345\
|
796
|
+
0192075491463005307971886620928046963718920245322837824971773091\
|
797
|
+
9675514683251567902474557105657825495055353142495260210541823540\
|
798
|
+
4469626213579733817072648867050912080676176178787491711356931494\
|
799
|
+
4872260828854054043234840367660016317961567602617940145738798726\
|
800
|
+
1674316188801600887477375098329029307878290024089452896266632587\
|
801
|
+
0218894836270265709900889323434532628509952966362490080231320907\
|
802
|
+
2918018687172335863967331332533818263813071727532210516312358732\
|
803
|
+
4723582205893441767091510257671059796648201117380410012830932248\
|
804
|
+
2347067988208621159857969346790651055747208365931034366078207356\
|
805
|
+
0076724633259464660565809954782094852720141025275395093777354012\
|
806
|
+
8198591185143465692900577618302885149260520590592647415105006845\
|
807
|
+
5119830908525625960061293441598848506045756852410681358957200931\
|
808
|
+
9387995987119508123342717309306912496416512553772738561882612744\
|
809
|
+
8670177296031449692674464894759090976288769586727401839482029557\
|
810
|
+
0465751182126319692156620734019070649452846334283775172474830130
|
811
|
+
|
812
|
+
#define Z_SQUARE_ROOT_26 5.\
|
813
|
+
0990195135927848300282241090227819895637709460995964075849708044\
|
814
|
+
2593363206222419558834885109393200836119025824103991066143177934\
|
815
|
+
1121536299802772626119936813352008233924081586515180609436925028\
|
816
|
+
7447030884686971127028666876703708002538306916010980296796499813\
|
817
|
+
3725782012085081891373043872791237919529532543918015594903365133\
|
818
|
+
4616416621229877754192034707329287784925030350480663776842369164\
|
819
|
+
2206608812846886072692694659774903784270665608067219846088576469\
|
820
|
+
8177000874159382968970286250298437303308342881274293440653810033\
|
821
|
+
7555839668996596880738823334427411886019717837418375236363862704\
|
822
|
+
9538870426232971817793074424158421655398904669052096083958472252\
|
823
|
+
7934332766274069417122115976356457683023641465745914071502665841\
|
824
|
+
3008179744209425479832568063295040590668891451247346186873076700\
|
825
|
+
8181285605275121624649596800874882281186312691873623153426977207\
|
826
|
+
0381441088553192015422188300606801606467615769284725052746178827\
|
827
|
+
1991760051314186821205851032521784571148355455157794144107701300\
|
828
|
+
0658025436220535414630301094467472349730560558777566650504471075
|
829
|
+
|
830
|
+
#define Z_SQUARE_ROOT_27 5.\
|
831
|
+
1961524227066318805823390245176171008284157614311418841674209383\
|
832
|
+
5579905072640011124343856027174572702687842424622010908990983528\
|
833
|
+
4996857436434966536283120945584279695706916746203924460303254024\
|
834
|
+
7697950459370298007099686599520167640067655139136811413949811035\
|
835
|
+
8476405714995961213957816840295104251972815226985504438881830284\
|
836
|
+
2806561570975249437488571879498993369473524866143391498752041672\
|
837
|
+
4919537635661930038741914550609983325295213426831349483062649165\
|
838
|
+
7470501007056213343286608797286909739126150549421869847988945284\
|
839
|
+
9062359225811966216092612746951953494187978949023516108631161740\
|
840
|
+
1086899363111217920577473203046935978651269234242660502282563071\
|
841
|
+
1898281249317969537842796299286669338844351387517068656455871072\
|
842
|
+
8101558424193145917033983179069168618595792461467994095260063586\
|
843
|
+
4524658353235438596035211055749500500678832464425382138314319992\
|
844
|
+
8878050388873231508568533038144591624092963794735536565292613704\
|
845
|
+
1641994885735886668871331665728771169576593214787684894406526098\
|
846
|
+
5611500488159488357511492165091864878144372730155601208993777326
|
847
|
+
|
848
|
+
#define Z_SQUARE_ROOT_28 5.\
|
849
|
+
2915026221291811810032315072785208514205183661649003607366689184\
|
850
|
+
0213764646056725552078577294908722123012915667699492619148705977\
|
851
|
+
7254429568854781111760215445434301459456647784599379189730174521\
|
852
|
+
4019561084074476560474318822006838782320031570511926118914820703\
|
853
|
+
0479360543281474759814808316303980880694863890734279946119401010\
|
854
|
+
2799384475091232194238054756309983266576575408001315141349303926\
|
855
|
+
9955041675876362292261817529475731912486611598959625632646141096\
|
856
|
+
7300215431235892722383106909072954989641186180989699668067978004\
|
857
|
+
2095723334665590073878492451434107432985157509664581464985342693\
|
858
|
+
9605978998160754965022184557911377958396176296681816633705026707\
|
859
|
+
1659078344423541428829949153814163978888882917944569482800607004\
|
860
|
+
7064074389741476525863703872818166456119292556752204391958839417\
|
861
|
+
8192709391722682363586135632427216982033556706425112669269800437\
|
862
|
+
9629208451185900733912483738547465543004417504619932939626406425\
|
863
|
+
6378909571360419012719248932571001523810082787008948742469770446\
|
864
|
+
6554725020090119242161344669396240008601028980502412514623518230
|
865
|
+
|
866
|
+
#define Z_SQUARE_ROOT_29 5.\
|
867
|
+
3851648071345040312507104915403295562951201616447888376803886700\
|
868
|
+
1664596282765869287663378167983548441870482179394576060768862140\
|
869
|
+
1981555626953216728208924528671722526185214681235990013052448016\
|
870
|
+
2903887045278269438713694073940103168871959102567772596508381141\
|
871
|
+
9495584193980826348969417532613403641636123108887427654955512364\
|
872
|
+
7940365882555182273444125300757917124198604125931023584561198054\
|
873
|
+
4795418813126253107293509901068873371670605812467416799303885413\
|
874
|
+
8123742479087954547432014922688011360464232071011737861539855585\
|
875
|
+
7102081717617603810395080111264836278444280815314492214121131843\
|
876
|
+
6341076396213737228822837938481149242915346920084913077991373969\
|
877
|
+
7089097190833461405997944064288657397292411152297722381325560371\
|
878
|
+
7907312501357326363233051587278665098784329901442053725629656985\
|
879
|
+
9172449839218439790049969327370087099206683073256802774244092317\
|
880
|
+
5715419607139287353485337048180789528095729186886136682895069025\
|
881
|
+
3666940455803261056985599438152074440985243814914009730255209859\
|
882
|
+
5681681929637748409740639130952795240525758914068872104537046989
|
883
|
+
|
884
|
+
#define Z_SQUARE_ROOT_E 1.\
|
885
|
+
64872127070012814684865078781416357165377610071014801157507
|
886
|
+
|
887
|
+
#define Z_SQUARE_ROOT_PI 1.\
|
888
|
+
7724538509055160272981674833411451827975494561223871282138077898\
|
889
|
+
5291128459103218137495065673854466541622682362428257066623615286\
|
890
|
+
5724422602525093709602787068462037698653105122849925173028950826\
|
891
|
+
2289320953792679628001746390153514797205167001901852340185854469\
|
892
|
+
7449491264031392177552590621640541933250090639840761373347747515\
|
893
|
+
3433667989789365851836408795451165161738760059067393431791332809\
|
894
|
+
8548462481849020546548521956132515616474675150427387610561079961\
|
895
|
+
2710721006037204448367236529661370809432349883166842421384570960\
|
896
|
+
9120420427785778068694766570005218305685125413396636944654181510\
|
897
|
+
7166938833219429293570622688652244205421499480499207564863988748\
|
898
|
+
3850593064021821402928581123306497894520362114907896228738940324\
|
899
|
+
5978198513134871266512506293260044656382109675026812496930595420\
|
900
|
+
4615607619522173915250702077927580990543329006622230676144696612\
|
901
|
+
4818874306997883520506146444385418530797357425717918563595974995\
|
902
|
+
9952263849242203889103966406447293972841345043002140564233433039\
|
903
|
+
26175613417633632001703765416347632066927654181283576249032690
|
904
|
+
|
905
|
+
#define Z_CUBE_ROOT_2 1.\
|
906
|
+
2599210498948731647672106072782283505702514647015079800819751121\
|
907
|
+
5529967651395948372939656243625509415431025603561566525939902404\
|
908
|
+
0613737228459110304269355246960642616625000977474526565480306867\
|
909
|
+
1854055186892458725167641993737096950983827831613991551293136953\
|
910
|
+
6618394746344857657030311909589598474110598116290705359081647801\
|
911
|
+
1473521325484771297880242208582053257972526662202669005665608199\
|
912
|
+
4715628176405060664826773572670419486207621442965694205079319172\
|
913
|
+
4414809204482328401274703219642820812019057141889964599983175038\
|
914
|
+
0188868959420205592202115472997384880260736369741788779215798467\
|
915
|
+
5099539630078260959624203483238660139857363433909737126527995991\
|
916
|
+
9699683779131681681544288502796515292781076797140020406056748039\
|
917
|
+
3856125171835700690798499634197629147404483454026971547622851317\
|
918
|
+
8020643878047649322579052898467085805286258130005429388560720609\
|
919
|
+
7472230406313572349364584065759169169167270601244028967000010690\
|
920
|
+
8103531385290270041508423233623988938649678219414983802707295717\
|
921
|
+
6812879001445746227147702348357151905506722084818485009287239209
|
922
|
+
|
923
|
+
#define Z_CUBE_ROOT_3 1.\
|
924
|
+
4422495703074083823216383107801095883918692534993505775464161945\
|
925
|
+
4168759682999733985475547970564525668683508085448954996642542394\
|
926
|
+
6110259714868950157185237227090332023847598445061085540027260088\
|
927
|
+
1454988727513673553524678660747156884392233189182017038998238223\
|
928
|
+
3212961663550852626734913350166545489578817585527417559336313187\
|
929
|
+
4146720060463846664756937436419755574942490682081094267123590626\
|
930
|
+
5763689646373616178216558425874823856595235871903196104071395306\
|
931
|
+
0281028535084436380351945501338091522239078498975091939480365311\
|
932
|
+
9674345706233811941118355657692483200123107015915332930042827066\
|
933
|
+
6394443820480019012241818057851180278635499201489352352796818010\
|
934
|
+
9006236835327970373724614565173415353390990467105304156937690305\
|
935
|
+
1494958995216166591166333801954227266482814311818441716553576688\
|
936
|
+
1832140589503272799127928026983572135676304667631409826930968622\
|
937
|
+
4764941404644842887133087994684187000204561876902750330462036656\
|
938
|
+
4440717909119698039747478883802670722844748159482087239611601227\
|
939
|
+
1067171066612781813201108139530097227226661910705939909901191206
|
940
|
+
|
941
|
+
#define Z_TWELFTH_ROOT_2 1.\
|
942
|
+
0594630943592952645618252949463417007792043174941856285592084314\
|
943
|
+
5876164606325572238376837686394556900774076432638281736624173752\
|
944
|
+
0827851039644723985114271115432990470239714933804165425687642097\
|
945
|
+
6329379895947129709947064800938991173847686705520689400326781575\
|
946
|
+
1383303231319955390959014587484595500681806521772802362810455571\
|
947
|
+
3869553201754802640057179595879584537567829830020977379250053687\
|
948
|
+
4403398881937606323435254399006328830846125529480888721482330441\
|
949
|
+
4074184893108198509249979986687035709497917584337029863023761262\
|
950
|
+
5173981919008919366931298054535197982705358773565786048226460447\
|
951
|
+
3090968624372596272293682528044863570700171131799931049836732088\
|
952
|
+
9886403556920267157664120910549625751449398108864973818515174409\
|
953
|
+
2025177988784831666892332928201939743642078982338822600070557879\
|
954
|
+
0103964696887044937701555993149379866153352257152374614051434715\
|
955
|
+
9095506342399653920121443555462612297570882130516983593531956991\
|
956
|
+
7044
|
957
|
+
|
958
|
+
/* MARK: - Integer constants */
|
959
|
+
|
960
|
+
#define Z_CARMACK_NUMBER 0x5F3759DF
|
961
|
+
#define Z_LOMONT_NUMBER 0x5F375A86
|
962
|
+
|
963
|
+
#endif /* _Z_constants_numbers_H_ */
|