pythonknot 0.1.1__tar.gz → 0.1.2__tar.gz
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.
- pythonknot-0.1.2/MANIFEST.in +2 -0
- {pythonknot-0.1.1 → pythonknot-0.1.2}/PKG-INFO +1 -1
- {pythonknot-0.1.1 → pythonknot-0.1.2}/setup.py +2 -1
- pythonknot-0.1.2/src/cpp_module/CMakeLists.txt +82 -0
- pythonknot-0.1.2/src/cpp_module/build/CMakeFiles/3.16.3/CompilerIdCXX/CMakeCXXCompilerId.cpp +660 -0
- pythonknot-0.1.2/src/cpp_module/cln/autoconf/cl_config.h +159 -0
- pythonknot-0.1.2/src/cpp_module/cln/build/include/cln/GV.h +350 -0
- pythonknot-0.1.2/src/cpp_module/cln/build/include/cln/GV_complex.h +58 -0
- pythonknot-0.1.2/src/cpp_module/cln/build/include/cln/GV_integer.h +91 -0
- pythonknot-0.1.2/src/cpp_module/cln/build/include/cln/GV_modinteger.h +51 -0
- pythonknot-0.1.2/src/cpp_module/cln/build/include/cln/GV_number.h +55 -0
- pythonknot-0.1.2/src/cpp_module/cln/build/include/cln/GV_rational.h +58 -0
- pythonknot-0.1.2/src/cpp_module/cln/build/include/cln/GV_real.h +58 -0
- pythonknot-0.1.2/src/cpp_module/cln/build/include/cln/SV.h +217 -0
- pythonknot-0.1.2/src/cpp_module/cln/build/include/cln/SV_complex.h +54 -0
- pythonknot-0.1.2/src/cpp_module/cln/build/include/cln/SV_integer.h +51 -0
- pythonknot-0.1.2/src/cpp_module/cln/build/include/cln/SV_number.h +67 -0
- pythonknot-0.1.2/src/cpp_module/cln/build/include/cln/SV_rational.h +54 -0
- pythonknot-0.1.2/src/cpp_module/cln/build/include/cln/SV_real.h +54 -0
- pythonknot-0.1.2/src/cpp_module/cln/build/include/cln/SV_ringelt.h +72 -0
- pythonknot-0.1.2/src/cpp_module/cln/build/include/cln/V.h +23 -0
- pythonknot-0.1.2/src/cpp_module/cln/build/include/cln/cln.h +141 -0
- pythonknot-0.1.2/src/cpp_module/cln/build/include/cln/complex.h +157 -0
- pythonknot-0.1.2/src/cpp_module/cln/build/include/cln/complex_class.h +76 -0
- pythonknot-0.1.2/src/cpp_module/cln/build/include/cln/complex_io.h +48 -0
- pythonknot-0.1.2/src/cpp_module/cln/build/include/cln/complex_ring.h +26 -0
- pythonknot-0.1.2/src/cpp_module/cln/build/include/cln/condition.h +39 -0
- pythonknot-0.1.2/src/cpp_module/cln/build/include/cln/config.h +28 -0
- pythonknot-0.1.2/src/cpp_module/cln/build/include/cln/dfloat.h +326 -0
- pythonknot-0.1.2/src/cpp_module/cln/build/include/cln/dfloat_class.h +75 -0
- pythonknot-0.1.2/src/cpp_module/cln/build/include/cln/dfloat_io.h +31 -0
- pythonknot-0.1.2/src/cpp_module/cln/build/include/cln/exception.h +40 -0
- pythonknot-0.1.2/src/cpp_module/cln/build/include/cln/ffloat.h +329 -0
- pythonknot-0.1.2/src/cpp_module/cln/build/include/cln/ffloat_class.h +85 -0
- pythonknot-0.1.2/src/cpp_module/cln/build/include/cln/ffloat_io.h +31 -0
- pythonknot-0.1.2/src/cpp_module/cln/build/include/cln/float.h +754 -0
- pythonknot-0.1.2/src/cpp_module/cln/build/include/cln/float_class.h +52 -0
- pythonknot-0.1.2/src/cpp_module/cln/build/include/cln/float_io.h +81 -0
- pythonknot-0.1.2/src/cpp_module/cln/build/include/cln/floatformat.h +21 -0
- pythonknot-0.1.2/src/cpp_module/cln/build/include/cln/host_cpu.h +84 -0
- pythonknot-0.1.2/src/cpp_module/cln/build/include/cln/input.h +61 -0
- pythonknot-0.1.2/src/cpp_module/cln/build/include/cln/integer.h +666 -0
- pythonknot-0.1.2/src/cpp_module/cln/build/include/cln/integer_class.h +69 -0
- pythonknot-0.1.2/src/cpp_module/cln/build/include/cln/integer_io.h +105 -0
- pythonknot-0.1.2/src/cpp_module/cln/build/include/cln/integer_ring.h +26 -0
- pythonknot-0.1.2/src/cpp_module/cln/build/include/cln/intparam.h +94 -0
- pythonknot-0.1.2/src/cpp_module/cln/build/include/cln/io.h +89 -0
- pythonknot-0.1.2/src/cpp_module/cln/build/include/cln/lfloat.h +433 -0
- pythonknot-0.1.2/src/cpp_module/cln/build/include/cln/lfloat_class.h +73 -0
- pythonknot-0.1.2/src/cpp_module/cln/build/include/cln/lfloat_io.h +31 -0
- pythonknot-0.1.2/src/cpp_module/cln/build/include/cln/malloc.h +17 -0
- pythonknot-0.1.2/src/cpp_module/cln/build/include/cln/modinteger.h +466 -0
- pythonknot-0.1.2/src/cpp_module/cln/build/include/cln/modules.h +37 -0
- pythonknot-0.1.2/src/cpp_module/cln/build/include/cln/null_ring.h +24 -0
- pythonknot-0.1.2/src/cpp_module/cln/build/include/cln/number.h +308 -0
- pythonknot-0.1.2/src/cpp_module/cln/build/include/cln/number_io.h +42 -0
- pythonknot-0.1.2/src/cpp_module/cln/build/include/cln/numtheory.h +90 -0
- pythonknot-0.1.2/src/cpp_module/cln/build/include/cln/object.h +550 -0
- pythonknot-0.1.2/src/cpp_module/cln/build/include/cln/output.h +74 -0
- pythonknot-0.1.2/src/cpp_module/cln/build/include/cln/proplist.h +55 -0
- pythonknot-0.1.2/src/cpp_module/cln/build/include/cln/random.h +55 -0
- pythonknot-0.1.2/src/cpp_module/cln/build/include/cln/rational.h +357 -0
- pythonknot-0.1.2/src/cpp_module/cln/build/include/cln/rational_class.h +71 -0
- pythonknot-0.1.2/src/cpp_module/cln/build/include/cln/rational_io.h +78 -0
- pythonknot-0.1.2/src/cpp_module/cln/build/include/cln/rational_ring.h +26 -0
- pythonknot-0.1.2/src/cpp_module/cln/build/include/cln/real.h +637 -0
- pythonknot-0.1.2/src/cpp_module/cln/build/include/cln/real_class.h +76 -0
- pythonknot-0.1.2/src/cpp_module/cln/build/include/cln/real_io.h +57 -0
- pythonknot-0.1.2/src/cpp_module/cln/build/include/cln/real_ring.h +27 -0
- pythonknot-0.1.2/src/cpp_module/cln/build/include/cln/ring.h +464 -0
- pythonknot-0.1.2/src/cpp_module/cln/build/include/cln/sfloat.h +300 -0
- pythonknot-0.1.2/src/cpp_module/cln/build/include/cln/sfloat_class.h +45 -0
- pythonknot-0.1.2/src/cpp_module/cln/build/include/cln/sfloat_io.h +31 -0
- pythonknot-0.1.2/src/cpp_module/cln/build/include/cln/string.h +172 -0
- pythonknot-0.1.2/src/cpp_module/cln/build/include/cln/symbol.h +48 -0
- pythonknot-0.1.2/src/cpp_module/cln/build/include/cln/timing.h +78 -0
- pythonknot-0.1.2/src/cpp_module/cln/build/include/cln/types.h +188 -0
- pythonknot-0.1.2/src/cpp_module/cln/build/include/cln/univpoly.h +733 -0
- pythonknot-0.1.2/src/cpp_module/cln/build/include/cln/univpoly_complex.h +228 -0
- pythonknot-0.1.2/src/cpp_module/cln/build/include/cln/univpoly_integer.h +233 -0
- pythonknot-0.1.2/src/cpp_module/cln/build/include/cln/univpoly_modint.h +217 -0
- pythonknot-0.1.2/src/cpp_module/cln/build/include/cln/univpoly_rational.h +232 -0
- pythonknot-0.1.2/src/cpp_module/cln/build/include/cln/univpoly_real.h +228 -0
- pythonknot-0.1.2/src/cpp_module/cln/build/include/cln/version.h +27 -0
- pythonknot-0.1.2/src/cpp_module/cln/include/cln/GV.h +350 -0
- pythonknot-0.1.2/src/cpp_module/cln/include/cln/GV_complex.h +58 -0
- pythonknot-0.1.2/src/cpp_module/cln/include/cln/GV_integer.h +91 -0
- pythonknot-0.1.2/src/cpp_module/cln/include/cln/GV_modinteger.h +51 -0
- pythonknot-0.1.2/src/cpp_module/cln/include/cln/GV_number.h +55 -0
- pythonknot-0.1.2/src/cpp_module/cln/include/cln/GV_rational.h +58 -0
- pythonknot-0.1.2/src/cpp_module/cln/include/cln/GV_real.h +58 -0
- pythonknot-0.1.2/src/cpp_module/cln/include/cln/SV.h +217 -0
- pythonknot-0.1.2/src/cpp_module/cln/include/cln/SV_complex.h +54 -0
- pythonknot-0.1.2/src/cpp_module/cln/include/cln/SV_integer.h +51 -0
- pythonknot-0.1.2/src/cpp_module/cln/include/cln/SV_number.h +67 -0
- pythonknot-0.1.2/src/cpp_module/cln/include/cln/SV_rational.h +54 -0
- pythonknot-0.1.2/src/cpp_module/cln/include/cln/SV_real.h +54 -0
- pythonknot-0.1.2/src/cpp_module/cln/include/cln/SV_ringelt.h +72 -0
- pythonknot-0.1.2/src/cpp_module/cln/include/cln/V.h +23 -0
- pythonknot-0.1.2/src/cpp_module/cln/include/cln/cln.h +141 -0
- pythonknot-0.1.2/src/cpp_module/cln/include/cln/complex.h +157 -0
- pythonknot-0.1.2/src/cpp_module/cln/include/cln/complex_class.h +76 -0
- pythonknot-0.1.2/src/cpp_module/cln/include/cln/complex_io.h +48 -0
- pythonknot-0.1.2/src/cpp_module/cln/include/cln/complex_ring.h +26 -0
- pythonknot-0.1.2/src/cpp_module/cln/include/cln/condition.h +39 -0
- pythonknot-0.1.2/src/cpp_module/cln/include/cln/config.h +28 -0
- pythonknot-0.1.2/src/cpp_module/cln/include/cln/dfloat.h +326 -0
- pythonknot-0.1.2/src/cpp_module/cln/include/cln/dfloat_class.h +75 -0
- pythonknot-0.1.2/src/cpp_module/cln/include/cln/dfloat_io.h +31 -0
- pythonknot-0.1.2/src/cpp_module/cln/include/cln/exception.h +40 -0
- pythonknot-0.1.2/src/cpp_module/cln/include/cln/ffloat.h +329 -0
- pythonknot-0.1.2/src/cpp_module/cln/include/cln/ffloat_class.h +85 -0
- pythonknot-0.1.2/src/cpp_module/cln/include/cln/ffloat_io.h +31 -0
- pythonknot-0.1.2/src/cpp_module/cln/include/cln/float.h +754 -0
- pythonknot-0.1.2/src/cpp_module/cln/include/cln/float_class.h +52 -0
- pythonknot-0.1.2/src/cpp_module/cln/include/cln/float_io.h +81 -0
- pythonknot-0.1.2/src/cpp_module/cln/include/cln/floatformat.h +21 -0
- pythonknot-0.1.2/src/cpp_module/cln/include/cln/floatparam.h +26 -0
- pythonknot-0.1.2/src/cpp_module/cln/include/cln/host_cpu.h +84 -0
- pythonknot-0.1.2/src/cpp_module/cln/include/cln/input.h +61 -0
- pythonknot-0.1.2/src/cpp_module/cln/include/cln/integer.h +666 -0
- pythonknot-0.1.2/src/cpp_module/cln/include/cln/integer_class.h +69 -0
- pythonknot-0.1.2/src/cpp_module/cln/include/cln/integer_io.h +105 -0
- pythonknot-0.1.2/src/cpp_module/cln/include/cln/integer_ring.h +26 -0
- pythonknot-0.1.2/src/cpp_module/cln/include/cln/intparam.h +94 -0
- pythonknot-0.1.2/src/cpp_module/cln/include/cln/io.h +89 -0
- pythonknot-0.1.2/src/cpp_module/cln/include/cln/lfloat.h +433 -0
- pythonknot-0.1.2/src/cpp_module/cln/include/cln/lfloat_class.h +73 -0
- pythonknot-0.1.2/src/cpp_module/cln/include/cln/lfloat_io.h +31 -0
- pythonknot-0.1.2/src/cpp_module/cln/include/cln/malloc.h +17 -0
- pythonknot-0.1.2/src/cpp_module/cln/include/cln/modinteger.h +466 -0
- pythonknot-0.1.2/src/cpp_module/cln/include/cln/modules.h +37 -0
- pythonknot-0.1.2/src/cpp_module/cln/include/cln/null_ring.h +24 -0
- pythonknot-0.1.2/src/cpp_module/cln/include/cln/number.h +308 -0
- pythonknot-0.1.2/src/cpp_module/cln/include/cln/number_io.h +42 -0
- pythonknot-0.1.2/src/cpp_module/cln/include/cln/numtheory.h +90 -0
- pythonknot-0.1.2/src/cpp_module/cln/include/cln/object.h +550 -0
- pythonknot-0.1.2/src/cpp_module/cln/include/cln/output.h +74 -0
- pythonknot-0.1.2/src/cpp_module/cln/include/cln/proplist.h +55 -0
- pythonknot-0.1.2/src/cpp_module/cln/include/cln/random.h +55 -0
- pythonknot-0.1.2/src/cpp_module/cln/include/cln/rational.h +357 -0
- pythonknot-0.1.2/src/cpp_module/cln/include/cln/rational_class.h +71 -0
- pythonknot-0.1.2/src/cpp_module/cln/include/cln/rational_io.h +78 -0
- pythonknot-0.1.2/src/cpp_module/cln/include/cln/rational_ring.h +26 -0
- pythonknot-0.1.2/src/cpp_module/cln/include/cln/real.h +637 -0
- pythonknot-0.1.2/src/cpp_module/cln/include/cln/real_class.h +76 -0
- pythonknot-0.1.2/src/cpp_module/cln/include/cln/real_io.h +57 -0
- pythonknot-0.1.2/src/cpp_module/cln/include/cln/real_ring.h +27 -0
- pythonknot-0.1.2/src/cpp_module/cln/include/cln/ring.h +464 -0
- pythonknot-0.1.2/src/cpp_module/cln/include/cln/sfloat.h +300 -0
- pythonknot-0.1.2/src/cpp_module/cln/include/cln/sfloat_class.h +45 -0
- pythonknot-0.1.2/src/cpp_module/cln/include/cln/sfloat_io.h +31 -0
- pythonknot-0.1.2/src/cpp_module/cln/include/cln/string.h +172 -0
- pythonknot-0.1.2/src/cpp_module/cln/include/cln/symbol.h +48 -0
- pythonknot-0.1.2/src/cpp_module/cln/include/cln/timing.h +78 -0
- pythonknot-0.1.2/src/cpp_module/cln/include/cln/types.h +188 -0
- pythonknot-0.1.2/src/cpp_module/cln/include/cln/univpoly.h +733 -0
- pythonknot-0.1.2/src/cpp_module/cln/include/cln/univpoly_complex.h +228 -0
- pythonknot-0.1.2/src/cpp_module/cln/include/cln/univpoly_integer.h +233 -0
- pythonknot-0.1.2/src/cpp_module/cln/include/cln/univpoly_modint.h +217 -0
- pythonknot-0.1.2/src/cpp_module/cln/include/cln/univpoly_rational.h +232 -0
- pythonknot-0.1.2/src/cpp_module/cln/include/cln/univpoly_real.h +228 -0
- pythonknot-0.1.2/src/cpp_module/cln/include/cln/version.h +27 -0
- pythonknot-0.1.2/src/cpp_module/cln/src/base/cl_N.h +22 -0
- pythonknot-0.1.2/src/cpp_module/cln/src/base/cl_alloca.h +88 -0
- pythonknot-0.1.2/src/cpp_module/cln/src/base/cl_base_config.h +22 -0
- pythonknot-0.1.2/src/cpp_module/cln/src/base/cl_gmpconfig.h +17 -0
- pythonknot-0.1.2/src/cpp_module/cln/src/base/cl_inline.h +8 -0
- pythonknot-0.1.2/src/cpp_module/cln/src/base/cl_inline2.h +8 -0
- pythonknot-0.1.2/src/cpp_module/cln/src/base/cl_iterator.h +28 -0
- pythonknot-0.1.2/src/cpp_module/cln/src/base/cl_low.h +1614 -0
- pythonknot-0.1.2/src/cpp_module/cln/src/base/cl_macros.h +260 -0
- pythonknot-0.1.2/src/cpp_module/cln/src/base/cl_maybe_inline.h +133 -0
- pythonknot-0.1.2/src/cpp_module/cln/src/base/cl_offsetof.h +20 -0
- pythonknot-0.1.2/src/cpp_module/cln/src/base/cl_sysdep.h +64 -0
- pythonknot-0.1.2/src/cpp_module/cln/src/base/cl_xmacros.h +13 -0
- pythonknot-0.1.2/src/cpp_module/cln/src/base/digit/cl_2D.h +44 -0
- pythonknot-0.1.2/src/cpp_module/cln/src/base/digit/cl_D.h +226 -0
- pythonknot-0.1.2/src/cpp_module/cln/src/base/digitseq/cl_2DS.h +31 -0
- pythonknot-0.1.2/src/cpp_module/cln/src/base/digitseq/cl_DS.h +2689 -0
- pythonknot-0.1.2/src/cpp_module/cln/src/base/digitseq/cl_DS_endian.h +21 -0
- pythonknot-0.1.2/src/cpp_module/cln/src/base/digitseq/cl_DS_mul_fftc.h +1102 -0
- pythonknot-0.1.2/src/cpp_module/cln/src/base/digitseq/cl_DS_mul_fftcs.h +1152 -0
- pythonknot-0.1.2/src/cpp_module/cln/src/base/digitseq/cl_DS_mul_fftm.h +654 -0
- pythonknot-0.1.2/src/cpp_module/cln/src/base/digitseq/cl_DS_mul_fftp.h +823 -0
- pythonknot-0.1.2/src/cpp_module/cln/src/base/digitseq/cl_DS_mul_fftp3.h +672 -0
- pythonknot-0.1.2/src/cpp_module/cln/src/base/digitseq/cl_DS_mul_fftp3m.h +858 -0
- pythonknot-0.1.2/src/cpp_module/cln/src/base/digitseq/cl_DS_mul_fftr.h +1139 -0
- pythonknot-0.1.2/src/cpp_module/cln/src/base/digitseq/cl_DS_mul_kara.h +259 -0
- pythonknot-0.1.2/src/cpp_module/cln/src/base/digitseq/cl_DS_mul_kara_sqr.h +81 -0
- pythonknot-0.1.2/src/cpp_module/cln/src/base/digitseq/cl_DS_mul_nuss.h +1511 -0
- pythonknot-0.1.2/src/cpp_module/cln/src/base/digitseq/cl_asm.h +36 -0
- pythonknot-0.1.2/src/cpp_module/cln/src/base/digitseq/cl_asm_arm.h +10 -0
- pythonknot-0.1.2/src/cpp_module/cln/src/base/digitseq/cl_asm_hppa.h +2 -0
- pythonknot-0.1.2/src/cpp_module/cln/src/base/digitseq/cl_asm_i386.h +11 -0
- pythonknot-0.1.2/src/cpp_module/cln/src/base/digitseq/cl_asm_m68k.h +11 -0
- pythonknot-0.1.2/src/cpp_module/cln/src/base/digitseq/cl_asm_mips.h +8 -0
- pythonknot-0.1.2/src/cpp_module/cln/src/base/digitseq/cl_asm_sparc.h +11 -0
- pythonknot-0.1.2/src/cpp_module/cln/src/base/digitseq/cl_asm_sparc64.h +10 -0
- pythonknot-0.1.2/src/cpp_module/cln/src/base/hash/cl_hash.h +185 -0
- pythonknot-0.1.2/src/cpp_module/cln/src/base/hash/cl_hash1.h +157 -0
- pythonknot-0.1.2/src/cpp_module/cln/src/base/hash/cl_hash1weak.h +97 -0
- pythonknot-0.1.2/src/cpp_module/cln/src/base/hash/cl_hash2.h +163 -0
- pythonknot-0.1.2/src/cpp_module/cln/src/base/hash/cl_hash2weak.h +97 -0
- pythonknot-0.1.2/src/cpp_module/cln/src/base/hash/cl_hashset.h +150 -0
- pythonknot-0.1.2/src/cpp_module/cln/src/base/hash/cl_hashuniq.h +158 -0
- pythonknot-0.1.2/src/cpp_module/cln/src/base/hash/cl_hashuniqweak.h +97 -0
- pythonknot-0.1.2/src/cpp_module/cln/src/base/hash/cl_rcpointer2_hashweak_rcpointer.h +48 -0
- pythonknot-0.1.2/src/cpp_module/cln/src/base/hash/cl_rcpointer_hashweak_rcpointer.h +43 -0
- pythonknot-0.1.2/src/cpp_module/cln/src/base/random/cl_random_impl.h +26 -0
- pythonknot-0.1.2/src/cpp_module/cln/src/base/string/cl_spushstring.h +65 -0
- pythonknot-0.1.2/src/cpp_module/cln/src/base/string/cl_sstring.h +14 -0
- pythonknot-0.1.2/src/cpp_module/cln/src/base/string/cl_st_make0.h +11 -0
- pythonknot-0.1.2/src/cpp_module/cln/src/complex/cl_C.h +193 -0
- pythonknot-0.1.2/src/cpp_module/cln/src/float/cl_F.h +276 -0
- pythonknot-0.1.2/src/cpp_module/cln/src/float/dfloat/cl_DF.h +321 -0
- pythonknot-0.1.2/src/cpp_module/cln/src/float/ffloat/cl_FF.h +249 -0
- pythonknot-0.1.2/src/cpp_module/cln/src/float/lfloat/cl_LF.h +150 -0
- pythonknot-0.1.2/src/cpp_module/cln/src/float/lfloat/cl_LF_impl.h +153 -0
- pythonknot-0.1.2/src/cpp_module/cln/src/float/sfloat/cl_SF.h +137 -0
- pythonknot-0.1.2/src/cpp_module/cln/src/float/transcendental/cl_F_catalanconst_var.h +29 -0
- pythonknot-0.1.2/src/cpp_module/cln/src/float/transcendental/cl_F_eulerconst_var.h +29 -0
- pythonknot-0.1.2/src/cpp_module/cln/src/float/transcendental/cl_F_exp1_var.h +29 -0
- pythonknot-0.1.2/src/cpp_module/cln/src/float/transcendental/cl_F_ln10_var.h +29 -0
- pythonknot-0.1.2/src/cpp_module/cln/src/float/transcendental/cl_F_ln2_var.h +29 -0
- pythonknot-0.1.2/src/cpp_module/cln/src/float/transcendental/cl_F_pi_var.h +29 -0
- pythonknot-0.1.2/src/cpp_module/cln/src/float/transcendental/cl_F_tran.h +149 -0
- pythonknot-0.1.2/src/cpp_module/cln/src/float/transcendental/cl_LF_tran.h +335 -0
- pythonknot-0.1.2/src/cpp_module/cln/src/integer/bitwise/cl_I_byte.h +33 -0
- pythonknot-0.1.2/src/cpp_module/cln/src/integer/bitwise/cl_I_log.h +38 -0
- pythonknot-0.1.2/src/cpp_module/cln/src/integer/cl_I.h +764 -0
- pythonknot-0.1.2/src/cpp_module/cln/src/integer/conv/cl_I_cached_power.h +47 -0
- pythonknot-0.1.2/src/cpp_module/cln/src/integer/hash/cl_I_hash_gcobject.h +35 -0
- pythonknot-0.1.2/src/cpp_module/cln/src/integer/hash/cl_I_hash_gcpointer.h +35 -0
- pythonknot-0.1.2/src/cpp_module/cln/src/integer/hash/cl_I_hash_pointer.h +35 -0
- pythonknot-0.1.2/src/cpp_module/cln/src/integer/hash/cl_I_hash_rcobject.h +35 -0
- pythonknot-0.1.2/src/cpp_module/cln/src/integer/hash/cl_I_hash_rcpointer.h +35 -0
- pythonknot-0.1.2/src/cpp_module/cln/src/integer/hash/cl_I_hashweak_rcpointer.h +35 -0
- pythonknot-0.1.2/src/cpp_module/cln/src/integer/misc/combin/cl_I_combin.h +17 -0
- pythonknot-0.1.2/src/cpp_module/cln/src/modinteger/cl_MI.h +14 -0
- pythonknot-0.1.2/src/cpp_module/cln/src/modinteger/cl_MI_fix16.h +91 -0
- pythonknot-0.1.2/src/cpp_module/cln/src/modinteger/cl_MI_fix29.h +98 -0
- pythonknot-0.1.2/src/cpp_module/cln/src/modinteger/cl_MI_fix32.h +100 -0
- pythonknot-0.1.2/src/cpp_module/cln/src/modinteger/cl_MI_int.h +149 -0
- pythonknot-0.1.2/src/cpp_module/cln/src/modinteger/cl_MI_int32.h +99 -0
- pythonknot-0.1.2/src/cpp_module/cln/src/modinteger/cl_MI_montgom.h +238 -0
- pythonknot-0.1.2/src/cpp_module/cln/src/modinteger/cl_MI_pow2.h +157 -0
- pythonknot-0.1.2/src/cpp_module/cln/src/modinteger/cl_MI_pow2m1.h +98 -0
- pythonknot-0.1.2/src/cpp_module/cln/src/modinteger/cl_MI_pow2p1.h +109 -0
- pythonknot-0.1.2/src/cpp_module/cln/src/modinteger/cl_MI_std.h +370 -0
- pythonknot-0.1.2/src/cpp_module/cln/src/numtheory/cl_IF.h +55 -0
- pythonknot-0.1.2/src/cpp_module/cln/src/polynomial/cl_UP.h +35 -0
- pythonknot-0.1.2/src/cpp_module/cln/src/polynomial/elem/cl_UP_GF2.h +1066 -0
- pythonknot-0.1.2/src/cpp_module/cln/src/polynomial/elem/cl_UP_MI.h +506 -0
- pythonknot-0.1.2/src/cpp_module/cln/src/polynomial/elem/cl_UP_gen.h +485 -0
- pythonknot-0.1.2/src/cpp_module/cln/src/polynomial/elem/cl_UP_number.h +488 -0
- pythonknot-0.1.2/src/cpp_module/cln/src/rational/cl_RA.h +175 -0
- pythonknot-0.1.2/src/cpp_module/cln/src/real/cl_R.h +209 -0
- pythonknot-0.1.2/src/cpp_module/cln/src/real/division/cl_R_div_t.h +26 -0
- pythonknot-0.1.2/src/cpp_module/cln/src/real/format-output/cl_format.h +75 -0
- pythonknot-0.1.2/src/cpp_module/cln/src/timing/cl_t_config.h +37 -0
- pythonknot-0.1.2/src/cpp_module/cln/src/vector/cl_GV_io.h +22 -0
- pythonknot-0.1.2/src/cpp_module/cln/src/vector/cl_SV_io.h +22 -0
- pythonknot-0.1.2/src/cpp_module/cln/tests/exam.h +103 -0
- pythonknot-0.1.2/src/cpp_module/cln/tests/test.h +93 -0
- pythonknot-0.1.2/src/cpp_module/cln/tests/test_I.h +4 -0
- pythonknot-0.1.2/src/cpp_module/cln/tests/test_MI.h +5 -0
- pythonknot-0.1.2/src/cpp_module/cln/tests/test_nt.h +5 -0
- pythonknot-0.1.2/src/cpp_module/cln-1.3.7/autoconf/cl_config.h +147 -0
- pythonknot-0.1.2/src/cpp_module/cln-1.3.7/build/include/cln/GV.h +350 -0
- pythonknot-0.1.2/src/cpp_module/cln-1.3.7/build/include/cln/GV_complex.h +58 -0
- pythonknot-0.1.2/src/cpp_module/cln-1.3.7/build/include/cln/GV_integer.h +91 -0
- pythonknot-0.1.2/src/cpp_module/cln-1.3.7/build/include/cln/GV_modinteger.h +51 -0
- pythonknot-0.1.2/src/cpp_module/cln-1.3.7/build/include/cln/GV_number.h +55 -0
- pythonknot-0.1.2/src/cpp_module/cln-1.3.7/build/include/cln/GV_rational.h +58 -0
- pythonknot-0.1.2/src/cpp_module/cln-1.3.7/build/include/cln/GV_real.h +58 -0
- pythonknot-0.1.2/src/cpp_module/cln-1.3.7/build/include/cln/SV.h +217 -0
- pythonknot-0.1.2/src/cpp_module/cln-1.3.7/build/include/cln/SV_complex.h +54 -0
- pythonknot-0.1.2/src/cpp_module/cln-1.3.7/build/include/cln/SV_integer.h +51 -0
- pythonknot-0.1.2/src/cpp_module/cln-1.3.7/build/include/cln/SV_number.h +67 -0
- pythonknot-0.1.2/src/cpp_module/cln-1.3.7/build/include/cln/SV_rational.h +54 -0
- pythonknot-0.1.2/src/cpp_module/cln-1.3.7/build/include/cln/SV_real.h +54 -0
- pythonknot-0.1.2/src/cpp_module/cln-1.3.7/build/include/cln/SV_ringelt.h +72 -0
- pythonknot-0.1.2/src/cpp_module/cln-1.3.7/build/include/cln/V.h +23 -0
- pythonknot-0.1.2/src/cpp_module/cln-1.3.7/build/include/cln/cln.h +141 -0
- pythonknot-0.1.2/src/cpp_module/cln-1.3.7/build/include/cln/complex.h +157 -0
- pythonknot-0.1.2/src/cpp_module/cln-1.3.7/build/include/cln/complex_class.h +70 -0
- pythonknot-0.1.2/src/cpp_module/cln-1.3.7/build/include/cln/complex_io.h +43 -0
- pythonknot-0.1.2/src/cpp_module/cln-1.3.7/build/include/cln/complex_ring.h +26 -0
- pythonknot-0.1.2/src/cpp_module/cln-1.3.7/build/include/cln/condition.h +39 -0
- pythonknot-0.1.2/src/cpp_module/cln-1.3.7/build/include/cln/config.h +27 -0
- pythonknot-0.1.2/src/cpp_module/cln-1.3.7/build/include/cln/dfloat.h +326 -0
- pythonknot-0.1.2/src/cpp_module/cln-1.3.7/build/include/cln/dfloat_class.h +75 -0
- pythonknot-0.1.2/src/cpp_module/cln-1.3.7/build/include/cln/dfloat_io.h +31 -0
- pythonknot-0.1.2/src/cpp_module/cln-1.3.7/build/include/cln/exception.h +40 -0
- pythonknot-0.1.2/src/cpp_module/cln-1.3.7/build/include/cln/ffloat.h +329 -0
- pythonknot-0.1.2/src/cpp_module/cln-1.3.7/build/include/cln/ffloat_class.h +85 -0
- pythonknot-0.1.2/src/cpp_module/cln-1.3.7/build/include/cln/ffloat_io.h +31 -0
- pythonknot-0.1.2/src/cpp_module/cln-1.3.7/build/include/cln/float.h +738 -0
- pythonknot-0.1.2/src/cpp_module/cln-1.3.7/build/include/cln/float_class.h +52 -0
- pythonknot-0.1.2/src/cpp_module/cln-1.3.7/build/include/cln/float_io.h +76 -0
- pythonknot-0.1.2/src/cpp_module/cln-1.3.7/build/include/cln/floatformat.h +21 -0
- pythonknot-0.1.2/src/cpp_module/cln-1.3.7/build/include/cln/host_cpu.h +84 -0
- pythonknot-0.1.2/src/cpp_module/cln-1.3.7/build/include/cln/input.h +61 -0
- pythonknot-0.1.2/src/cpp_module/cln-1.3.7/build/include/cln/integer.h +654 -0
- pythonknot-0.1.2/src/cpp_module/cln-1.3.7/build/include/cln/integer_class.h +63 -0
- pythonknot-0.1.2/src/cpp_module/cln-1.3.7/build/include/cln/integer_io.h +100 -0
- pythonknot-0.1.2/src/cpp_module/cln-1.3.7/build/include/cln/integer_ring.h +26 -0
- pythonknot-0.1.2/src/cpp_module/cln-1.3.7/build/include/cln/intparam.h +92 -0
- pythonknot-0.1.2/src/cpp_module/cln-1.3.7/build/include/cln/io.h +85 -0
- pythonknot-0.1.2/src/cpp_module/cln-1.3.7/build/include/cln/lfloat.h +425 -0
- pythonknot-0.1.2/src/cpp_module/cln-1.3.7/build/include/cln/lfloat_class.h +73 -0
- pythonknot-0.1.2/src/cpp_module/cln-1.3.7/build/include/cln/lfloat_io.h +31 -0
- pythonknot-0.1.2/src/cpp_module/cln-1.3.7/build/include/cln/malloc.h +17 -0
- pythonknot-0.1.2/src/cpp_module/cln-1.3.7/build/include/cln/modinteger.h +466 -0
- pythonknot-0.1.2/src/cpp_module/cln-1.3.7/build/include/cln/modules.h +37 -0
- pythonknot-0.1.2/src/cpp_module/cln-1.3.7/build/include/cln/null_ring.h +24 -0
- pythonknot-0.1.2/src/cpp_module/cln-1.3.7/build/include/cln/number.h +300 -0
- pythonknot-0.1.2/src/cpp_module/cln-1.3.7/build/include/cln/number_io.h +42 -0
- pythonknot-0.1.2/src/cpp_module/cln-1.3.7/build/include/cln/numtheory.h +90 -0
- pythonknot-0.1.2/src/cpp_module/cln-1.3.7/build/include/cln/object.h +531 -0
- pythonknot-0.1.2/src/cpp_module/cln-1.3.7/build/include/cln/output.h +74 -0
- pythonknot-0.1.2/src/cpp_module/cln-1.3.7/build/include/cln/proplist.h +55 -0
- pythonknot-0.1.2/src/cpp_module/cln-1.3.7/build/include/cln/random.h +55 -0
- pythonknot-0.1.2/src/cpp_module/cln-1.3.7/build/include/cln/rational.h +337 -0
- pythonknot-0.1.2/src/cpp_module/cln-1.3.7/build/include/cln/rational_class.h +65 -0
- pythonknot-0.1.2/src/cpp_module/cln-1.3.7/build/include/cln/rational_io.h +73 -0
- pythonknot-0.1.2/src/cpp_module/cln-1.3.7/build/include/cln/rational_ring.h +26 -0
- pythonknot-0.1.2/src/cpp_module/cln-1.3.7/build/include/cln/real.h +607 -0
- pythonknot-0.1.2/src/cpp_module/cln-1.3.7/build/include/cln/real_class.h +70 -0
- pythonknot-0.1.2/src/cpp_module/cln-1.3.7/build/include/cln/real_io.h +52 -0
- pythonknot-0.1.2/src/cpp_module/cln-1.3.7/build/include/cln/real_ring.h +27 -0
- pythonknot-0.1.2/src/cpp_module/cln-1.3.7/build/include/cln/ring.h +464 -0
- pythonknot-0.1.2/src/cpp_module/cln-1.3.7/build/include/cln/sfloat.h +300 -0
- pythonknot-0.1.2/src/cpp_module/cln-1.3.7/build/include/cln/sfloat_class.h +45 -0
- pythonknot-0.1.2/src/cpp_module/cln-1.3.7/build/include/cln/sfloat_io.h +31 -0
- pythonknot-0.1.2/src/cpp_module/cln-1.3.7/build/include/cln/string.h +172 -0
- pythonknot-0.1.2/src/cpp_module/cln-1.3.7/build/include/cln/symbol.h +48 -0
- pythonknot-0.1.2/src/cpp_module/cln-1.3.7/build/include/cln/timing.h +78 -0
- pythonknot-0.1.2/src/cpp_module/cln-1.3.7/build/include/cln/types.h +182 -0
- pythonknot-0.1.2/src/cpp_module/cln-1.3.7/build/include/cln/univpoly.h +733 -0
- pythonknot-0.1.2/src/cpp_module/cln-1.3.7/build/include/cln/univpoly_complex.h +228 -0
- pythonknot-0.1.2/src/cpp_module/cln-1.3.7/build/include/cln/univpoly_integer.h +233 -0
- pythonknot-0.1.2/src/cpp_module/cln-1.3.7/build/include/cln/univpoly_modint.h +217 -0
- pythonknot-0.1.2/src/cpp_module/cln-1.3.7/build/include/cln/univpoly_rational.h +232 -0
- pythonknot-0.1.2/src/cpp_module/cln-1.3.7/build/include/cln/univpoly_real.h +228 -0
- pythonknot-0.1.2/src/cpp_module/cln-1.3.7/build/include/cln/version.h +46 -0
- pythonknot-0.1.2/src/cpp_module/cln-1.3.7/include/cln/GV.h +350 -0
- pythonknot-0.1.2/src/cpp_module/cln-1.3.7/include/cln/GV_complex.h +58 -0
- pythonknot-0.1.2/src/cpp_module/cln-1.3.7/include/cln/GV_integer.h +91 -0
- pythonknot-0.1.2/src/cpp_module/cln-1.3.7/include/cln/GV_modinteger.h +51 -0
- pythonknot-0.1.2/src/cpp_module/cln-1.3.7/include/cln/GV_number.h +55 -0
- pythonknot-0.1.2/src/cpp_module/cln-1.3.7/include/cln/GV_rational.h +58 -0
- pythonknot-0.1.2/src/cpp_module/cln-1.3.7/include/cln/GV_real.h +58 -0
- pythonknot-0.1.2/src/cpp_module/cln-1.3.7/include/cln/SV.h +217 -0
- pythonknot-0.1.2/src/cpp_module/cln-1.3.7/include/cln/SV_complex.h +54 -0
- pythonknot-0.1.2/src/cpp_module/cln-1.3.7/include/cln/SV_integer.h +51 -0
- pythonknot-0.1.2/src/cpp_module/cln-1.3.7/include/cln/SV_number.h +67 -0
- pythonknot-0.1.2/src/cpp_module/cln-1.3.7/include/cln/SV_rational.h +54 -0
- pythonknot-0.1.2/src/cpp_module/cln-1.3.7/include/cln/SV_real.h +54 -0
- pythonknot-0.1.2/src/cpp_module/cln-1.3.7/include/cln/SV_ringelt.h +72 -0
- pythonknot-0.1.2/src/cpp_module/cln-1.3.7/include/cln/V.h +23 -0
- pythonknot-0.1.2/src/cpp_module/cln-1.3.7/include/cln/cln.h +141 -0
- pythonknot-0.1.2/src/cpp_module/cln-1.3.7/include/cln/complex.h +157 -0
- pythonknot-0.1.2/src/cpp_module/cln-1.3.7/include/cln/complex_class.h +70 -0
- pythonknot-0.1.2/src/cpp_module/cln-1.3.7/include/cln/complex_io.h +43 -0
- pythonknot-0.1.2/src/cpp_module/cln-1.3.7/include/cln/complex_ring.h +26 -0
- pythonknot-0.1.2/src/cpp_module/cln-1.3.7/include/cln/condition.h +39 -0
- pythonknot-0.1.2/src/cpp_module/cln-1.3.7/include/cln/config.h +27 -0
- pythonknot-0.1.2/src/cpp_module/cln-1.3.7/include/cln/dfloat.h +326 -0
- pythonknot-0.1.2/src/cpp_module/cln-1.3.7/include/cln/dfloat_class.h +75 -0
- pythonknot-0.1.2/src/cpp_module/cln-1.3.7/include/cln/dfloat_io.h +31 -0
- pythonknot-0.1.2/src/cpp_module/cln-1.3.7/include/cln/exception.h +40 -0
- pythonknot-0.1.2/src/cpp_module/cln-1.3.7/include/cln/ffloat.h +329 -0
- pythonknot-0.1.2/src/cpp_module/cln-1.3.7/include/cln/ffloat_class.h +85 -0
- pythonknot-0.1.2/src/cpp_module/cln-1.3.7/include/cln/ffloat_io.h +31 -0
- pythonknot-0.1.2/src/cpp_module/cln-1.3.7/include/cln/float.h +738 -0
- pythonknot-0.1.2/src/cpp_module/cln-1.3.7/include/cln/float_class.h +52 -0
- pythonknot-0.1.2/src/cpp_module/cln-1.3.7/include/cln/float_io.h +76 -0
- pythonknot-0.1.2/src/cpp_module/cln-1.3.7/include/cln/floatformat.h +21 -0
- pythonknot-0.1.2/src/cpp_module/cln-1.3.7/include/cln/floatparam.h +26 -0
- pythonknot-0.1.2/src/cpp_module/cln-1.3.7/include/cln/host_cpu.h +84 -0
- pythonknot-0.1.2/src/cpp_module/cln-1.3.7/include/cln/input.h +61 -0
- pythonknot-0.1.2/src/cpp_module/cln-1.3.7/include/cln/integer.h +654 -0
- pythonknot-0.1.2/src/cpp_module/cln-1.3.7/include/cln/integer_class.h +63 -0
- pythonknot-0.1.2/src/cpp_module/cln-1.3.7/include/cln/integer_io.h +100 -0
- pythonknot-0.1.2/src/cpp_module/cln-1.3.7/include/cln/integer_ring.h +26 -0
- pythonknot-0.1.2/src/cpp_module/cln-1.3.7/include/cln/intparam.h +92 -0
- pythonknot-0.1.2/src/cpp_module/cln-1.3.7/include/cln/io.h +85 -0
- pythonknot-0.1.2/src/cpp_module/cln-1.3.7/include/cln/lfloat.h +425 -0
- pythonknot-0.1.2/src/cpp_module/cln-1.3.7/include/cln/lfloat_class.h +73 -0
- pythonknot-0.1.2/src/cpp_module/cln-1.3.7/include/cln/lfloat_io.h +31 -0
- pythonknot-0.1.2/src/cpp_module/cln-1.3.7/include/cln/malloc.h +17 -0
- pythonknot-0.1.2/src/cpp_module/cln-1.3.7/include/cln/modinteger.h +466 -0
- pythonknot-0.1.2/src/cpp_module/cln-1.3.7/include/cln/modules.h +37 -0
- pythonknot-0.1.2/src/cpp_module/cln-1.3.7/include/cln/null_ring.h +24 -0
- pythonknot-0.1.2/src/cpp_module/cln-1.3.7/include/cln/number.h +300 -0
- pythonknot-0.1.2/src/cpp_module/cln-1.3.7/include/cln/number_io.h +42 -0
- pythonknot-0.1.2/src/cpp_module/cln-1.3.7/include/cln/numtheory.h +90 -0
- pythonknot-0.1.2/src/cpp_module/cln-1.3.7/include/cln/object.h +531 -0
- pythonknot-0.1.2/src/cpp_module/cln-1.3.7/include/cln/output.h +74 -0
- pythonknot-0.1.2/src/cpp_module/cln-1.3.7/include/cln/proplist.h +55 -0
- pythonknot-0.1.2/src/cpp_module/cln-1.3.7/include/cln/random.h +55 -0
- pythonknot-0.1.2/src/cpp_module/cln-1.3.7/include/cln/rational.h +337 -0
- pythonknot-0.1.2/src/cpp_module/cln-1.3.7/include/cln/rational_class.h +65 -0
- pythonknot-0.1.2/src/cpp_module/cln-1.3.7/include/cln/rational_io.h +73 -0
- pythonknot-0.1.2/src/cpp_module/cln-1.3.7/include/cln/rational_ring.h +26 -0
- pythonknot-0.1.2/src/cpp_module/cln-1.3.7/include/cln/real.h +607 -0
- pythonknot-0.1.2/src/cpp_module/cln-1.3.7/include/cln/real_class.h +70 -0
- pythonknot-0.1.2/src/cpp_module/cln-1.3.7/include/cln/real_io.h +52 -0
- pythonknot-0.1.2/src/cpp_module/cln-1.3.7/include/cln/real_ring.h +27 -0
- pythonknot-0.1.2/src/cpp_module/cln-1.3.7/include/cln/ring.h +464 -0
- pythonknot-0.1.2/src/cpp_module/cln-1.3.7/include/cln/sfloat.h +300 -0
- pythonknot-0.1.2/src/cpp_module/cln-1.3.7/include/cln/sfloat_class.h +45 -0
- pythonknot-0.1.2/src/cpp_module/cln-1.3.7/include/cln/sfloat_io.h +31 -0
- pythonknot-0.1.2/src/cpp_module/cln-1.3.7/include/cln/string.h +172 -0
- pythonknot-0.1.2/src/cpp_module/cln-1.3.7/include/cln/symbol.h +48 -0
- pythonknot-0.1.2/src/cpp_module/cln-1.3.7/include/cln/timing.h +78 -0
- pythonknot-0.1.2/src/cpp_module/cln-1.3.7/include/cln/types.h +182 -0
- pythonknot-0.1.2/src/cpp_module/cln-1.3.7/include/cln/univpoly.h +733 -0
- pythonknot-0.1.2/src/cpp_module/cln-1.3.7/include/cln/univpoly_complex.h +228 -0
- pythonknot-0.1.2/src/cpp_module/cln-1.3.7/include/cln/univpoly_integer.h +233 -0
- pythonknot-0.1.2/src/cpp_module/cln-1.3.7/include/cln/univpoly_modint.h +217 -0
- pythonknot-0.1.2/src/cpp_module/cln-1.3.7/include/cln/univpoly_rational.h +232 -0
- pythonknot-0.1.2/src/cpp_module/cln-1.3.7/include/cln/univpoly_real.h +228 -0
- pythonknot-0.1.2/src/cpp_module/cln-1.3.7/include/cln/version.h +46 -0
- pythonknot-0.1.2/src/cpp_module/cln-1.3.7/lib/include/cln/GV.h +350 -0
- pythonknot-0.1.2/src/cpp_module/cln-1.3.7/lib/include/cln/GV_complex.h +58 -0
- pythonknot-0.1.2/src/cpp_module/cln-1.3.7/lib/include/cln/GV_integer.h +91 -0
- pythonknot-0.1.2/src/cpp_module/cln-1.3.7/lib/include/cln/GV_modinteger.h +51 -0
- pythonknot-0.1.2/src/cpp_module/cln-1.3.7/lib/include/cln/GV_number.h +55 -0
- pythonknot-0.1.2/src/cpp_module/cln-1.3.7/lib/include/cln/GV_rational.h +58 -0
- pythonknot-0.1.2/src/cpp_module/cln-1.3.7/lib/include/cln/GV_real.h +58 -0
- pythonknot-0.1.2/src/cpp_module/cln-1.3.7/lib/include/cln/SV.h +217 -0
- pythonknot-0.1.2/src/cpp_module/cln-1.3.7/lib/include/cln/SV_complex.h +54 -0
- pythonknot-0.1.2/src/cpp_module/cln-1.3.7/lib/include/cln/SV_integer.h +51 -0
- pythonknot-0.1.2/src/cpp_module/cln-1.3.7/lib/include/cln/SV_number.h +67 -0
- pythonknot-0.1.2/src/cpp_module/cln-1.3.7/lib/include/cln/SV_rational.h +54 -0
- pythonknot-0.1.2/src/cpp_module/cln-1.3.7/lib/include/cln/SV_real.h +54 -0
- pythonknot-0.1.2/src/cpp_module/cln-1.3.7/lib/include/cln/SV_ringelt.h +72 -0
- pythonknot-0.1.2/src/cpp_module/cln-1.3.7/lib/include/cln/V.h +23 -0
- pythonknot-0.1.2/src/cpp_module/cln-1.3.7/lib/include/cln/cln.h +141 -0
- pythonknot-0.1.2/src/cpp_module/cln-1.3.7/lib/include/cln/complex.h +157 -0
- pythonknot-0.1.2/src/cpp_module/cln-1.3.7/lib/include/cln/complex_class.h +70 -0
- pythonknot-0.1.2/src/cpp_module/cln-1.3.7/lib/include/cln/complex_io.h +43 -0
- pythonknot-0.1.2/src/cpp_module/cln-1.3.7/lib/include/cln/complex_ring.h +26 -0
- pythonknot-0.1.2/src/cpp_module/cln-1.3.7/lib/include/cln/condition.h +39 -0
- pythonknot-0.1.2/src/cpp_module/cln-1.3.7/lib/include/cln/config.h +27 -0
- pythonknot-0.1.2/src/cpp_module/cln-1.3.7/lib/include/cln/dfloat.h +326 -0
- pythonknot-0.1.2/src/cpp_module/cln-1.3.7/lib/include/cln/dfloat_class.h +75 -0
- pythonknot-0.1.2/src/cpp_module/cln-1.3.7/lib/include/cln/dfloat_io.h +31 -0
- pythonknot-0.1.2/src/cpp_module/cln-1.3.7/lib/include/cln/exception.h +40 -0
- pythonknot-0.1.2/src/cpp_module/cln-1.3.7/lib/include/cln/ffloat.h +329 -0
- pythonknot-0.1.2/src/cpp_module/cln-1.3.7/lib/include/cln/ffloat_class.h +85 -0
- pythonknot-0.1.2/src/cpp_module/cln-1.3.7/lib/include/cln/ffloat_io.h +31 -0
- pythonknot-0.1.2/src/cpp_module/cln-1.3.7/lib/include/cln/float.h +738 -0
- pythonknot-0.1.2/src/cpp_module/cln-1.3.7/lib/include/cln/float_class.h +52 -0
- pythonknot-0.1.2/src/cpp_module/cln-1.3.7/lib/include/cln/float_io.h +76 -0
- pythonknot-0.1.2/src/cpp_module/cln-1.3.7/lib/include/cln/floatformat.h +21 -0
- pythonknot-0.1.2/src/cpp_module/cln-1.3.7/lib/include/cln/host_cpu.h +84 -0
- pythonknot-0.1.2/src/cpp_module/cln-1.3.7/lib/include/cln/input.h +61 -0
- pythonknot-0.1.2/src/cpp_module/cln-1.3.7/lib/include/cln/integer.h +654 -0
- pythonknot-0.1.2/src/cpp_module/cln-1.3.7/lib/include/cln/integer_class.h +63 -0
- pythonknot-0.1.2/src/cpp_module/cln-1.3.7/lib/include/cln/integer_io.h +100 -0
- pythonknot-0.1.2/src/cpp_module/cln-1.3.7/lib/include/cln/integer_ring.h +26 -0
- pythonknot-0.1.2/src/cpp_module/cln-1.3.7/lib/include/cln/intparam.h +92 -0
- pythonknot-0.1.2/src/cpp_module/cln-1.3.7/lib/include/cln/io.h +85 -0
- pythonknot-0.1.2/src/cpp_module/cln-1.3.7/lib/include/cln/lfloat.h +425 -0
- pythonknot-0.1.2/src/cpp_module/cln-1.3.7/lib/include/cln/lfloat_class.h +73 -0
- pythonknot-0.1.2/src/cpp_module/cln-1.3.7/lib/include/cln/lfloat_io.h +31 -0
- pythonknot-0.1.2/src/cpp_module/cln-1.3.7/lib/include/cln/malloc.h +17 -0
- pythonknot-0.1.2/src/cpp_module/cln-1.3.7/lib/include/cln/modinteger.h +466 -0
- pythonknot-0.1.2/src/cpp_module/cln-1.3.7/lib/include/cln/modules.h +37 -0
- pythonknot-0.1.2/src/cpp_module/cln-1.3.7/lib/include/cln/null_ring.h +24 -0
- pythonknot-0.1.2/src/cpp_module/cln-1.3.7/lib/include/cln/number.h +300 -0
- pythonknot-0.1.2/src/cpp_module/cln-1.3.7/lib/include/cln/number_io.h +42 -0
- pythonknot-0.1.2/src/cpp_module/cln-1.3.7/lib/include/cln/numtheory.h +90 -0
- pythonknot-0.1.2/src/cpp_module/cln-1.3.7/lib/include/cln/object.h +531 -0
- pythonknot-0.1.2/src/cpp_module/cln-1.3.7/lib/include/cln/output.h +74 -0
- pythonknot-0.1.2/src/cpp_module/cln-1.3.7/lib/include/cln/proplist.h +55 -0
- pythonknot-0.1.2/src/cpp_module/cln-1.3.7/lib/include/cln/random.h +55 -0
- pythonknot-0.1.2/src/cpp_module/cln-1.3.7/lib/include/cln/rational.h +337 -0
- pythonknot-0.1.2/src/cpp_module/cln-1.3.7/lib/include/cln/rational_class.h +65 -0
- pythonknot-0.1.2/src/cpp_module/cln-1.3.7/lib/include/cln/rational_io.h +73 -0
- pythonknot-0.1.2/src/cpp_module/cln-1.3.7/lib/include/cln/rational_ring.h +26 -0
- pythonknot-0.1.2/src/cpp_module/cln-1.3.7/lib/include/cln/real.h +607 -0
- pythonknot-0.1.2/src/cpp_module/cln-1.3.7/lib/include/cln/real_class.h +70 -0
- pythonknot-0.1.2/src/cpp_module/cln-1.3.7/lib/include/cln/real_io.h +52 -0
- pythonknot-0.1.2/src/cpp_module/cln-1.3.7/lib/include/cln/real_ring.h +27 -0
- pythonknot-0.1.2/src/cpp_module/cln-1.3.7/lib/include/cln/ring.h +464 -0
- pythonknot-0.1.2/src/cpp_module/cln-1.3.7/lib/include/cln/sfloat.h +300 -0
- pythonknot-0.1.2/src/cpp_module/cln-1.3.7/lib/include/cln/sfloat_class.h +45 -0
- pythonknot-0.1.2/src/cpp_module/cln-1.3.7/lib/include/cln/sfloat_io.h +31 -0
- pythonknot-0.1.2/src/cpp_module/cln-1.3.7/lib/include/cln/string.h +172 -0
- pythonknot-0.1.2/src/cpp_module/cln-1.3.7/lib/include/cln/symbol.h +48 -0
- pythonknot-0.1.2/src/cpp_module/cln-1.3.7/lib/include/cln/timing.h +78 -0
- pythonknot-0.1.2/src/cpp_module/cln-1.3.7/lib/include/cln/types.h +182 -0
- pythonknot-0.1.2/src/cpp_module/cln-1.3.7/lib/include/cln/univpoly.h +733 -0
- pythonknot-0.1.2/src/cpp_module/cln-1.3.7/lib/include/cln/univpoly_complex.h +228 -0
- pythonknot-0.1.2/src/cpp_module/cln-1.3.7/lib/include/cln/univpoly_integer.h +233 -0
- pythonknot-0.1.2/src/cpp_module/cln-1.3.7/lib/include/cln/univpoly_modint.h +217 -0
- pythonknot-0.1.2/src/cpp_module/cln-1.3.7/lib/include/cln/univpoly_rational.h +232 -0
- pythonknot-0.1.2/src/cpp_module/cln-1.3.7/lib/include/cln/univpoly_real.h +228 -0
- pythonknot-0.1.2/src/cpp_module/cln-1.3.7/lib/include/cln/version.h +46 -0
- pythonknot-0.1.2/src/cpp_module/cln-1.3.7/src/base/cl_N.h +22 -0
- pythonknot-0.1.2/src/cpp_module/cln-1.3.7/src/base/cl_alloca.h +88 -0
- pythonknot-0.1.2/src/cpp_module/cln-1.3.7/src/base/cl_base_config.h +18 -0
- pythonknot-0.1.2/src/cpp_module/cln-1.3.7/src/base/cl_gmpconfig.h +17 -0
- pythonknot-0.1.2/src/cpp_module/cln-1.3.7/src/base/cl_inline.h +8 -0
- pythonknot-0.1.2/src/cpp_module/cln-1.3.7/src/base/cl_inline2.h +8 -0
- pythonknot-0.1.2/src/cpp_module/cln-1.3.7/src/base/cl_iterator.h +28 -0
- pythonknot-0.1.2/src/cpp_module/cln-1.3.7/src/base/cl_low.h +1594 -0
- pythonknot-0.1.2/src/cpp_module/cln-1.3.7/src/base/cl_macros.h +258 -0
- pythonknot-0.1.2/src/cpp_module/cln-1.3.7/src/base/cl_maybe_inline.h +133 -0
- pythonknot-0.1.2/src/cpp_module/cln-1.3.7/src/base/cl_offsetof.h +20 -0
- pythonknot-0.1.2/src/cpp_module/cln-1.3.7/src/base/cl_sysdep.h +64 -0
- pythonknot-0.1.2/src/cpp_module/cln-1.3.7/src/base/cl_xmacros.h +13 -0
- pythonknot-0.1.2/src/cpp_module/cln-1.3.7/src/base/digit/cl_2D.h +44 -0
- pythonknot-0.1.2/src/cpp_module/cln-1.3.7/src/base/digit/cl_D.h +226 -0
- pythonknot-0.1.2/src/cpp_module/cln-1.3.7/src/base/digitseq/cl_2DS.h +31 -0
- pythonknot-0.1.2/src/cpp_module/cln-1.3.7/src/base/digitseq/cl_DS.h +2689 -0
- pythonknot-0.1.2/src/cpp_module/cln-1.3.7/src/base/digitseq/cl_DS_endian.h +21 -0
- pythonknot-0.1.2/src/cpp_module/cln-1.3.7/src/base/digitseq/cl_DS_mul_fftc.h +1102 -0
- pythonknot-0.1.2/src/cpp_module/cln-1.3.7/src/base/digitseq/cl_DS_mul_fftcs.h +1152 -0
- pythonknot-0.1.2/src/cpp_module/cln-1.3.7/src/base/digitseq/cl_DS_mul_fftm.h +654 -0
- pythonknot-0.1.2/src/cpp_module/cln-1.3.7/src/base/digitseq/cl_DS_mul_fftp.h +823 -0
- pythonknot-0.1.2/src/cpp_module/cln-1.3.7/src/base/digitseq/cl_DS_mul_fftp3.h +672 -0
- pythonknot-0.1.2/src/cpp_module/cln-1.3.7/src/base/digitseq/cl_DS_mul_fftp3m.h +858 -0
- pythonknot-0.1.2/src/cpp_module/cln-1.3.7/src/base/digitseq/cl_DS_mul_fftr.h +1139 -0
- pythonknot-0.1.2/src/cpp_module/cln-1.3.7/src/base/digitseq/cl_DS_mul_kara.h +259 -0
- pythonknot-0.1.2/src/cpp_module/cln-1.3.7/src/base/digitseq/cl_DS_mul_kara_sqr.h +81 -0
- pythonknot-0.1.2/src/cpp_module/cln-1.3.7/src/base/digitseq/cl_DS_mul_nuss.h +1511 -0
- pythonknot-0.1.2/src/cpp_module/cln-1.3.7/src/base/digitseq/cl_asm.h +42 -0
- pythonknot-0.1.2/src/cpp_module/cln-1.3.7/src/base/digitseq/cl_asm_arm.h +10 -0
- pythonknot-0.1.2/src/cpp_module/cln-1.3.7/src/base/digitseq/cl_asm_hppa.h +2 -0
- pythonknot-0.1.2/src/cpp_module/cln-1.3.7/src/base/digitseq/cl_asm_i386.h +11 -0
- pythonknot-0.1.2/src/cpp_module/cln-1.3.7/src/base/digitseq/cl_asm_m68k.h +11 -0
- pythonknot-0.1.2/src/cpp_module/cln-1.3.7/src/base/digitseq/cl_asm_mips.h +8 -0
- pythonknot-0.1.2/src/cpp_module/cln-1.3.7/src/base/digitseq/cl_asm_sparc.h +11 -0
- pythonknot-0.1.2/src/cpp_module/cln-1.3.7/src/base/digitseq/cl_asm_sparc64.h +10 -0
- pythonknot-0.1.2/src/cpp_module/cln-1.3.7/src/base/hash/cl_hash.h +185 -0
- pythonknot-0.1.2/src/cpp_module/cln-1.3.7/src/base/hash/cl_hash1.h +157 -0
- pythonknot-0.1.2/src/cpp_module/cln-1.3.7/src/base/hash/cl_hash1weak.h +97 -0
- pythonknot-0.1.2/src/cpp_module/cln-1.3.7/src/base/hash/cl_hash2.h +163 -0
- pythonknot-0.1.2/src/cpp_module/cln-1.3.7/src/base/hash/cl_hash2weak.h +97 -0
- pythonknot-0.1.2/src/cpp_module/cln-1.3.7/src/base/hash/cl_hashset.h +150 -0
- pythonknot-0.1.2/src/cpp_module/cln-1.3.7/src/base/hash/cl_hashuniq.h +158 -0
- pythonknot-0.1.2/src/cpp_module/cln-1.3.7/src/base/hash/cl_hashuniqweak.h +97 -0
- pythonknot-0.1.2/src/cpp_module/cln-1.3.7/src/base/hash/cl_rcpointer2_hashweak_rcpointer.h +48 -0
- pythonknot-0.1.2/src/cpp_module/cln-1.3.7/src/base/hash/cl_rcpointer_hashweak_rcpointer.h +43 -0
- pythonknot-0.1.2/src/cpp_module/cln-1.3.7/src/base/random/cl_random_impl.h +26 -0
- pythonknot-0.1.2/src/cpp_module/cln-1.3.7/src/base/string/cl_spushstring.h +65 -0
- pythonknot-0.1.2/src/cpp_module/cln-1.3.7/src/base/string/cl_sstring.h +14 -0
- pythonknot-0.1.2/src/cpp_module/cln-1.3.7/src/base/string/cl_st_make0.h +11 -0
- pythonknot-0.1.2/src/cpp_module/cln-1.3.7/src/complex/cl_C.h +193 -0
- pythonknot-0.1.2/src/cpp_module/cln-1.3.7/src/float/cl_F.h +276 -0
- pythonknot-0.1.2/src/cpp_module/cln-1.3.7/src/float/dfloat/cl_DF.h +321 -0
- pythonknot-0.1.2/src/cpp_module/cln-1.3.7/src/float/ffloat/cl_FF.h +249 -0
- pythonknot-0.1.2/src/cpp_module/cln-1.3.7/src/float/lfloat/cl_LF.h +150 -0
- pythonknot-0.1.2/src/cpp_module/cln-1.3.7/src/float/lfloat/cl_LF_impl.h +153 -0
- pythonknot-0.1.2/src/cpp_module/cln-1.3.7/src/float/sfloat/cl_SF.h +137 -0
- pythonknot-0.1.2/src/cpp_module/cln-1.3.7/src/float/transcendental/cl_F_catalanconst_var.h +29 -0
- pythonknot-0.1.2/src/cpp_module/cln-1.3.7/src/float/transcendental/cl_F_eulerconst_var.h +29 -0
- pythonknot-0.1.2/src/cpp_module/cln-1.3.7/src/float/transcendental/cl_F_exp1_var.h +29 -0
- pythonknot-0.1.2/src/cpp_module/cln-1.3.7/src/float/transcendental/cl_F_ln10_var.h +29 -0
- pythonknot-0.1.2/src/cpp_module/cln-1.3.7/src/float/transcendental/cl_F_ln2_var.h +29 -0
- pythonknot-0.1.2/src/cpp_module/cln-1.3.7/src/float/transcendental/cl_F_pi_var.h +29 -0
- pythonknot-0.1.2/src/cpp_module/cln-1.3.7/src/float/transcendental/cl_F_tran.h +149 -0
- pythonknot-0.1.2/src/cpp_module/cln-1.3.7/src/float/transcendental/cl_LF_tran.h +335 -0
- pythonknot-0.1.2/src/cpp_module/cln-1.3.7/src/integer/bitwise/cl_I_byte.h +33 -0
- pythonknot-0.1.2/src/cpp_module/cln-1.3.7/src/integer/bitwise/cl_I_log.h +38 -0
- pythonknot-0.1.2/src/cpp_module/cln-1.3.7/src/integer/cl_I.h +764 -0
- pythonknot-0.1.2/src/cpp_module/cln-1.3.7/src/integer/conv/cl_I_cached_power.h +47 -0
- pythonknot-0.1.2/src/cpp_module/cln-1.3.7/src/integer/hash/cl_I_hash_gcobject.h +35 -0
- pythonknot-0.1.2/src/cpp_module/cln-1.3.7/src/integer/hash/cl_I_hash_gcpointer.h +35 -0
- pythonknot-0.1.2/src/cpp_module/cln-1.3.7/src/integer/hash/cl_I_hash_pointer.h +35 -0
- pythonknot-0.1.2/src/cpp_module/cln-1.3.7/src/integer/hash/cl_I_hash_rcobject.h +35 -0
- pythonknot-0.1.2/src/cpp_module/cln-1.3.7/src/integer/hash/cl_I_hash_rcpointer.h +35 -0
- pythonknot-0.1.2/src/cpp_module/cln-1.3.7/src/integer/hash/cl_I_hashweak_rcpointer.h +35 -0
- pythonknot-0.1.2/src/cpp_module/cln-1.3.7/src/integer/misc/combin/cl_I_combin.h +17 -0
- pythonknot-0.1.2/src/cpp_module/cln-1.3.7/src/modinteger/cl_MI.h +14 -0
- pythonknot-0.1.2/src/cpp_module/cln-1.3.7/src/modinteger/cl_MI_fix16.h +91 -0
- pythonknot-0.1.2/src/cpp_module/cln-1.3.7/src/modinteger/cl_MI_fix29.h +98 -0
- pythonknot-0.1.2/src/cpp_module/cln-1.3.7/src/modinteger/cl_MI_fix32.h +100 -0
- pythonknot-0.1.2/src/cpp_module/cln-1.3.7/src/modinteger/cl_MI_int.h +149 -0
- pythonknot-0.1.2/src/cpp_module/cln-1.3.7/src/modinteger/cl_MI_int32.h +99 -0
- pythonknot-0.1.2/src/cpp_module/cln-1.3.7/src/modinteger/cl_MI_montgom.h +238 -0
- pythonknot-0.1.2/src/cpp_module/cln-1.3.7/src/modinteger/cl_MI_pow2.h +157 -0
- pythonknot-0.1.2/src/cpp_module/cln-1.3.7/src/modinteger/cl_MI_pow2m1.h +98 -0
- pythonknot-0.1.2/src/cpp_module/cln-1.3.7/src/modinteger/cl_MI_pow2p1.h +109 -0
- pythonknot-0.1.2/src/cpp_module/cln-1.3.7/src/modinteger/cl_MI_std.h +370 -0
- pythonknot-0.1.2/src/cpp_module/cln-1.3.7/src/numtheory/cl_IF.h +55 -0
- pythonknot-0.1.2/src/cpp_module/cln-1.3.7/src/polynomial/cl_UP.h +35 -0
- pythonknot-0.1.2/src/cpp_module/cln-1.3.7/src/polynomial/elem/cl_UP_GF2.h +1066 -0
- pythonknot-0.1.2/src/cpp_module/cln-1.3.7/src/polynomial/elem/cl_UP_MI.h +506 -0
- pythonknot-0.1.2/src/cpp_module/cln-1.3.7/src/polynomial/elem/cl_UP_gen.h +485 -0
- pythonknot-0.1.2/src/cpp_module/cln-1.3.7/src/polynomial/elem/cl_UP_number.h +488 -0
- pythonknot-0.1.2/src/cpp_module/cln-1.3.7/src/rational/cl_RA.h +154 -0
- pythonknot-0.1.2/src/cpp_module/cln-1.3.7/src/real/cl_R.h +209 -0
- pythonknot-0.1.2/src/cpp_module/cln-1.3.7/src/real/division/cl_R_div_t.h +26 -0
- pythonknot-0.1.2/src/cpp_module/cln-1.3.7/src/real/format-output/cl_format.h +75 -0
- pythonknot-0.1.2/src/cpp_module/cln-1.3.7/src/timing/cl_t_config.h +29 -0
- pythonknot-0.1.2/src/cpp_module/cln-1.3.7/src/vector/cl_GV_io.h +22 -0
- pythonknot-0.1.2/src/cpp_module/cln-1.3.7/src/vector/cl_SV_io.h +22 -0
- pythonknot-0.1.2/src/cpp_module/cln-1.3.7/tests/exam.h +103 -0
- pythonknot-0.1.2/src/cpp_module/cln-1.3.7/tests/test.h +93 -0
- pythonknot-0.1.2/src/cpp_module/cln-1.3.7/tests/test_I.h +4 -0
- pythonknot-0.1.2/src/cpp_module/cln-1.3.7/tests/test_MI.h +5 -0
- pythonknot-0.1.2/src/cpp_module/cln-1.3.7/tests/test_nt.h +5 -0
- pythonknot-0.1.2/src/cpp_module/ginac/build/CMakeFiles/3.16.3/CompilerIdCXX/CMakeCXXCompilerId.cpp +660 -0
- pythonknot-0.1.2/src/cpp_module/ginac/build/config.h +5 -0
- pythonknot-0.1.2/src/cpp_module/ginac/build/ginac/function.cpp +2289 -0
- pythonknot-0.1.2/src/cpp_module/ginac/build/ginac/function.h +770 -0
- pythonknot-0.1.2/src/cpp_module/ginac/build/ginsh/ginsh_fcn_help.h +219 -0
- pythonknot-0.1.2/src/cpp_module/ginac/build/ginsh/ginsh_lexer.cpp +2202 -0
- pythonknot-0.1.2/src/cpp_module/ginac/build/ginsh/ginsh_op_help.h +15 -0
- pythonknot-0.1.2/src/cpp_module/ginac/build/ginsh/ginsh_parser.cpp +2845 -0
- pythonknot-0.1.2/src/cpp_module/ginac/check/bugme_chinrem_gcd.cpp +77 -0
- pythonknot-0.1.2/src/cpp_module/ginac/check/check_inifcns.cpp +215 -0
- pythonknot-0.1.2/src/cpp_module/ginac/check/check_lsolve.cpp +208 -0
- pythonknot-0.1.2/src/cpp_module/ginac/check/check_matrices.cpp +228 -0
- pythonknot-0.1.2/src/cpp_module/ginac/check/check_mul_info.cpp +14 -0
- pythonknot-0.1.2/src/cpp_module/ginac/check/check_numeric.cpp +128 -0
- pythonknot-0.1.2/src/cpp_module/ginac/check/error_report.h +40 -0
- pythonknot-0.1.2/src/cpp_module/ginac/check/exam_archive.cpp +82 -0
- pythonknot-0.1.2/src/cpp_module/ginac/check/exam_clifford.cpp +666 -0
- pythonknot-0.1.2/src/cpp_module/ginac/check/exam_color.cpp +163 -0
- pythonknot-0.1.2/src/cpp_module/ginac/check/exam_cra.cpp +146 -0
- pythonknot-0.1.2/src/cpp_module/ginac/check/exam_differentiation.cpp +282 -0
- pythonknot-0.1.2/src/cpp_module/ginac/check/exam_factor.cpp +312 -0
- pythonknot-0.1.2/src/cpp_module/ginac/check/exam_indexed.cpp +413 -0
- pythonknot-0.1.2/src/cpp_module/ginac/check/exam_inifcns.cpp +440 -0
- pythonknot-0.1.2/src/cpp_module/ginac/check/exam_inifcns_nstdsums.cpp +420 -0
- pythonknot-0.1.2/src/cpp_module/ginac/check/exam_inifcns_nstdsums.h +888 -0
- pythonknot-0.1.2/src/cpp_module/ginac/check/exam_lsolve.cpp +209 -0
- pythonknot-0.1.2/src/cpp_module/ginac/check/exam_matrices.cpp +405 -0
- pythonknot-0.1.2/src/cpp_module/ginac/check/exam_misc.cpp +322 -0
- pythonknot-0.1.2/src/cpp_module/ginac/check/exam_mod_gcd.cpp +108 -0
- pythonknot-0.1.2/src/cpp_module/ginac/check/exam_normalization.cpp +244 -0
- pythonknot-0.1.2/src/cpp_module/ginac/check/exam_numeric.cpp +403 -0
- pythonknot-0.1.2/src/cpp_module/ginac/check/exam_paranoia.cpp +678 -0
- pythonknot-0.1.2/src/cpp_module/ginac/check/exam_polygcd.cpp +255 -0
- pythonknot-0.1.2/src/cpp_module/ginac/check/exam_powerlaws.cpp +341 -0
- pythonknot-0.1.2/src/cpp_module/ginac/check/exam_pseries.cpp +420 -0
- pythonknot-0.1.2/src/cpp_module/ginac/check/exam_real_imag.cpp +82 -0
- pythonknot-0.1.2/src/cpp_module/ginac/check/exam_structure.cpp +102 -0
- pythonknot-0.1.2/src/cpp_module/ginac/check/factor_univariate_bug.cpp +21 -0
- pythonknot-0.1.2/src/cpp_module/ginac/check/genex.cpp +157 -0
- pythonknot-0.1.2/src/cpp_module/ginac/check/heur_gcd_bug.cpp +58 -0
- pythonknot-0.1.2/src/cpp_module/ginac/check/match_bug.cpp +127 -0
- pythonknot-0.1.2/src/cpp_module/ginac/check/mul_eval_memleak.cpp +119 -0
- pythonknot-0.1.2/src/cpp_module/ginac/check/numeric_archive.cpp +68 -0
- pythonknot-0.1.2/src/cpp_module/ginac/check/parser_bugs.cpp +115 -0
- pythonknot-0.1.2/src/cpp_module/ginac/check/parser_memleak.cpp +57 -0
- pythonknot-0.1.2/src/cpp_module/ginac/check/pgcd_infinite_loop.cpp +41 -0
- pythonknot-0.1.2/src/cpp_module/ginac/check/pgcd_relatively_prime_bug.cpp +31 -0
- pythonknot-0.1.2/src/cpp_module/ginac/check/randomize_serials.cpp +53 -0
- pythonknot-0.1.2/src/cpp_module/ginac/check/test_runner.h +90 -0
- pythonknot-0.1.2/src/cpp_module/ginac/check/time_antipode.cpp +511 -0
- pythonknot-0.1.2/src/cpp_module/ginac/check/time_dennyfliegner.cpp +99 -0
- pythonknot-0.1.2/src/cpp_module/ginac/check/time_fateman_expand.cpp +79 -0
- pythonknot-0.1.2/src/cpp_module/ginac/check/time_gammaseries.cpp +88 -0
- pythonknot-0.1.2/src/cpp_module/ginac/check/time_lw_A.cpp +73 -0
- pythonknot-0.1.2/src/cpp_module/ginac/check/time_lw_B.cpp +73 -0
- pythonknot-0.1.2/src/cpp_module/ginac/check/time_lw_C.cpp +78 -0
- pythonknot-0.1.2/src/cpp_module/ginac/check/time_lw_D.cpp +78 -0
- pythonknot-0.1.2/src/cpp_module/ginac/check/time_lw_E.cpp +78 -0
- pythonknot-0.1.2/src/cpp_module/ginac/check/time_lw_F.cpp +75 -0
- pythonknot-0.1.2/src/cpp_module/ginac/check/time_lw_G.cpp +78 -0
- pythonknot-0.1.2/src/cpp_module/ginac/check/time_lw_H.cpp +90 -0
- pythonknot-0.1.2/src/cpp_module/ginac/check/time_lw_IJKL.cpp +97 -0
- pythonknot-0.1.2/src/cpp_module/ginac/check/time_lw_M1.cpp +109 -0
- pythonknot-0.1.2/src/cpp_module/ginac/check/time_lw_M2.cpp +189 -0
- pythonknot-0.1.2/src/cpp_module/ginac/check/time_lw_N.cpp +93 -0
- pythonknot-0.1.2/src/cpp_module/ginac/check/time_lw_O.cpp +173 -0
- pythonknot-0.1.2/src/cpp_module/ginac/check/time_lw_P.cpp +87 -0
- pythonknot-0.1.2/src/cpp_module/ginac/check/time_lw_Pprime.cpp +101 -0
- pythonknot-0.1.2/src/cpp_module/ginac/check/time_lw_Q.cpp +95 -0
- pythonknot-0.1.2/src/cpp_module/ginac/check/time_lw_Qprime.cpp +107 -0
- pythonknot-0.1.2/src/cpp_module/ginac/check/time_parser.cpp +81 -0
- pythonknot-0.1.2/src/cpp_module/ginac/check/time_toeplitz.cpp +115 -0
- pythonknot-0.1.2/src/cpp_module/ginac/check/time_uvar_gcd.cpp +1911 -0
- pythonknot-0.1.2/src/cpp_module/ginac/check/time_vandermonde.cpp +112 -0
- pythonknot-0.1.2/src/cpp_module/ginac/check/timer.cpp +101 -0
- pythonknot-0.1.2/src/cpp_module/ginac/check/timer.h +53 -0
- pythonknot-0.1.2/src/cpp_module/ginac/doc/examples/archive1.cpp +47 -0
- pythonknot-0.1.2/src/cpp_module/ginac/doc/examples/compile1.cpp +72 -0
- pythonknot-0.1.2/src/cpp_module/ginac/doc/examples/compile2.cpp +62 -0
- pythonknot-0.1.2/src/cpp_module/ginac/doc/examples/compile3.cpp +39 -0
- pythonknot-0.1.2/src/cpp_module/ginac/doc/examples/derivative.cpp +30 -0
- pythonknot-0.1.2/src/cpp_module/ginac/doc/examples/lanczos.cpp +238 -0
- pythonknot-0.1.2/src/cpp_module/ginac/doc/examples/mystring.cpp +83 -0
- pythonknot-0.1.2/src/cpp_module/ginac/ginac/add.cpp +581 -0
- pythonknot-0.1.2/src/cpp_module/ginac/ginac/add.h +93 -0
- pythonknot-0.1.2/src/cpp_module/ginac/ginac/archive.cpp +692 -0
- pythonknot-0.1.2/src/cpp_module/ginac/ginac/archive.h +346 -0
- pythonknot-0.1.2/src/cpp_module/ginac/ginac/assertion.h +37 -0
- pythonknot-0.1.2/src/cpp_module/ginac/ginac/basic.cpp +927 -0
- pythonknot-0.1.2/src/cpp_module/ginac/ginac/basic.h +352 -0
- pythonknot-0.1.2/src/cpp_module/ginac/ginac/class_info.h +198 -0
- pythonknot-0.1.2/src/cpp_module/ginac/ginac/clifford.cpp +1409 -0
- pythonknot-0.1.2/src/cpp_module/ginac/ginac/clifford.h +369 -0
- pythonknot-0.1.2/src/cpp_module/ginac/ginac/color.cpp +639 -0
- pythonknot-0.1.2/src/cpp_module/ginac/ginac/color.h +198 -0
- pythonknot-0.1.2/src/cpp_module/ginac/ginac/compiler.h +36 -0
- pythonknot-0.1.2/src/cpp_module/ginac/ginac/constant.cpp +258 -0
- pythonknot-0.1.2/src/cpp_module/ginac/ginac/constant.h +88 -0
- pythonknot-0.1.2/src/cpp_module/ginac/ginac/container.h +675 -0
- pythonknot-0.1.2/src/cpp_module/ginac/ginac/crc32.h +76 -0
- pythonknot-0.1.2/src/cpp_module/ginac/ginac/ex.cpp +558 -0
- pythonknot-0.1.2/src/cpp_module/ginac/ginac/ex.h +987 -0
- pythonknot-0.1.2/src/cpp_module/ginac/ginac/excompiler.cpp +360 -0
- pythonknot-0.1.2/src/cpp_module/ginac/ginac/excompiler.h +126 -0
- pythonknot-0.1.2/src/cpp_module/ginac/ginac/expair.cpp +48 -0
- pythonknot-0.1.2/src/cpp_module/ginac/ginac/expair.h +116 -0
- pythonknot-0.1.2/src/cpp_module/ginac/ginac/expairseq.cpp +1175 -0
- pythonknot-0.1.2/src/cpp_module/ginac/ginac/expairseq.h +187 -0
- pythonknot-0.1.2/src/cpp_module/ginac/ginac/exprseq.cpp +46 -0
- pythonknot-0.1.2/src/cpp_module/ginac/ginac/exprseq.h +39 -0
- pythonknot-0.1.2/src/cpp_module/ginac/ginac/factor.cpp +2596 -0
- pythonknot-0.1.2/src/cpp_module/ginac/ginac/factor.h +46 -0
- pythonknot-0.1.2/src/cpp_module/ginac/ginac/fail.cpp +54 -0
- pythonknot-0.1.2/src/cpp_module/ginac/ginac/fail.h +48 -0
- pythonknot-0.1.2/src/cpp_module/ginac/ginac/fderivative.cpp +252 -0
- pythonknot-0.1.2/src/cpp_module/ginac/ginac/fderivative.h +91 -0
- pythonknot-0.1.2/src/cpp_module/ginac/ginac/flags.h +309 -0
- pythonknot-0.1.2/src/cpp_module/ginac/ginac/ginac.h +79 -0
- pythonknot-0.1.2/src/cpp_module/ginac/ginac/hash_map.h +38 -0
- pythonknot-0.1.2/src/cpp_module/ginac/ginac/hash_seed.h +54 -0
- pythonknot-0.1.2/src/cpp_module/ginac/ginac/idx.cpp +574 -0
- pythonknot-0.1.2/src/cpp_module/ginac/ginac/idx.h +277 -0
- pythonknot-0.1.2/src/cpp_module/ginac/ginac/indexed.cpp +1578 -0
- pythonknot-0.1.2/src/cpp_module/ginac/ginac/indexed.h +288 -0
- pythonknot-0.1.2/src/cpp_module/ginac/ginac/inifcns.cpp +1277 -0
- pythonknot-0.1.2/src/cpp_module/ginac/ginac/inifcns.h +215 -0
- pythonknot-0.1.2/src/cpp_module/ginac/ginac/inifcns_gamma.cpp +589 -0
- pythonknot-0.1.2/src/cpp_module/ginac/ginac/inifcns_nstdsums.cpp +4157 -0
- pythonknot-0.1.2/src/cpp_module/ginac/ginac/inifcns_trans.cpp +1574 -0
- pythonknot-0.1.2/src/cpp_module/ginac/ginac/integral.cpp +448 -0
- pythonknot-0.1.2/src/cpp_module/ginac/ginac/integral.h +96 -0
- pythonknot-0.1.2/src/cpp_module/ginac/ginac/lst.cpp +43 -0
- pythonknot-0.1.2/src/cpp_module/ginac/ginac/lst.h +49 -0
- pythonknot-0.1.2/src/cpp_module/ginac/ginac/matrix.cpp +1838 -0
- pythonknot-0.1.2/src/cpp_module/ginac/ginac/matrix.h +262 -0
- pythonknot-0.1.2/src/cpp_module/ginac/ginac/mul.cpp +1296 -0
- pythonknot-0.1.2/src/cpp_module/ginac/ginac/mul.h +108 -0
- pythonknot-0.1.2/src/cpp_module/ginac/ginac/ncmul.cpp +626 -0
- pythonknot-0.1.2/src/cpp_module/ginac/ginac/ncmul.h +99 -0
- pythonknot-0.1.2/src/cpp_module/ginac/ginac/normal.cpp +2686 -0
- pythonknot-0.1.2/src/cpp_module/ginac/ginac/normal.h +108 -0
- pythonknot-0.1.2/src/cpp_module/ginac/ginac/numeric.cpp +2581 -0
- pythonknot-0.1.2/src/cpp_module/ginac/ginac/numeric.h +330 -0
- pythonknot-0.1.2/src/cpp_module/ginac/ginac/operators.cpp +510 -0
- pythonknot-0.1.2/src/cpp_module/ginac/ginac/operators.h +104 -0
- pythonknot-0.1.2/src/cpp_module/ginac/ginac/parser/debug.h +72 -0
- pythonknot-0.1.2/src/cpp_module/ginac/ginac/parser/default_reader.cpp +157 -0
- pythonknot-0.1.2/src/cpp_module/ginac/ginac/parser/lexer.cpp +180 -0
- pythonknot-0.1.2/src/cpp_module/ginac/ginac/parser/lexer.h +70 -0
- pythonknot-0.1.2/src/cpp_module/ginac/ginac/parser/parse_binop_rhs.cpp +197 -0
- pythonknot-0.1.2/src/cpp_module/ginac/ginac/parser/parse_context.cpp +47 -0
- pythonknot-0.1.2/src/cpp_module/ginac/ginac/parser/parse_context.h +121 -0
- pythonknot-0.1.2/src/cpp_module/ginac/ginac/parser/parser.cpp +262 -0
- pythonknot-0.1.2/src/cpp_module/ginac/ginac/parser/parser.h +137 -0
- pythonknot-0.1.2/src/cpp_module/ginac/ginac/parser/parser_compat.cpp +69 -0
- pythonknot-0.1.2/src/cpp_module/ginac/ginac/polynomial/chinrem_gcd.cpp +35 -0
- pythonknot-0.1.2/src/cpp_module/ginac/ginac/polynomial/chinrem_gcd.h +40 -0
- pythonknot-0.1.2/src/cpp_module/ginac/ginac/polynomial/collect_vargs.cpp +206 -0
- pythonknot-0.1.2/src/cpp_module/ginac/ginac/polynomial/collect_vargs.h +88 -0
- pythonknot-0.1.2/src/cpp_module/ginac/ginac/polynomial/cra_garner.cpp +113 -0
- pythonknot-0.1.2/src/cpp_module/ginac/ginac/polynomial/cra_garner.h +36 -0
- pythonknot-0.1.2/src/cpp_module/ginac/ginac/polynomial/debug.h +53 -0
- pythonknot-0.1.2/src/cpp_module/ginac/ginac/polynomial/divide_in_z_p.cpp +112 -0
- pythonknot-0.1.2/src/cpp_module/ginac/ginac/polynomial/divide_in_z_p.h +48 -0
- pythonknot-0.1.2/src/cpp_module/ginac/ginac/polynomial/euclid_gcd_wrap.h +82 -0
- pythonknot-0.1.2/src/cpp_module/ginac/ginac/polynomial/eval_point_finder.h +73 -0
- pythonknot-0.1.2/src/cpp_module/ginac/ginac/polynomial/eval_uvar.h +59 -0
- pythonknot-0.1.2/src/cpp_module/ginac/ginac/polynomial/gcd_euclid.h +66 -0
- pythonknot-0.1.2/src/cpp_module/ginac/ginac/polynomial/gcd_uvar.cpp +54 -0
- pythonknot-0.1.2/src/cpp_module/ginac/ginac/polynomial/heur_gcd_uvar.h +88 -0
- pythonknot-0.1.2/src/cpp_module/ginac/ginac/polynomial/interpolate_padic_uvar.h +61 -0
- pythonknot-0.1.2/src/cpp_module/ginac/ginac/polynomial/mgcd.cpp +132 -0
- pythonknot-0.1.2/src/cpp_module/ginac/ginac/polynomial/mod_gcd.cpp +198 -0
- pythonknot-0.1.2/src/cpp_module/ginac/ginac/polynomial/mod_gcd.h +34 -0
- pythonknot-0.1.2/src/cpp_module/ginac/ginac/polynomial/newton_interpolate.h +60 -0
- pythonknot-0.1.2/src/cpp_module/ginac/ginac/polynomial/normalize.cpp +49 -0
- pythonknot-0.1.2/src/cpp_module/ginac/ginac/polynomial/normalize.h +93 -0
- pythonknot-0.1.2/src/cpp_module/ginac/ginac/polynomial/optimal_vars_finder.cpp +154 -0
- pythonknot-0.1.2/src/cpp_module/ginac/ginac/polynomial/optimal_vars_finder.h +46 -0
- pythonknot-0.1.2/src/cpp_module/ginac/ginac/polynomial/pgcd.cpp +156 -0
- pythonknot-0.1.2/src/cpp_module/ginac/ginac/polynomial/pgcd.h +49 -0
- pythonknot-0.1.2/src/cpp_module/ginac/ginac/polynomial/poly_cra.h +60 -0
- pythonknot-0.1.2/src/cpp_module/ginac/ginac/polynomial/prem_uvar.h +68 -0
- pythonknot-0.1.2/src/cpp_module/ginac/ginac/polynomial/primes_factory.h +82 -0
- pythonknot-0.1.2/src/cpp_module/ginac/ginac/polynomial/primpart_content.cpp +98 -0
- pythonknot-0.1.2/src/cpp_module/ginac/ginac/polynomial/remainder.cpp +87 -0
- pythonknot-0.1.2/src/cpp_module/ginac/ginac/polynomial/remainder.h +84 -0
- pythonknot-0.1.2/src/cpp_module/ginac/ginac/polynomial/ring_traits.h +67 -0
- pythonknot-0.1.2/src/cpp_module/ginac/ginac/polynomial/smod_helpers.h +95 -0
- pythonknot-0.1.2/src/cpp_module/ginac/ginac/polynomial/sr_gcd_uvar.h +117 -0
- pythonknot-0.1.2/src/cpp_module/ginac/ginac/polynomial/upoly.h +182 -0
- pythonknot-0.1.2/src/cpp_module/ginac/ginac/polynomial/upoly_io.cpp +75 -0
- pythonknot-0.1.2/src/cpp_module/ginac/ginac/polynomial/upoly_io.h +37 -0
- pythonknot-0.1.2/src/cpp_module/ginac/ginac/power.cpp +1155 -0
- pythonknot-0.1.2/src/cpp_module/ginac/ginac/power.h +135 -0
- pythonknot-0.1.2/src/cpp_module/ginac/ginac/print.cpp +96 -0
- pythonknot-0.1.2/src/cpp_module/ginac/ginac/print.h +283 -0
- pythonknot-0.1.2/src/cpp_module/ginac/ginac/pseries.cpp +1277 -0
- pythonknot-0.1.2/src/cpp_module/ginac/ginac/pseries.h +148 -0
- pythonknot-0.1.2/src/cpp_module/ginac/ginac/ptr.h +167 -0
- pythonknot-0.1.2/src/cpp_module/ginac/ginac/registrar.cpp +31 -0
- pythonknot-0.1.2/src/cpp_module/ginac/ginac/registrar.h +211 -0
- pythonknot-0.1.2/src/cpp_module/ginac/ginac/relational.cpp +334 -0
- pythonknot-0.1.2/src/cpp_module/ginac/ginac/relational.h +119 -0
- pythonknot-0.1.2/src/cpp_module/ginac/ginac/remember.cpp +190 -0
- pythonknot-0.1.2/src/cpp_module/ginac/ginac/remember.h +101 -0
- pythonknot-0.1.2/src/cpp_module/ginac/ginac/structure.h +247 -0
- pythonknot-0.1.2/src/cpp_module/ginac/ginac/symbol.cpp +364 -0
- pythonknot-0.1.2/src/cpp_module/ginac/ginac/symbol.h +142 -0
- pythonknot-0.1.2/src/cpp_module/ginac/ginac/symmetry.cpp +578 -0
- pythonknot-0.1.2/src/cpp_module/ginac/ginac/symmetry.h +186 -0
- pythonknot-0.1.2/src/cpp_module/ginac/ginac/tensor.cpp +678 -0
- pythonknot-0.1.2/src/cpp_module/ginac/ginac/tensor.h +260 -0
- pythonknot-0.1.2/src/cpp_module/ginac/ginac/utils.cpp +537 -0
- pythonknot-0.1.2/src/cpp_module/ginac/ginac/utils.h +631 -0
- pythonknot-0.1.2/src/cpp_module/ginac/ginac/version.h +95 -0
- pythonknot-0.1.2/src/cpp_module/ginac/ginac/wildcard.cpp +134 -0
- pythonknot-0.1.2/src/cpp_module/ginac/ginac/wildcard.h +82 -0
- pythonknot-0.1.2/src/cpp_module/ginac/ginsh/ginsh.h +74 -0
- pythonknot-0.1.2/src/cpp_module/ginac/ginsh/ginsh_extensions.h +33 -0
- pythonknot-0.1.2/src/cpp_module/ginac/tools/viewgar.cpp +66 -0
- pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/build/CMakeFiles/3.16.3/CompilerIdCXX/CMakeCXXCompilerId.cpp +660 -0
- pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/build/config.h +5 -0
- pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/build/ginac/function.cpp +2291 -0
- pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/build/ginac/function.h +770 -0
- pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/build/ginsh/ginsh_fcn_help.h +227 -0
- pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/build/ginsh/ginsh_lexer.cpp +2213 -0
- pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/build/ginsh/ginsh_op_help.h +15 -0
- pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/build/ginsh/ginsh_parser.cpp +2982 -0
- pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/check/check_cra.cpp +146 -0
- pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/check/check_inifcns.cpp +215 -0
- pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/check/check_lsolve.cpp +208 -0
- pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/check/check_matrices.cpp +228 -0
- pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/check/check_numeric.cpp +128 -0
- pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/check/error_report.h +40 -0
- pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/check/exam_archive.cpp +125 -0
- pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/check/exam_chinrem_gcd.cpp +77 -0
- pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/check/exam_clifford.cpp +666 -0
- pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/check/exam_collect.cpp +152 -0
- pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/check/exam_collect_common_factors.cpp +59 -0
- pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/check/exam_color.cpp +163 -0
- pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/check/exam_differentiation.cpp +282 -0
- pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/check/exam_factor.cpp +338 -0
- pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/check/exam_function_exvector.cpp +116 -0
- pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/check/exam_heur_gcd.cpp +58 -0
- pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/check/exam_indexed.cpp +413 -0
- pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/check/exam_inifcns.cpp +440 -0
- pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/check/exam_inifcns_elliptic.cpp +419 -0
- pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/check/exam_inifcns_nstdsums.cpp +421 -0
- pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/check/exam_inifcns_nstdsums.h +888 -0
- pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/check/exam_lsolve.cpp +209 -0
- pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/check/exam_match.cpp +127 -0
- pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/check/exam_matrices.cpp +405 -0
- pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/check/exam_misc.cpp +320 -0
- pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/check/exam_mod_gcd.cpp +108 -0
- pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/check/exam_normalization.cpp +353 -0
- pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/check/exam_numeric.cpp +403 -0
- pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/check/exam_paranoia.cpp +704 -0
- pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/check/exam_parser.cpp +218 -0
- pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/check/exam_pgcd.cpp +68 -0
- pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/check/exam_polygcd.cpp +255 -0
- pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/check/exam_powerlaws.cpp +341 -0
- pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/check/exam_pseries.cpp +439 -0
- pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/check/exam_real_imag.cpp +82 -0
- pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/check/exam_relational.cpp +151 -0
- pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/check/exam_sqrfree.cpp +243 -0
- pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/check/exam_structure.cpp +102 -0
- pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/check/genex.cpp +157 -0
- pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/check/randomize_serials.cpp +53 -0
- pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/check/test_runner.h +90 -0
- pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/check/time_antipode.cpp +511 -0
- pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/check/time_dennyfliegner.cpp +99 -0
- pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/check/time_fateman_expand.cpp +79 -0
- pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/check/time_gammaseries.cpp +88 -0
- pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/check/time_lw_A.cpp +73 -0
- pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/check/time_lw_B.cpp +73 -0
- pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/check/time_lw_C.cpp +78 -0
- pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/check/time_lw_D.cpp +78 -0
- pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/check/time_lw_E.cpp +78 -0
- pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/check/time_lw_F.cpp +75 -0
- pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/check/time_lw_G.cpp +78 -0
- pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/check/time_lw_H.cpp +90 -0
- pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/check/time_lw_IJKL.cpp +97 -0
- pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/check/time_lw_M1.cpp +109 -0
- pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/check/time_lw_M2.cpp +189 -0
- pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/check/time_lw_N.cpp +93 -0
- pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/check/time_lw_O.cpp +173 -0
- pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/check/time_lw_P.cpp +87 -0
- pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/check/time_lw_Pprime.cpp +101 -0
- pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/check/time_lw_Q.cpp +95 -0
- pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/check/time_lw_Qprime.cpp +107 -0
- pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/check/time_parser.cpp +81 -0
- pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/check/time_toeplitz.cpp +115 -0
- pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/check/time_uvar_gcd.cpp +1911 -0
- pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/check/time_vandermonde.cpp +112 -0
- pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/check/timer.cpp +101 -0
- pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/check/timer.h +53 -0
- pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/config/config.h +89 -0
- pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/doc/examples/archive1.cpp +51 -0
- pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/doc/examples/compile1.cpp +76 -0
- pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/doc/examples/compile2.cpp +67 -0
- pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/doc/examples/compile3.cpp +43 -0
- pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/doc/examples/derivative.cpp +34 -0
- pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/doc/examples/lanczos.cpp +239 -0
- pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/doc/examples/mystring.cpp +86 -0
- pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/ginac/add.cpp +581 -0
- pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/ginac/add.h +93 -0
- pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/ginac/archive.cpp +689 -0
- pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/ginac/archive.h +346 -0
- pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/ginac/assertion.h +37 -0
- pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/ginac/basic.cpp +927 -0
- pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/ginac/basic.h +352 -0
- pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/ginac/class_info.h +198 -0
- pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/ginac/clifford.cpp +1409 -0
- pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/ginac/clifford.h +374 -0
- pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/ginac/color.cpp +639 -0
- pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/ginac/color.h +198 -0
- pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/ginac/compiler.h +36 -0
- pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/ginac/constant.cpp +258 -0
- pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/ginac/constant.h +88 -0
- pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/ginac/container.h +509 -0
- pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/ginac/crc32.h +76 -0
- pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/ginac/ex.cpp +578 -0
- pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/ginac/ex.h +1018 -0
- pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/ginac/excompiler.cpp +360 -0
- pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/ginac/excompiler.h +127 -0
- pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/ginac/expair.cpp +48 -0
- pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/ginac/expair.h +116 -0
- pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/ginac/expairseq.cpp +1175 -0
- pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/ginac/expairseq.h +187 -0
- pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/ginac/exprseq.cpp +46 -0
- pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/ginac/exprseq.h +44 -0
- pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/ginac/factor.cpp +2589 -0
- pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/ginac/factor.h +46 -0
- pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/ginac/fail.cpp +54 -0
- pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/ginac/fail.h +48 -0
- pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/ginac/fderivative.cpp +252 -0
- pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/ginac/fderivative.h +91 -0
- pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/ginac/flags.h +309 -0
- pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/ginac/function.cpp +2291 -0
- pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/ginac/function.h +770 -0
- pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/ginac/ginac.h +81 -0
- pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/ginac/hash_map.h +38 -0
- pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/ginac/hash_seed.h +54 -0
- pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/ginac/idx.cpp +574 -0
- pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/ginac/idx.h +274 -0
- pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/ginac/indexed.cpp +1578 -0
- pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/ginac/indexed.h +278 -0
- pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/ginac/inifcns.cpp +1292 -0
- pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/ginac/inifcns.h +241 -0
- pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/ginac/inifcns_elliptic.cpp +632 -0
- pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/ginac/inifcns_gamma.cpp +589 -0
- pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/ginac/inifcns_nstdsums.cpp +4164 -0
- pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/ginac/inifcns_trans.cpp +1687 -0
- pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/ginac/integral.cpp +449 -0
- pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/ginac/integral.h +96 -0
- pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/ginac/integration_kernel.cpp +2148 -0
- pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/ginac/integration_kernel.h +669 -0
- pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/ginac/lst.cpp +44 -0
- pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/ginac/lst.h +55 -0
- pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/ginac/matrix.cpp +1838 -0
- pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/ginac/matrix.h +195 -0
- pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/ginac/mul.cpp +1296 -0
- pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/ginac/mul.h +108 -0
- pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/ginac/ncmul.cpp +626 -0
- pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/ginac/ncmul.h +99 -0
- pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/ginac/normal.cpp +2909 -0
- pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/ginac/normal.h +108 -0
- pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/ginac/numeric.cpp +2593 -0
- pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/ginac/numeric.h +332 -0
- pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/ginac/operators.cpp +510 -0
- pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/ginac/operators.h +104 -0
- pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/ginac/parser/debug.h +72 -0
- pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/ginac/parser/default_reader.cpp +157 -0
- pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/ginac/parser/lexer.cpp +180 -0
- pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/ginac/parser/lexer.h +70 -0
- pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/ginac/parser/parse_binop_rhs.cpp +215 -0
- pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/ginac/parser/parse_context.cpp +47 -0
- pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/ginac/parser/parse_context.h +121 -0
- pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/ginac/parser/parser.cpp +243 -0
- pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/ginac/parser/parser.h +137 -0
- pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/ginac/parser/parser_compat.cpp +69 -0
- pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/ginac/polynomial/chinrem_gcd.cpp +35 -0
- pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/ginac/polynomial/chinrem_gcd.h +40 -0
- pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/ginac/polynomial/collect_vargs.cpp +206 -0
- pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/ginac/polynomial/collect_vargs.h +88 -0
- pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/ginac/polynomial/cra_garner.cpp +113 -0
- pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/ginac/polynomial/cra_garner.h +36 -0
- pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/ginac/polynomial/debug.h +53 -0
- pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/ginac/polynomial/divide_in_z_p.cpp +112 -0
- pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/ginac/polynomial/divide_in_z_p.h +48 -0
- pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/ginac/polynomial/euclid_gcd_wrap.h +82 -0
- pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/ginac/polynomial/eval_point_finder.h +73 -0
- pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/ginac/polynomial/eval_uvar.h +59 -0
- pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/ginac/polynomial/gcd_euclid.h +66 -0
- pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/ginac/polynomial/gcd_uvar.cpp +54 -0
- pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/ginac/polynomial/heur_gcd_uvar.h +88 -0
- pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/ginac/polynomial/interpolate_padic_uvar.h +61 -0
- pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/ginac/polynomial/mgcd.cpp +132 -0
- pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/ginac/polynomial/mod_gcd.cpp +198 -0
- pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/ginac/polynomial/mod_gcd.h +34 -0
- pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/ginac/polynomial/newton_interpolate.h +60 -0
- pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/ginac/polynomial/normalize.cpp +49 -0
- pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/ginac/polynomial/normalize.h +93 -0
- pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/ginac/polynomial/optimal_vars_finder.cpp +154 -0
- pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/ginac/polynomial/optimal_vars_finder.h +46 -0
- pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/ginac/polynomial/pgcd.cpp +156 -0
- pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/ginac/polynomial/pgcd.h +49 -0
- pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/ginac/polynomial/poly_cra.h +60 -0
- pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/ginac/polynomial/prem_uvar.h +68 -0
- pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/ginac/polynomial/primes_factory.h +82 -0
- pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/ginac/polynomial/primpart_content.cpp +98 -0
- pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/ginac/polynomial/remainder.cpp +87 -0
- pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/ginac/polynomial/remainder.h +84 -0
- pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/ginac/polynomial/ring_traits.h +67 -0
- pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/ginac/polynomial/smod_helpers.h +95 -0
- pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/ginac/polynomial/sr_gcd_uvar.h +117 -0
- pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/ginac/polynomial/upoly.h +182 -0
- pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/ginac/polynomial/upoly_io.cpp +75 -0
- pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/ginac/polynomial/upoly_io.h +37 -0
- pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/ginac/power.cpp +1156 -0
- pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/ginac/power.h +135 -0
- pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/ginac/print.cpp +96 -0
- pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/ginac/print.h +283 -0
- pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/ginac/pseries.cpp +1290 -0
- pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/ginac/pseries.h +148 -0
- pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/ginac/ptr.h +167 -0
- pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/ginac/registrar.cpp +31 -0
- pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/ginac/registrar.h +211 -0
- pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/ginac/relational.cpp +358 -0
- pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/ginac/relational.h +121 -0
- pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/ginac/remember.cpp +190 -0
- pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/ginac/remember.h +101 -0
- pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/ginac/structure.h +247 -0
- pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/ginac/symbol.cpp +364 -0
- pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/ginac/symbol.h +142 -0
- pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/ginac/symmetry.cpp +578 -0
- pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/ginac/symmetry.h +186 -0
- pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/ginac/tensor.cpp +678 -0
- pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/ginac/tensor.h +260 -0
- pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/ginac/utils.cpp +542 -0
- pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/ginac/utils.h +631 -0
- pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/ginac/utils_multi_iterator.h +1488 -0
- pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/ginac/version.h +98 -0
- pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/ginac/wildcard.cpp +134 -0
- pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/ginac/wildcard.h +82 -0
- pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/ginsh/ginsh.h +70 -0
- pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/ginsh/ginsh_extensions.h +33 -0
- pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/ginsh/ginsh_lexer.cpp +2212 -0
- pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/ginsh/ginsh_parser.cpp +2733 -0
- pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/tools/viewgar.cpp +66 -0
- pythonknot-0.1.2/src/cpp_module/src/knot.cpp +139 -0
- pythonknot-0.1.2/src/cpp_module/src/knot.h +50 -0
- pythonknot-0.1.2/src/cpp_module/src/knot_alex_table.h +91 -0
- pythonknot-0.1.2/src/cpp_module/src/knottype.cpp +525 -0
- pythonknot-0.1.2/src/cpp_module/src/knottype.h +22 -0
- pythonknot-0.1.2/src/cpp_module/src/main.cpp +108 -0
- pythonknot-0.1.2/src/cpp_module/src/my_function.cpp +636 -0
- pythonknot-0.1.2/src/cpp_module/src/myfunction.h +65 -0
- {pythonknot-0.1.1 → pythonknot-0.1.2}/src/pythonknot.egg-info/PKG-INFO +1 -1
- pythonknot-0.1.2/src/pythonknot.egg-info/SOURCES.txt +1080 -0
- pythonknot-0.1.1/src/pythonknot.egg-info/SOURCES.txt +0 -14
- {pythonknot-0.1.1 → pythonknot-0.1.2}/README.md +0 -0
- {pythonknot-0.1.1 → pythonknot-0.1.2}/setup.cfg +0 -0
- {pythonknot-0.1.1 → pythonknot-0.1.2}/src/pythonknot/__init__.py +0 -0
- {pythonknot-0.1.1 → pythonknot-0.1.2}/src/pythonknot/polymer.py +0 -0
- {pythonknot-0.1.1 → pythonknot-0.1.2}/src/pythonknot/rmsd.py +0 -0
- {pythonknot-0.1.1 → pythonknot-0.1.2}/src/pythonknot/xyz.py +0 -0
- {pythonknot-0.1.1 → pythonknot-0.1.2}/src/pythonknot.egg-info/dependency_links.txt +0 -0
- {pythonknot-0.1.1 → pythonknot-0.1.2}/src/pythonknot.egg-info/not-zip-safe +0 -0
- {pythonknot-0.1.1 → pythonknot-0.1.2}/src/pythonknot.egg-info/requires.txt +0 -0
- {pythonknot-0.1.1 → pythonknot-0.1.2}/src/pythonknot.egg-info/top_level.txt +0 -0
- {pythonknot-0.1.1 → pythonknot-0.1.2}/test/test.py +0 -0
- {pythonknot-0.1.1 → pythonknot-0.1.2}/test/test2.py +0 -0
|
@@ -126,7 +126,7 @@ class CMakeBuild(build_ext):
|
|
|
126
126
|
|
|
127
127
|
setuptools.setup(
|
|
128
128
|
name="pythonknot",
|
|
129
|
-
version="0.1.
|
|
129
|
+
version="0.1.2",
|
|
130
130
|
author="yjianzhu",
|
|
131
131
|
author_email="yjianzhu@mail.ustc.edu.cn",
|
|
132
132
|
description="pythonknot for knot theory calculation",
|
|
@@ -147,4 +147,5 @@ setuptools.setup(
|
|
|
147
147
|
'setuptools',
|
|
148
148
|
'wheel'
|
|
149
149
|
],
|
|
150
|
+
include_package_data=True,
|
|
150
151
|
)
|
|
@@ -0,0 +1,82 @@
|
|
|
1
|
+
cmake_minimum_required(VERSION 3.14) # 设置最低的CMake版本
|
|
2
|
+
project(alexander_poly) # 定义项目名称
|
|
3
|
+
|
|
4
|
+
list(APPEND CMAKE_MODULE_PATH "${CMAKE_CURRENT_SOURCE_DIR}/cmake_file")
|
|
5
|
+
|
|
6
|
+
set(CMAKE_CXX_STANDARD 11)
|
|
7
|
+
set(CMAKE_CXX_STANDARD_REQUIRED True)
|
|
8
|
+
set(CMAKE_LINK_SEARCH_END_STATIC FALSE)
|
|
9
|
+
|
|
10
|
+
# 寻找Python环境
|
|
11
|
+
find_package(Python COMPONENTS Development NumPy REQUIRED)
|
|
12
|
+
message(STATUS "Python3_EXECUTABLE: ${Python_EXECUTABLE}")
|
|
13
|
+
|
|
14
|
+
# 寻找pybind11库
|
|
15
|
+
find_package(pybind11 CONFIG REQUIRED)
|
|
16
|
+
|
|
17
|
+
# 寻找 Eigen3 库
|
|
18
|
+
find_package(Eigen3 3.3 REQUIRED NO_MODULE)
|
|
19
|
+
# find_package(GMP REQUIRED)
|
|
20
|
+
# message(STATUS "GMP Include Directory: ${GMP_LIBRARIES}")
|
|
21
|
+
|
|
22
|
+
# find package cln and ginac
|
|
23
|
+
find_package(CLN REQUIRED)
|
|
24
|
+
|
|
25
|
+
# if(CLN_FOUND)
|
|
26
|
+
# message(STATUS "Found CLN: Yes")
|
|
27
|
+
# message(STATUS "CLN Include Directory: ${CLN_INCLUDE_DIRS}")
|
|
28
|
+
# message(STATUS "CLN Libraries: ${CLN_LIBRARIES}")
|
|
29
|
+
# message(STATUS "CLN Version: ${CLN_VERSION}")
|
|
30
|
+
# else()
|
|
31
|
+
# message(STATUS "Found CLN: No")
|
|
32
|
+
# endif()
|
|
33
|
+
|
|
34
|
+
# set 优先找so文件
|
|
35
|
+
# find_package(GINAC REQUIRED)
|
|
36
|
+
|
|
37
|
+
set(CMAKE_FIND_LIBRARY_SUFFIXES ".so" ".a" ".lib")
|
|
38
|
+
# message(${CMAKE_CURRENT_SOURCE_DIR})
|
|
39
|
+
|
|
40
|
+
find_library(GINAC_LIBRARY
|
|
41
|
+
NAMES ginac
|
|
42
|
+
PATHS "${CMAKE_CURRENT_SOURCE_DIR}/ginac/build/ginac/"
|
|
43
|
+
NO_DEFAULT_PATH
|
|
44
|
+
)
|
|
45
|
+
# find_library(CLN_LIBRARY
|
|
46
|
+
# NAMES cln
|
|
47
|
+
# PATHS "${CMAKE_CURRENT_SOURCE_DIR}/cln/build/lib/"
|
|
48
|
+
# NO_DEFAULT_PATH
|
|
49
|
+
# )
|
|
50
|
+
|
|
51
|
+
if(NOT GINAC_LIBRARY)
|
|
52
|
+
message(FATAL_ERROR "GINAC library not found")
|
|
53
|
+
else()
|
|
54
|
+
message(STATUS "Found GINAC: Yes")
|
|
55
|
+
message(STATUS "GINAC Library: ${GINAC_LIBRARY}")
|
|
56
|
+
endif()
|
|
57
|
+
|
|
58
|
+
# if(NOT CLN_LIBRARY)
|
|
59
|
+
# message(FATAL_ERROR "CLN library not found")
|
|
60
|
+
# else()
|
|
61
|
+
# message(STATUS "Found CLN: Yes")
|
|
62
|
+
# message(STATUS "CLN Library: ${CLN_LIBRARY}")
|
|
63
|
+
# endif()
|
|
64
|
+
|
|
65
|
+
file(GLOB SOURCE_FILES "src/*.cpp")
|
|
66
|
+
# file(GLOB HEADER_FILES "src/*.h")
|
|
67
|
+
# 创建一个模块
|
|
68
|
+
pybind11_add_module(alexander_poly MODULE ${SOURCE_FILES})
|
|
69
|
+
|
|
70
|
+
target_link_libraries(alexander_poly PRIVATE Eigen3::Eigen ${GINAC_LIBRARY} ${CLN_LIBRARIES})
|
|
71
|
+
|
|
72
|
+
include_directories(${GMP_INCLUDE_DIRS})
|
|
73
|
+
|
|
74
|
+
# install(TARGETS alexander_poly
|
|
75
|
+
# LIBRARY DESTINATION ${CMAKE_INSTALL_LIBDIR}
|
|
76
|
+
# ARCHIVE DESTINATION ${CMAKE_INSTALL_LIBDIR}
|
|
77
|
+
# RUNTIME DESTINATION ${CMAKE_INSTALL_BINDIR}
|
|
78
|
+
# )
|
|
79
|
+
|
|
80
|
+
# install(FILES ${GINAC_LIBRARY}
|
|
81
|
+
# DESTINATION ${CMAKE_INSTALL_LIBDIR}
|
|
82
|
+
# )
|