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.
Files changed (1083) hide show
  1. pythonknot-0.1.2/MANIFEST.in +2 -0
  2. {pythonknot-0.1.1 → pythonknot-0.1.2}/PKG-INFO +1 -1
  3. {pythonknot-0.1.1 → pythonknot-0.1.2}/setup.py +2 -1
  4. pythonknot-0.1.2/src/cpp_module/CMakeLists.txt +82 -0
  5. pythonknot-0.1.2/src/cpp_module/build/CMakeFiles/3.16.3/CompilerIdCXX/CMakeCXXCompilerId.cpp +660 -0
  6. pythonknot-0.1.2/src/cpp_module/cln/autoconf/cl_config.h +159 -0
  7. pythonknot-0.1.2/src/cpp_module/cln/build/include/cln/GV.h +350 -0
  8. pythonknot-0.1.2/src/cpp_module/cln/build/include/cln/GV_complex.h +58 -0
  9. pythonknot-0.1.2/src/cpp_module/cln/build/include/cln/GV_integer.h +91 -0
  10. pythonknot-0.1.2/src/cpp_module/cln/build/include/cln/GV_modinteger.h +51 -0
  11. pythonknot-0.1.2/src/cpp_module/cln/build/include/cln/GV_number.h +55 -0
  12. pythonknot-0.1.2/src/cpp_module/cln/build/include/cln/GV_rational.h +58 -0
  13. pythonknot-0.1.2/src/cpp_module/cln/build/include/cln/GV_real.h +58 -0
  14. pythonknot-0.1.2/src/cpp_module/cln/build/include/cln/SV.h +217 -0
  15. pythonknot-0.1.2/src/cpp_module/cln/build/include/cln/SV_complex.h +54 -0
  16. pythonknot-0.1.2/src/cpp_module/cln/build/include/cln/SV_integer.h +51 -0
  17. pythonknot-0.1.2/src/cpp_module/cln/build/include/cln/SV_number.h +67 -0
  18. pythonknot-0.1.2/src/cpp_module/cln/build/include/cln/SV_rational.h +54 -0
  19. pythonknot-0.1.2/src/cpp_module/cln/build/include/cln/SV_real.h +54 -0
  20. pythonknot-0.1.2/src/cpp_module/cln/build/include/cln/SV_ringelt.h +72 -0
  21. pythonknot-0.1.2/src/cpp_module/cln/build/include/cln/V.h +23 -0
  22. pythonknot-0.1.2/src/cpp_module/cln/build/include/cln/cln.h +141 -0
  23. pythonknot-0.1.2/src/cpp_module/cln/build/include/cln/complex.h +157 -0
  24. pythonknot-0.1.2/src/cpp_module/cln/build/include/cln/complex_class.h +76 -0
  25. pythonknot-0.1.2/src/cpp_module/cln/build/include/cln/complex_io.h +48 -0
  26. pythonknot-0.1.2/src/cpp_module/cln/build/include/cln/complex_ring.h +26 -0
  27. pythonknot-0.1.2/src/cpp_module/cln/build/include/cln/condition.h +39 -0
  28. pythonknot-0.1.2/src/cpp_module/cln/build/include/cln/config.h +28 -0
  29. pythonknot-0.1.2/src/cpp_module/cln/build/include/cln/dfloat.h +326 -0
  30. pythonknot-0.1.2/src/cpp_module/cln/build/include/cln/dfloat_class.h +75 -0
  31. pythonknot-0.1.2/src/cpp_module/cln/build/include/cln/dfloat_io.h +31 -0
  32. pythonknot-0.1.2/src/cpp_module/cln/build/include/cln/exception.h +40 -0
  33. pythonknot-0.1.2/src/cpp_module/cln/build/include/cln/ffloat.h +329 -0
  34. pythonknot-0.1.2/src/cpp_module/cln/build/include/cln/ffloat_class.h +85 -0
  35. pythonknot-0.1.2/src/cpp_module/cln/build/include/cln/ffloat_io.h +31 -0
  36. pythonknot-0.1.2/src/cpp_module/cln/build/include/cln/float.h +754 -0
  37. pythonknot-0.1.2/src/cpp_module/cln/build/include/cln/float_class.h +52 -0
  38. pythonknot-0.1.2/src/cpp_module/cln/build/include/cln/float_io.h +81 -0
  39. pythonknot-0.1.2/src/cpp_module/cln/build/include/cln/floatformat.h +21 -0
  40. pythonknot-0.1.2/src/cpp_module/cln/build/include/cln/host_cpu.h +84 -0
  41. pythonknot-0.1.2/src/cpp_module/cln/build/include/cln/input.h +61 -0
  42. pythonknot-0.1.2/src/cpp_module/cln/build/include/cln/integer.h +666 -0
  43. pythonknot-0.1.2/src/cpp_module/cln/build/include/cln/integer_class.h +69 -0
  44. pythonknot-0.1.2/src/cpp_module/cln/build/include/cln/integer_io.h +105 -0
  45. pythonknot-0.1.2/src/cpp_module/cln/build/include/cln/integer_ring.h +26 -0
  46. pythonknot-0.1.2/src/cpp_module/cln/build/include/cln/intparam.h +94 -0
  47. pythonknot-0.1.2/src/cpp_module/cln/build/include/cln/io.h +89 -0
  48. pythonknot-0.1.2/src/cpp_module/cln/build/include/cln/lfloat.h +433 -0
  49. pythonknot-0.1.2/src/cpp_module/cln/build/include/cln/lfloat_class.h +73 -0
  50. pythonknot-0.1.2/src/cpp_module/cln/build/include/cln/lfloat_io.h +31 -0
  51. pythonknot-0.1.2/src/cpp_module/cln/build/include/cln/malloc.h +17 -0
  52. pythonknot-0.1.2/src/cpp_module/cln/build/include/cln/modinteger.h +466 -0
  53. pythonknot-0.1.2/src/cpp_module/cln/build/include/cln/modules.h +37 -0
  54. pythonknot-0.1.2/src/cpp_module/cln/build/include/cln/null_ring.h +24 -0
  55. pythonknot-0.1.2/src/cpp_module/cln/build/include/cln/number.h +308 -0
  56. pythonknot-0.1.2/src/cpp_module/cln/build/include/cln/number_io.h +42 -0
  57. pythonknot-0.1.2/src/cpp_module/cln/build/include/cln/numtheory.h +90 -0
  58. pythonknot-0.1.2/src/cpp_module/cln/build/include/cln/object.h +550 -0
  59. pythonknot-0.1.2/src/cpp_module/cln/build/include/cln/output.h +74 -0
  60. pythonknot-0.1.2/src/cpp_module/cln/build/include/cln/proplist.h +55 -0
  61. pythonknot-0.1.2/src/cpp_module/cln/build/include/cln/random.h +55 -0
  62. pythonknot-0.1.2/src/cpp_module/cln/build/include/cln/rational.h +357 -0
  63. pythonknot-0.1.2/src/cpp_module/cln/build/include/cln/rational_class.h +71 -0
  64. pythonknot-0.1.2/src/cpp_module/cln/build/include/cln/rational_io.h +78 -0
  65. pythonknot-0.1.2/src/cpp_module/cln/build/include/cln/rational_ring.h +26 -0
  66. pythonknot-0.1.2/src/cpp_module/cln/build/include/cln/real.h +637 -0
  67. pythonknot-0.1.2/src/cpp_module/cln/build/include/cln/real_class.h +76 -0
  68. pythonknot-0.1.2/src/cpp_module/cln/build/include/cln/real_io.h +57 -0
  69. pythonknot-0.1.2/src/cpp_module/cln/build/include/cln/real_ring.h +27 -0
  70. pythonknot-0.1.2/src/cpp_module/cln/build/include/cln/ring.h +464 -0
  71. pythonknot-0.1.2/src/cpp_module/cln/build/include/cln/sfloat.h +300 -0
  72. pythonknot-0.1.2/src/cpp_module/cln/build/include/cln/sfloat_class.h +45 -0
  73. pythonknot-0.1.2/src/cpp_module/cln/build/include/cln/sfloat_io.h +31 -0
  74. pythonknot-0.1.2/src/cpp_module/cln/build/include/cln/string.h +172 -0
  75. pythonknot-0.1.2/src/cpp_module/cln/build/include/cln/symbol.h +48 -0
  76. pythonknot-0.1.2/src/cpp_module/cln/build/include/cln/timing.h +78 -0
  77. pythonknot-0.1.2/src/cpp_module/cln/build/include/cln/types.h +188 -0
  78. pythonknot-0.1.2/src/cpp_module/cln/build/include/cln/univpoly.h +733 -0
  79. pythonknot-0.1.2/src/cpp_module/cln/build/include/cln/univpoly_complex.h +228 -0
  80. pythonknot-0.1.2/src/cpp_module/cln/build/include/cln/univpoly_integer.h +233 -0
  81. pythonknot-0.1.2/src/cpp_module/cln/build/include/cln/univpoly_modint.h +217 -0
  82. pythonknot-0.1.2/src/cpp_module/cln/build/include/cln/univpoly_rational.h +232 -0
  83. pythonknot-0.1.2/src/cpp_module/cln/build/include/cln/univpoly_real.h +228 -0
  84. pythonknot-0.1.2/src/cpp_module/cln/build/include/cln/version.h +27 -0
  85. pythonknot-0.1.2/src/cpp_module/cln/include/cln/GV.h +350 -0
  86. pythonknot-0.1.2/src/cpp_module/cln/include/cln/GV_complex.h +58 -0
  87. pythonknot-0.1.2/src/cpp_module/cln/include/cln/GV_integer.h +91 -0
  88. pythonknot-0.1.2/src/cpp_module/cln/include/cln/GV_modinteger.h +51 -0
  89. pythonknot-0.1.2/src/cpp_module/cln/include/cln/GV_number.h +55 -0
  90. pythonknot-0.1.2/src/cpp_module/cln/include/cln/GV_rational.h +58 -0
  91. pythonknot-0.1.2/src/cpp_module/cln/include/cln/GV_real.h +58 -0
  92. pythonknot-0.1.2/src/cpp_module/cln/include/cln/SV.h +217 -0
  93. pythonknot-0.1.2/src/cpp_module/cln/include/cln/SV_complex.h +54 -0
  94. pythonknot-0.1.2/src/cpp_module/cln/include/cln/SV_integer.h +51 -0
  95. pythonknot-0.1.2/src/cpp_module/cln/include/cln/SV_number.h +67 -0
  96. pythonknot-0.1.2/src/cpp_module/cln/include/cln/SV_rational.h +54 -0
  97. pythonknot-0.1.2/src/cpp_module/cln/include/cln/SV_real.h +54 -0
  98. pythonknot-0.1.2/src/cpp_module/cln/include/cln/SV_ringelt.h +72 -0
  99. pythonknot-0.1.2/src/cpp_module/cln/include/cln/V.h +23 -0
  100. pythonknot-0.1.2/src/cpp_module/cln/include/cln/cln.h +141 -0
  101. pythonknot-0.1.2/src/cpp_module/cln/include/cln/complex.h +157 -0
  102. pythonknot-0.1.2/src/cpp_module/cln/include/cln/complex_class.h +76 -0
  103. pythonknot-0.1.2/src/cpp_module/cln/include/cln/complex_io.h +48 -0
  104. pythonknot-0.1.2/src/cpp_module/cln/include/cln/complex_ring.h +26 -0
  105. pythonknot-0.1.2/src/cpp_module/cln/include/cln/condition.h +39 -0
  106. pythonknot-0.1.2/src/cpp_module/cln/include/cln/config.h +28 -0
  107. pythonknot-0.1.2/src/cpp_module/cln/include/cln/dfloat.h +326 -0
  108. pythonknot-0.1.2/src/cpp_module/cln/include/cln/dfloat_class.h +75 -0
  109. pythonknot-0.1.2/src/cpp_module/cln/include/cln/dfloat_io.h +31 -0
  110. pythonknot-0.1.2/src/cpp_module/cln/include/cln/exception.h +40 -0
  111. pythonknot-0.1.2/src/cpp_module/cln/include/cln/ffloat.h +329 -0
  112. pythonknot-0.1.2/src/cpp_module/cln/include/cln/ffloat_class.h +85 -0
  113. pythonknot-0.1.2/src/cpp_module/cln/include/cln/ffloat_io.h +31 -0
  114. pythonknot-0.1.2/src/cpp_module/cln/include/cln/float.h +754 -0
  115. pythonknot-0.1.2/src/cpp_module/cln/include/cln/float_class.h +52 -0
  116. pythonknot-0.1.2/src/cpp_module/cln/include/cln/float_io.h +81 -0
  117. pythonknot-0.1.2/src/cpp_module/cln/include/cln/floatformat.h +21 -0
  118. pythonknot-0.1.2/src/cpp_module/cln/include/cln/floatparam.h +26 -0
  119. pythonknot-0.1.2/src/cpp_module/cln/include/cln/host_cpu.h +84 -0
  120. pythonknot-0.1.2/src/cpp_module/cln/include/cln/input.h +61 -0
  121. pythonknot-0.1.2/src/cpp_module/cln/include/cln/integer.h +666 -0
  122. pythonknot-0.1.2/src/cpp_module/cln/include/cln/integer_class.h +69 -0
  123. pythonknot-0.1.2/src/cpp_module/cln/include/cln/integer_io.h +105 -0
  124. pythonknot-0.1.2/src/cpp_module/cln/include/cln/integer_ring.h +26 -0
  125. pythonknot-0.1.2/src/cpp_module/cln/include/cln/intparam.h +94 -0
  126. pythonknot-0.1.2/src/cpp_module/cln/include/cln/io.h +89 -0
  127. pythonknot-0.1.2/src/cpp_module/cln/include/cln/lfloat.h +433 -0
  128. pythonknot-0.1.2/src/cpp_module/cln/include/cln/lfloat_class.h +73 -0
  129. pythonknot-0.1.2/src/cpp_module/cln/include/cln/lfloat_io.h +31 -0
  130. pythonknot-0.1.2/src/cpp_module/cln/include/cln/malloc.h +17 -0
  131. pythonknot-0.1.2/src/cpp_module/cln/include/cln/modinteger.h +466 -0
  132. pythonknot-0.1.2/src/cpp_module/cln/include/cln/modules.h +37 -0
  133. pythonknot-0.1.2/src/cpp_module/cln/include/cln/null_ring.h +24 -0
  134. pythonknot-0.1.2/src/cpp_module/cln/include/cln/number.h +308 -0
  135. pythonknot-0.1.2/src/cpp_module/cln/include/cln/number_io.h +42 -0
  136. pythonknot-0.1.2/src/cpp_module/cln/include/cln/numtheory.h +90 -0
  137. pythonknot-0.1.2/src/cpp_module/cln/include/cln/object.h +550 -0
  138. pythonknot-0.1.2/src/cpp_module/cln/include/cln/output.h +74 -0
  139. pythonknot-0.1.2/src/cpp_module/cln/include/cln/proplist.h +55 -0
  140. pythonknot-0.1.2/src/cpp_module/cln/include/cln/random.h +55 -0
  141. pythonknot-0.1.2/src/cpp_module/cln/include/cln/rational.h +357 -0
  142. pythonknot-0.1.2/src/cpp_module/cln/include/cln/rational_class.h +71 -0
  143. pythonknot-0.1.2/src/cpp_module/cln/include/cln/rational_io.h +78 -0
  144. pythonknot-0.1.2/src/cpp_module/cln/include/cln/rational_ring.h +26 -0
  145. pythonknot-0.1.2/src/cpp_module/cln/include/cln/real.h +637 -0
  146. pythonknot-0.1.2/src/cpp_module/cln/include/cln/real_class.h +76 -0
  147. pythonknot-0.1.2/src/cpp_module/cln/include/cln/real_io.h +57 -0
  148. pythonknot-0.1.2/src/cpp_module/cln/include/cln/real_ring.h +27 -0
  149. pythonknot-0.1.2/src/cpp_module/cln/include/cln/ring.h +464 -0
  150. pythonknot-0.1.2/src/cpp_module/cln/include/cln/sfloat.h +300 -0
  151. pythonknot-0.1.2/src/cpp_module/cln/include/cln/sfloat_class.h +45 -0
  152. pythonknot-0.1.2/src/cpp_module/cln/include/cln/sfloat_io.h +31 -0
  153. pythonknot-0.1.2/src/cpp_module/cln/include/cln/string.h +172 -0
  154. pythonknot-0.1.2/src/cpp_module/cln/include/cln/symbol.h +48 -0
  155. pythonknot-0.1.2/src/cpp_module/cln/include/cln/timing.h +78 -0
  156. pythonknot-0.1.2/src/cpp_module/cln/include/cln/types.h +188 -0
  157. pythonknot-0.1.2/src/cpp_module/cln/include/cln/univpoly.h +733 -0
  158. pythonknot-0.1.2/src/cpp_module/cln/include/cln/univpoly_complex.h +228 -0
  159. pythonknot-0.1.2/src/cpp_module/cln/include/cln/univpoly_integer.h +233 -0
  160. pythonknot-0.1.2/src/cpp_module/cln/include/cln/univpoly_modint.h +217 -0
  161. pythonknot-0.1.2/src/cpp_module/cln/include/cln/univpoly_rational.h +232 -0
  162. pythonknot-0.1.2/src/cpp_module/cln/include/cln/univpoly_real.h +228 -0
  163. pythonknot-0.1.2/src/cpp_module/cln/include/cln/version.h +27 -0
  164. pythonknot-0.1.2/src/cpp_module/cln/src/base/cl_N.h +22 -0
  165. pythonknot-0.1.2/src/cpp_module/cln/src/base/cl_alloca.h +88 -0
  166. pythonknot-0.1.2/src/cpp_module/cln/src/base/cl_base_config.h +22 -0
  167. pythonknot-0.1.2/src/cpp_module/cln/src/base/cl_gmpconfig.h +17 -0
  168. pythonknot-0.1.2/src/cpp_module/cln/src/base/cl_inline.h +8 -0
  169. pythonknot-0.1.2/src/cpp_module/cln/src/base/cl_inline2.h +8 -0
  170. pythonknot-0.1.2/src/cpp_module/cln/src/base/cl_iterator.h +28 -0
  171. pythonknot-0.1.2/src/cpp_module/cln/src/base/cl_low.h +1614 -0
  172. pythonknot-0.1.2/src/cpp_module/cln/src/base/cl_macros.h +260 -0
  173. pythonknot-0.1.2/src/cpp_module/cln/src/base/cl_maybe_inline.h +133 -0
  174. pythonknot-0.1.2/src/cpp_module/cln/src/base/cl_offsetof.h +20 -0
  175. pythonknot-0.1.2/src/cpp_module/cln/src/base/cl_sysdep.h +64 -0
  176. pythonknot-0.1.2/src/cpp_module/cln/src/base/cl_xmacros.h +13 -0
  177. pythonknot-0.1.2/src/cpp_module/cln/src/base/digit/cl_2D.h +44 -0
  178. pythonknot-0.1.2/src/cpp_module/cln/src/base/digit/cl_D.h +226 -0
  179. pythonknot-0.1.2/src/cpp_module/cln/src/base/digitseq/cl_2DS.h +31 -0
  180. pythonknot-0.1.2/src/cpp_module/cln/src/base/digitseq/cl_DS.h +2689 -0
  181. pythonknot-0.1.2/src/cpp_module/cln/src/base/digitseq/cl_DS_endian.h +21 -0
  182. pythonknot-0.1.2/src/cpp_module/cln/src/base/digitseq/cl_DS_mul_fftc.h +1102 -0
  183. pythonknot-0.1.2/src/cpp_module/cln/src/base/digitseq/cl_DS_mul_fftcs.h +1152 -0
  184. pythonknot-0.1.2/src/cpp_module/cln/src/base/digitseq/cl_DS_mul_fftm.h +654 -0
  185. pythonknot-0.1.2/src/cpp_module/cln/src/base/digitseq/cl_DS_mul_fftp.h +823 -0
  186. pythonknot-0.1.2/src/cpp_module/cln/src/base/digitseq/cl_DS_mul_fftp3.h +672 -0
  187. pythonknot-0.1.2/src/cpp_module/cln/src/base/digitseq/cl_DS_mul_fftp3m.h +858 -0
  188. pythonknot-0.1.2/src/cpp_module/cln/src/base/digitseq/cl_DS_mul_fftr.h +1139 -0
  189. pythonknot-0.1.2/src/cpp_module/cln/src/base/digitseq/cl_DS_mul_kara.h +259 -0
  190. pythonknot-0.1.2/src/cpp_module/cln/src/base/digitseq/cl_DS_mul_kara_sqr.h +81 -0
  191. pythonknot-0.1.2/src/cpp_module/cln/src/base/digitseq/cl_DS_mul_nuss.h +1511 -0
  192. pythonknot-0.1.2/src/cpp_module/cln/src/base/digitseq/cl_asm.h +36 -0
  193. pythonknot-0.1.2/src/cpp_module/cln/src/base/digitseq/cl_asm_arm.h +10 -0
  194. pythonknot-0.1.2/src/cpp_module/cln/src/base/digitseq/cl_asm_hppa.h +2 -0
  195. pythonknot-0.1.2/src/cpp_module/cln/src/base/digitseq/cl_asm_i386.h +11 -0
  196. pythonknot-0.1.2/src/cpp_module/cln/src/base/digitseq/cl_asm_m68k.h +11 -0
  197. pythonknot-0.1.2/src/cpp_module/cln/src/base/digitseq/cl_asm_mips.h +8 -0
  198. pythonknot-0.1.2/src/cpp_module/cln/src/base/digitseq/cl_asm_sparc.h +11 -0
  199. pythonknot-0.1.2/src/cpp_module/cln/src/base/digitseq/cl_asm_sparc64.h +10 -0
  200. pythonknot-0.1.2/src/cpp_module/cln/src/base/hash/cl_hash.h +185 -0
  201. pythonknot-0.1.2/src/cpp_module/cln/src/base/hash/cl_hash1.h +157 -0
  202. pythonknot-0.1.2/src/cpp_module/cln/src/base/hash/cl_hash1weak.h +97 -0
  203. pythonknot-0.1.2/src/cpp_module/cln/src/base/hash/cl_hash2.h +163 -0
  204. pythonknot-0.1.2/src/cpp_module/cln/src/base/hash/cl_hash2weak.h +97 -0
  205. pythonknot-0.1.2/src/cpp_module/cln/src/base/hash/cl_hashset.h +150 -0
  206. pythonknot-0.1.2/src/cpp_module/cln/src/base/hash/cl_hashuniq.h +158 -0
  207. pythonknot-0.1.2/src/cpp_module/cln/src/base/hash/cl_hashuniqweak.h +97 -0
  208. pythonknot-0.1.2/src/cpp_module/cln/src/base/hash/cl_rcpointer2_hashweak_rcpointer.h +48 -0
  209. pythonknot-0.1.2/src/cpp_module/cln/src/base/hash/cl_rcpointer_hashweak_rcpointer.h +43 -0
  210. pythonknot-0.1.2/src/cpp_module/cln/src/base/random/cl_random_impl.h +26 -0
  211. pythonknot-0.1.2/src/cpp_module/cln/src/base/string/cl_spushstring.h +65 -0
  212. pythonknot-0.1.2/src/cpp_module/cln/src/base/string/cl_sstring.h +14 -0
  213. pythonknot-0.1.2/src/cpp_module/cln/src/base/string/cl_st_make0.h +11 -0
  214. pythonknot-0.1.2/src/cpp_module/cln/src/complex/cl_C.h +193 -0
  215. pythonknot-0.1.2/src/cpp_module/cln/src/float/cl_F.h +276 -0
  216. pythonknot-0.1.2/src/cpp_module/cln/src/float/dfloat/cl_DF.h +321 -0
  217. pythonknot-0.1.2/src/cpp_module/cln/src/float/ffloat/cl_FF.h +249 -0
  218. pythonknot-0.1.2/src/cpp_module/cln/src/float/lfloat/cl_LF.h +150 -0
  219. pythonknot-0.1.2/src/cpp_module/cln/src/float/lfloat/cl_LF_impl.h +153 -0
  220. pythonknot-0.1.2/src/cpp_module/cln/src/float/sfloat/cl_SF.h +137 -0
  221. pythonknot-0.1.2/src/cpp_module/cln/src/float/transcendental/cl_F_catalanconst_var.h +29 -0
  222. pythonknot-0.1.2/src/cpp_module/cln/src/float/transcendental/cl_F_eulerconst_var.h +29 -0
  223. pythonknot-0.1.2/src/cpp_module/cln/src/float/transcendental/cl_F_exp1_var.h +29 -0
  224. pythonknot-0.1.2/src/cpp_module/cln/src/float/transcendental/cl_F_ln10_var.h +29 -0
  225. pythonknot-0.1.2/src/cpp_module/cln/src/float/transcendental/cl_F_ln2_var.h +29 -0
  226. pythonknot-0.1.2/src/cpp_module/cln/src/float/transcendental/cl_F_pi_var.h +29 -0
  227. pythonknot-0.1.2/src/cpp_module/cln/src/float/transcendental/cl_F_tran.h +149 -0
  228. pythonknot-0.1.2/src/cpp_module/cln/src/float/transcendental/cl_LF_tran.h +335 -0
  229. pythonknot-0.1.2/src/cpp_module/cln/src/integer/bitwise/cl_I_byte.h +33 -0
  230. pythonknot-0.1.2/src/cpp_module/cln/src/integer/bitwise/cl_I_log.h +38 -0
  231. pythonknot-0.1.2/src/cpp_module/cln/src/integer/cl_I.h +764 -0
  232. pythonknot-0.1.2/src/cpp_module/cln/src/integer/conv/cl_I_cached_power.h +47 -0
  233. pythonknot-0.1.2/src/cpp_module/cln/src/integer/hash/cl_I_hash_gcobject.h +35 -0
  234. pythonknot-0.1.2/src/cpp_module/cln/src/integer/hash/cl_I_hash_gcpointer.h +35 -0
  235. pythonknot-0.1.2/src/cpp_module/cln/src/integer/hash/cl_I_hash_pointer.h +35 -0
  236. pythonknot-0.1.2/src/cpp_module/cln/src/integer/hash/cl_I_hash_rcobject.h +35 -0
  237. pythonknot-0.1.2/src/cpp_module/cln/src/integer/hash/cl_I_hash_rcpointer.h +35 -0
  238. pythonknot-0.1.2/src/cpp_module/cln/src/integer/hash/cl_I_hashweak_rcpointer.h +35 -0
  239. pythonknot-0.1.2/src/cpp_module/cln/src/integer/misc/combin/cl_I_combin.h +17 -0
  240. pythonknot-0.1.2/src/cpp_module/cln/src/modinteger/cl_MI.h +14 -0
  241. pythonknot-0.1.2/src/cpp_module/cln/src/modinteger/cl_MI_fix16.h +91 -0
  242. pythonknot-0.1.2/src/cpp_module/cln/src/modinteger/cl_MI_fix29.h +98 -0
  243. pythonknot-0.1.2/src/cpp_module/cln/src/modinteger/cl_MI_fix32.h +100 -0
  244. pythonknot-0.1.2/src/cpp_module/cln/src/modinteger/cl_MI_int.h +149 -0
  245. pythonknot-0.1.2/src/cpp_module/cln/src/modinteger/cl_MI_int32.h +99 -0
  246. pythonknot-0.1.2/src/cpp_module/cln/src/modinteger/cl_MI_montgom.h +238 -0
  247. pythonknot-0.1.2/src/cpp_module/cln/src/modinteger/cl_MI_pow2.h +157 -0
  248. pythonknot-0.1.2/src/cpp_module/cln/src/modinteger/cl_MI_pow2m1.h +98 -0
  249. pythonknot-0.1.2/src/cpp_module/cln/src/modinteger/cl_MI_pow2p1.h +109 -0
  250. pythonknot-0.1.2/src/cpp_module/cln/src/modinteger/cl_MI_std.h +370 -0
  251. pythonknot-0.1.2/src/cpp_module/cln/src/numtheory/cl_IF.h +55 -0
  252. pythonknot-0.1.2/src/cpp_module/cln/src/polynomial/cl_UP.h +35 -0
  253. pythonknot-0.1.2/src/cpp_module/cln/src/polynomial/elem/cl_UP_GF2.h +1066 -0
  254. pythonknot-0.1.2/src/cpp_module/cln/src/polynomial/elem/cl_UP_MI.h +506 -0
  255. pythonknot-0.1.2/src/cpp_module/cln/src/polynomial/elem/cl_UP_gen.h +485 -0
  256. pythonknot-0.1.2/src/cpp_module/cln/src/polynomial/elem/cl_UP_number.h +488 -0
  257. pythonknot-0.1.2/src/cpp_module/cln/src/rational/cl_RA.h +175 -0
  258. pythonknot-0.1.2/src/cpp_module/cln/src/real/cl_R.h +209 -0
  259. pythonknot-0.1.2/src/cpp_module/cln/src/real/division/cl_R_div_t.h +26 -0
  260. pythonknot-0.1.2/src/cpp_module/cln/src/real/format-output/cl_format.h +75 -0
  261. pythonknot-0.1.2/src/cpp_module/cln/src/timing/cl_t_config.h +37 -0
  262. pythonknot-0.1.2/src/cpp_module/cln/src/vector/cl_GV_io.h +22 -0
  263. pythonknot-0.1.2/src/cpp_module/cln/src/vector/cl_SV_io.h +22 -0
  264. pythonknot-0.1.2/src/cpp_module/cln/tests/exam.h +103 -0
  265. pythonknot-0.1.2/src/cpp_module/cln/tests/test.h +93 -0
  266. pythonknot-0.1.2/src/cpp_module/cln/tests/test_I.h +4 -0
  267. pythonknot-0.1.2/src/cpp_module/cln/tests/test_MI.h +5 -0
  268. pythonknot-0.1.2/src/cpp_module/cln/tests/test_nt.h +5 -0
  269. pythonknot-0.1.2/src/cpp_module/cln-1.3.7/autoconf/cl_config.h +147 -0
  270. pythonknot-0.1.2/src/cpp_module/cln-1.3.7/build/include/cln/GV.h +350 -0
  271. pythonknot-0.1.2/src/cpp_module/cln-1.3.7/build/include/cln/GV_complex.h +58 -0
  272. pythonknot-0.1.2/src/cpp_module/cln-1.3.7/build/include/cln/GV_integer.h +91 -0
  273. pythonknot-0.1.2/src/cpp_module/cln-1.3.7/build/include/cln/GV_modinteger.h +51 -0
  274. pythonknot-0.1.2/src/cpp_module/cln-1.3.7/build/include/cln/GV_number.h +55 -0
  275. pythonknot-0.1.2/src/cpp_module/cln-1.3.7/build/include/cln/GV_rational.h +58 -0
  276. pythonknot-0.1.2/src/cpp_module/cln-1.3.7/build/include/cln/GV_real.h +58 -0
  277. pythonknot-0.1.2/src/cpp_module/cln-1.3.7/build/include/cln/SV.h +217 -0
  278. pythonknot-0.1.2/src/cpp_module/cln-1.3.7/build/include/cln/SV_complex.h +54 -0
  279. pythonknot-0.1.2/src/cpp_module/cln-1.3.7/build/include/cln/SV_integer.h +51 -0
  280. pythonknot-0.1.2/src/cpp_module/cln-1.3.7/build/include/cln/SV_number.h +67 -0
  281. pythonknot-0.1.2/src/cpp_module/cln-1.3.7/build/include/cln/SV_rational.h +54 -0
  282. pythonknot-0.1.2/src/cpp_module/cln-1.3.7/build/include/cln/SV_real.h +54 -0
  283. pythonknot-0.1.2/src/cpp_module/cln-1.3.7/build/include/cln/SV_ringelt.h +72 -0
  284. pythonknot-0.1.2/src/cpp_module/cln-1.3.7/build/include/cln/V.h +23 -0
  285. pythonknot-0.1.2/src/cpp_module/cln-1.3.7/build/include/cln/cln.h +141 -0
  286. pythonknot-0.1.2/src/cpp_module/cln-1.3.7/build/include/cln/complex.h +157 -0
  287. pythonknot-0.1.2/src/cpp_module/cln-1.3.7/build/include/cln/complex_class.h +70 -0
  288. pythonknot-0.1.2/src/cpp_module/cln-1.3.7/build/include/cln/complex_io.h +43 -0
  289. pythonknot-0.1.2/src/cpp_module/cln-1.3.7/build/include/cln/complex_ring.h +26 -0
  290. pythonknot-0.1.2/src/cpp_module/cln-1.3.7/build/include/cln/condition.h +39 -0
  291. pythonknot-0.1.2/src/cpp_module/cln-1.3.7/build/include/cln/config.h +27 -0
  292. pythonknot-0.1.2/src/cpp_module/cln-1.3.7/build/include/cln/dfloat.h +326 -0
  293. pythonknot-0.1.2/src/cpp_module/cln-1.3.7/build/include/cln/dfloat_class.h +75 -0
  294. pythonknot-0.1.2/src/cpp_module/cln-1.3.7/build/include/cln/dfloat_io.h +31 -0
  295. pythonknot-0.1.2/src/cpp_module/cln-1.3.7/build/include/cln/exception.h +40 -0
  296. pythonknot-0.1.2/src/cpp_module/cln-1.3.7/build/include/cln/ffloat.h +329 -0
  297. pythonknot-0.1.2/src/cpp_module/cln-1.3.7/build/include/cln/ffloat_class.h +85 -0
  298. pythonknot-0.1.2/src/cpp_module/cln-1.3.7/build/include/cln/ffloat_io.h +31 -0
  299. pythonknot-0.1.2/src/cpp_module/cln-1.3.7/build/include/cln/float.h +738 -0
  300. pythonknot-0.1.2/src/cpp_module/cln-1.3.7/build/include/cln/float_class.h +52 -0
  301. pythonknot-0.1.2/src/cpp_module/cln-1.3.7/build/include/cln/float_io.h +76 -0
  302. pythonknot-0.1.2/src/cpp_module/cln-1.3.7/build/include/cln/floatformat.h +21 -0
  303. pythonknot-0.1.2/src/cpp_module/cln-1.3.7/build/include/cln/host_cpu.h +84 -0
  304. pythonknot-0.1.2/src/cpp_module/cln-1.3.7/build/include/cln/input.h +61 -0
  305. pythonknot-0.1.2/src/cpp_module/cln-1.3.7/build/include/cln/integer.h +654 -0
  306. pythonknot-0.1.2/src/cpp_module/cln-1.3.7/build/include/cln/integer_class.h +63 -0
  307. pythonknot-0.1.2/src/cpp_module/cln-1.3.7/build/include/cln/integer_io.h +100 -0
  308. pythonknot-0.1.2/src/cpp_module/cln-1.3.7/build/include/cln/integer_ring.h +26 -0
  309. pythonknot-0.1.2/src/cpp_module/cln-1.3.7/build/include/cln/intparam.h +92 -0
  310. pythonknot-0.1.2/src/cpp_module/cln-1.3.7/build/include/cln/io.h +85 -0
  311. pythonknot-0.1.2/src/cpp_module/cln-1.3.7/build/include/cln/lfloat.h +425 -0
  312. pythonknot-0.1.2/src/cpp_module/cln-1.3.7/build/include/cln/lfloat_class.h +73 -0
  313. pythonknot-0.1.2/src/cpp_module/cln-1.3.7/build/include/cln/lfloat_io.h +31 -0
  314. pythonknot-0.1.2/src/cpp_module/cln-1.3.7/build/include/cln/malloc.h +17 -0
  315. pythonknot-0.1.2/src/cpp_module/cln-1.3.7/build/include/cln/modinteger.h +466 -0
  316. pythonknot-0.1.2/src/cpp_module/cln-1.3.7/build/include/cln/modules.h +37 -0
  317. pythonknot-0.1.2/src/cpp_module/cln-1.3.7/build/include/cln/null_ring.h +24 -0
  318. pythonknot-0.1.2/src/cpp_module/cln-1.3.7/build/include/cln/number.h +300 -0
  319. pythonknot-0.1.2/src/cpp_module/cln-1.3.7/build/include/cln/number_io.h +42 -0
  320. pythonknot-0.1.2/src/cpp_module/cln-1.3.7/build/include/cln/numtheory.h +90 -0
  321. pythonknot-0.1.2/src/cpp_module/cln-1.3.7/build/include/cln/object.h +531 -0
  322. pythonknot-0.1.2/src/cpp_module/cln-1.3.7/build/include/cln/output.h +74 -0
  323. pythonknot-0.1.2/src/cpp_module/cln-1.3.7/build/include/cln/proplist.h +55 -0
  324. pythonknot-0.1.2/src/cpp_module/cln-1.3.7/build/include/cln/random.h +55 -0
  325. pythonknot-0.1.2/src/cpp_module/cln-1.3.7/build/include/cln/rational.h +337 -0
  326. pythonknot-0.1.2/src/cpp_module/cln-1.3.7/build/include/cln/rational_class.h +65 -0
  327. pythonknot-0.1.2/src/cpp_module/cln-1.3.7/build/include/cln/rational_io.h +73 -0
  328. pythonknot-0.1.2/src/cpp_module/cln-1.3.7/build/include/cln/rational_ring.h +26 -0
  329. pythonknot-0.1.2/src/cpp_module/cln-1.3.7/build/include/cln/real.h +607 -0
  330. pythonknot-0.1.2/src/cpp_module/cln-1.3.7/build/include/cln/real_class.h +70 -0
  331. pythonknot-0.1.2/src/cpp_module/cln-1.3.7/build/include/cln/real_io.h +52 -0
  332. pythonknot-0.1.2/src/cpp_module/cln-1.3.7/build/include/cln/real_ring.h +27 -0
  333. pythonknot-0.1.2/src/cpp_module/cln-1.3.7/build/include/cln/ring.h +464 -0
  334. pythonknot-0.1.2/src/cpp_module/cln-1.3.7/build/include/cln/sfloat.h +300 -0
  335. pythonknot-0.1.2/src/cpp_module/cln-1.3.7/build/include/cln/sfloat_class.h +45 -0
  336. pythonknot-0.1.2/src/cpp_module/cln-1.3.7/build/include/cln/sfloat_io.h +31 -0
  337. pythonknot-0.1.2/src/cpp_module/cln-1.3.7/build/include/cln/string.h +172 -0
  338. pythonknot-0.1.2/src/cpp_module/cln-1.3.7/build/include/cln/symbol.h +48 -0
  339. pythonknot-0.1.2/src/cpp_module/cln-1.3.7/build/include/cln/timing.h +78 -0
  340. pythonknot-0.1.2/src/cpp_module/cln-1.3.7/build/include/cln/types.h +182 -0
  341. pythonknot-0.1.2/src/cpp_module/cln-1.3.7/build/include/cln/univpoly.h +733 -0
  342. pythonknot-0.1.2/src/cpp_module/cln-1.3.7/build/include/cln/univpoly_complex.h +228 -0
  343. pythonknot-0.1.2/src/cpp_module/cln-1.3.7/build/include/cln/univpoly_integer.h +233 -0
  344. pythonknot-0.1.2/src/cpp_module/cln-1.3.7/build/include/cln/univpoly_modint.h +217 -0
  345. pythonknot-0.1.2/src/cpp_module/cln-1.3.7/build/include/cln/univpoly_rational.h +232 -0
  346. pythonknot-0.1.2/src/cpp_module/cln-1.3.7/build/include/cln/univpoly_real.h +228 -0
  347. pythonknot-0.1.2/src/cpp_module/cln-1.3.7/build/include/cln/version.h +46 -0
  348. pythonknot-0.1.2/src/cpp_module/cln-1.3.7/include/cln/GV.h +350 -0
  349. pythonknot-0.1.2/src/cpp_module/cln-1.3.7/include/cln/GV_complex.h +58 -0
  350. pythonknot-0.1.2/src/cpp_module/cln-1.3.7/include/cln/GV_integer.h +91 -0
  351. pythonknot-0.1.2/src/cpp_module/cln-1.3.7/include/cln/GV_modinteger.h +51 -0
  352. pythonknot-0.1.2/src/cpp_module/cln-1.3.7/include/cln/GV_number.h +55 -0
  353. pythonknot-0.1.2/src/cpp_module/cln-1.3.7/include/cln/GV_rational.h +58 -0
  354. pythonknot-0.1.2/src/cpp_module/cln-1.3.7/include/cln/GV_real.h +58 -0
  355. pythonknot-0.1.2/src/cpp_module/cln-1.3.7/include/cln/SV.h +217 -0
  356. pythonknot-0.1.2/src/cpp_module/cln-1.3.7/include/cln/SV_complex.h +54 -0
  357. pythonknot-0.1.2/src/cpp_module/cln-1.3.7/include/cln/SV_integer.h +51 -0
  358. pythonknot-0.1.2/src/cpp_module/cln-1.3.7/include/cln/SV_number.h +67 -0
  359. pythonknot-0.1.2/src/cpp_module/cln-1.3.7/include/cln/SV_rational.h +54 -0
  360. pythonknot-0.1.2/src/cpp_module/cln-1.3.7/include/cln/SV_real.h +54 -0
  361. pythonknot-0.1.2/src/cpp_module/cln-1.3.7/include/cln/SV_ringelt.h +72 -0
  362. pythonknot-0.1.2/src/cpp_module/cln-1.3.7/include/cln/V.h +23 -0
  363. pythonknot-0.1.2/src/cpp_module/cln-1.3.7/include/cln/cln.h +141 -0
  364. pythonknot-0.1.2/src/cpp_module/cln-1.3.7/include/cln/complex.h +157 -0
  365. pythonknot-0.1.2/src/cpp_module/cln-1.3.7/include/cln/complex_class.h +70 -0
  366. pythonknot-0.1.2/src/cpp_module/cln-1.3.7/include/cln/complex_io.h +43 -0
  367. pythonknot-0.1.2/src/cpp_module/cln-1.3.7/include/cln/complex_ring.h +26 -0
  368. pythonknot-0.1.2/src/cpp_module/cln-1.3.7/include/cln/condition.h +39 -0
  369. pythonknot-0.1.2/src/cpp_module/cln-1.3.7/include/cln/config.h +27 -0
  370. pythonknot-0.1.2/src/cpp_module/cln-1.3.7/include/cln/dfloat.h +326 -0
  371. pythonknot-0.1.2/src/cpp_module/cln-1.3.7/include/cln/dfloat_class.h +75 -0
  372. pythonknot-0.1.2/src/cpp_module/cln-1.3.7/include/cln/dfloat_io.h +31 -0
  373. pythonknot-0.1.2/src/cpp_module/cln-1.3.7/include/cln/exception.h +40 -0
  374. pythonknot-0.1.2/src/cpp_module/cln-1.3.7/include/cln/ffloat.h +329 -0
  375. pythonknot-0.1.2/src/cpp_module/cln-1.3.7/include/cln/ffloat_class.h +85 -0
  376. pythonknot-0.1.2/src/cpp_module/cln-1.3.7/include/cln/ffloat_io.h +31 -0
  377. pythonknot-0.1.2/src/cpp_module/cln-1.3.7/include/cln/float.h +738 -0
  378. pythonknot-0.1.2/src/cpp_module/cln-1.3.7/include/cln/float_class.h +52 -0
  379. pythonknot-0.1.2/src/cpp_module/cln-1.3.7/include/cln/float_io.h +76 -0
  380. pythonknot-0.1.2/src/cpp_module/cln-1.3.7/include/cln/floatformat.h +21 -0
  381. pythonknot-0.1.2/src/cpp_module/cln-1.3.7/include/cln/floatparam.h +26 -0
  382. pythonknot-0.1.2/src/cpp_module/cln-1.3.7/include/cln/host_cpu.h +84 -0
  383. pythonknot-0.1.2/src/cpp_module/cln-1.3.7/include/cln/input.h +61 -0
  384. pythonknot-0.1.2/src/cpp_module/cln-1.3.7/include/cln/integer.h +654 -0
  385. pythonknot-0.1.2/src/cpp_module/cln-1.3.7/include/cln/integer_class.h +63 -0
  386. pythonknot-0.1.2/src/cpp_module/cln-1.3.7/include/cln/integer_io.h +100 -0
  387. pythonknot-0.1.2/src/cpp_module/cln-1.3.7/include/cln/integer_ring.h +26 -0
  388. pythonknot-0.1.2/src/cpp_module/cln-1.3.7/include/cln/intparam.h +92 -0
  389. pythonknot-0.1.2/src/cpp_module/cln-1.3.7/include/cln/io.h +85 -0
  390. pythonknot-0.1.2/src/cpp_module/cln-1.3.7/include/cln/lfloat.h +425 -0
  391. pythonknot-0.1.2/src/cpp_module/cln-1.3.7/include/cln/lfloat_class.h +73 -0
  392. pythonknot-0.1.2/src/cpp_module/cln-1.3.7/include/cln/lfloat_io.h +31 -0
  393. pythonknot-0.1.2/src/cpp_module/cln-1.3.7/include/cln/malloc.h +17 -0
  394. pythonknot-0.1.2/src/cpp_module/cln-1.3.7/include/cln/modinteger.h +466 -0
  395. pythonknot-0.1.2/src/cpp_module/cln-1.3.7/include/cln/modules.h +37 -0
  396. pythonknot-0.1.2/src/cpp_module/cln-1.3.7/include/cln/null_ring.h +24 -0
  397. pythonknot-0.1.2/src/cpp_module/cln-1.3.7/include/cln/number.h +300 -0
  398. pythonknot-0.1.2/src/cpp_module/cln-1.3.7/include/cln/number_io.h +42 -0
  399. pythonknot-0.1.2/src/cpp_module/cln-1.3.7/include/cln/numtheory.h +90 -0
  400. pythonknot-0.1.2/src/cpp_module/cln-1.3.7/include/cln/object.h +531 -0
  401. pythonknot-0.1.2/src/cpp_module/cln-1.3.7/include/cln/output.h +74 -0
  402. pythonknot-0.1.2/src/cpp_module/cln-1.3.7/include/cln/proplist.h +55 -0
  403. pythonknot-0.1.2/src/cpp_module/cln-1.3.7/include/cln/random.h +55 -0
  404. pythonknot-0.1.2/src/cpp_module/cln-1.3.7/include/cln/rational.h +337 -0
  405. pythonknot-0.1.2/src/cpp_module/cln-1.3.7/include/cln/rational_class.h +65 -0
  406. pythonknot-0.1.2/src/cpp_module/cln-1.3.7/include/cln/rational_io.h +73 -0
  407. pythonknot-0.1.2/src/cpp_module/cln-1.3.7/include/cln/rational_ring.h +26 -0
  408. pythonknot-0.1.2/src/cpp_module/cln-1.3.7/include/cln/real.h +607 -0
  409. pythonknot-0.1.2/src/cpp_module/cln-1.3.7/include/cln/real_class.h +70 -0
  410. pythonknot-0.1.2/src/cpp_module/cln-1.3.7/include/cln/real_io.h +52 -0
  411. pythonknot-0.1.2/src/cpp_module/cln-1.3.7/include/cln/real_ring.h +27 -0
  412. pythonknot-0.1.2/src/cpp_module/cln-1.3.7/include/cln/ring.h +464 -0
  413. pythonknot-0.1.2/src/cpp_module/cln-1.3.7/include/cln/sfloat.h +300 -0
  414. pythonknot-0.1.2/src/cpp_module/cln-1.3.7/include/cln/sfloat_class.h +45 -0
  415. pythonknot-0.1.2/src/cpp_module/cln-1.3.7/include/cln/sfloat_io.h +31 -0
  416. pythonknot-0.1.2/src/cpp_module/cln-1.3.7/include/cln/string.h +172 -0
  417. pythonknot-0.1.2/src/cpp_module/cln-1.3.7/include/cln/symbol.h +48 -0
  418. pythonknot-0.1.2/src/cpp_module/cln-1.3.7/include/cln/timing.h +78 -0
  419. pythonknot-0.1.2/src/cpp_module/cln-1.3.7/include/cln/types.h +182 -0
  420. pythonknot-0.1.2/src/cpp_module/cln-1.3.7/include/cln/univpoly.h +733 -0
  421. pythonknot-0.1.2/src/cpp_module/cln-1.3.7/include/cln/univpoly_complex.h +228 -0
  422. pythonknot-0.1.2/src/cpp_module/cln-1.3.7/include/cln/univpoly_integer.h +233 -0
  423. pythonknot-0.1.2/src/cpp_module/cln-1.3.7/include/cln/univpoly_modint.h +217 -0
  424. pythonknot-0.1.2/src/cpp_module/cln-1.3.7/include/cln/univpoly_rational.h +232 -0
  425. pythonknot-0.1.2/src/cpp_module/cln-1.3.7/include/cln/univpoly_real.h +228 -0
  426. pythonknot-0.1.2/src/cpp_module/cln-1.3.7/include/cln/version.h +46 -0
  427. pythonknot-0.1.2/src/cpp_module/cln-1.3.7/lib/include/cln/GV.h +350 -0
  428. pythonknot-0.1.2/src/cpp_module/cln-1.3.7/lib/include/cln/GV_complex.h +58 -0
  429. pythonknot-0.1.2/src/cpp_module/cln-1.3.7/lib/include/cln/GV_integer.h +91 -0
  430. pythonknot-0.1.2/src/cpp_module/cln-1.3.7/lib/include/cln/GV_modinteger.h +51 -0
  431. pythonknot-0.1.2/src/cpp_module/cln-1.3.7/lib/include/cln/GV_number.h +55 -0
  432. pythonknot-0.1.2/src/cpp_module/cln-1.3.7/lib/include/cln/GV_rational.h +58 -0
  433. pythonknot-0.1.2/src/cpp_module/cln-1.3.7/lib/include/cln/GV_real.h +58 -0
  434. pythonknot-0.1.2/src/cpp_module/cln-1.3.7/lib/include/cln/SV.h +217 -0
  435. pythonknot-0.1.2/src/cpp_module/cln-1.3.7/lib/include/cln/SV_complex.h +54 -0
  436. pythonknot-0.1.2/src/cpp_module/cln-1.3.7/lib/include/cln/SV_integer.h +51 -0
  437. pythonknot-0.1.2/src/cpp_module/cln-1.3.7/lib/include/cln/SV_number.h +67 -0
  438. pythonknot-0.1.2/src/cpp_module/cln-1.3.7/lib/include/cln/SV_rational.h +54 -0
  439. pythonknot-0.1.2/src/cpp_module/cln-1.3.7/lib/include/cln/SV_real.h +54 -0
  440. pythonknot-0.1.2/src/cpp_module/cln-1.3.7/lib/include/cln/SV_ringelt.h +72 -0
  441. pythonknot-0.1.2/src/cpp_module/cln-1.3.7/lib/include/cln/V.h +23 -0
  442. pythonknot-0.1.2/src/cpp_module/cln-1.3.7/lib/include/cln/cln.h +141 -0
  443. pythonknot-0.1.2/src/cpp_module/cln-1.3.7/lib/include/cln/complex.h +157 -0
  444. pythonknot-0.1.2/src/cpp_module/cln-1.3.7/lib/include/cln/complex_class.h +70 -0
  445. pythonknot-0.1.2/src/cpp_module/cln-1.3.7/lib/include/cln/complex_io.h +43 -0
  446. pythonknot-0.1.2/src/cpp_module/cln-1.3.7/lib/include/cln/complex_ring.h +26 -0
  447. pythonknot-0.1.2/src/cpp_module/cln-1.3.7/lib/include/cln/condition.h +39 -0
  448. pythonknot-0.1.2/src/cpp_module/cln-1.3.7/lib/include/cln/config.h +27 -0
  449. pythonknot-0.1.2/src/cpp_module/cln-1.3.7/lib/include/cln/dfloat.h +326 -0
  450. pythonknot-0.1.2/src/cpp_module/cln-1.3.7/lib/include/cln/dfloat_class.h +75 -0
  451. pythonknot-0.1.2/src/cpp_module/cln-1.3.7/lib/include/cln/dfloat_io.h +31 -0
  452. pythonknot-0.1.2/src/cpp_module/cln-1.3.7/lib/include/cln/exception.h +40 -0
  453. pythonknot-0.1.2/src/cpp_module/cln-1.3.7/lib/include/cln/ffloat.h +329 -0
  454. pythonknot-0.1.2/src/cpp_module/cln-1.3.7/lib/include/cln/ffloat_class.h +85 -0
  455. pythonknot-0.1.2/src/cpp_module/cln-1.3.7/lib/include/cln/ffloat_io.h +31 -0
  456. pythonknot-0.1.2/src/cpp_module/cln-1.3.7/lib/include/cln/float.h +738 -0
  457. pythonknot-0.1.2/src/cpp_module/cln-1.3.7/lib/include/cln/float_class.h +52 -0
  458. pythonknot-0.1.2/src/cpp_module/cln-1.3.7/lib/include/cln/float_io.h +76 -0
  459. pythonknot-0.1.2/src/cpp_module/cln-1.3.7/lib/include/cln/floatformat.h +21 -0
  460. pythonknot-0.1.2/src/cpp_module/cln-1.3.7/lib/include/cln/host_cpu.h +84 -0
  461. pythonknot-0.1.2/src/cpp_module/cln-1.3.7/lib/include/cln/input.h +61 -0
  462. pythonknot-0.1.2/src/cpp_module/cln-1.3.7/lib/include/cln/integer.h +654 -0
  463. pythonknot-0.1.2/src/cpp_module/cln-1.3.7/lib/include/cln/integer_class.h +63 -0
  464. pythonknot-0.1.2/src/cpp_module/cln-1.3.7/lib/include/cln/integer_io.h +100 -0
  465. pythonknot-0.1.2/src/cpp_module/cln-1.3.7/lib/include/cln/integer_ring.h +26 -0
  466. pythonknot-0.1.2/src/cpp_module/cln-1.3.7/lib/include/cln/intparam.h +92 -0
  467. pythonknot-0.1.2/src/cpp_module/cln-1.3.7/lib/include/cln/io.h +85 -0
  468. pythonknot-0.1.2/src/cpp_module/cln-1.3.7/lib/include/cln/lfloat.h +425 -0
  469. pythonknot-0.1.2/src/cpp_module/cln-1.3.7/lib/include/cln/lfloat_class.h +73 -0
  470. pythonknot-0.1.2/src/cpp_module/cln-1.3.7/lib/include/cln/lfloat_io.h +31 -0
  471. pythonknot-0.1.2/src/cpp_module/cln-1.3.7/lib/include/cln/malloc.h +17 -0
  472. pythonknot-0.1.2/src/cpp_module/cln-1.3.7/lib/include/cln/modinteger.h +466 -0
  473. pythonknot-0.1.2/src/cpp_module/cln-1.3.7/lib/include/cln/modules.h +37 -0
  474. pythonknot-0.1.2/src/cpp_module/cln-1.3.7/lib/include/cln/null_ring.h +24 -0
  475. pythonknot-0.1.2/src/cpp_module/cln-1.3.7/lib/include/cln/number.h +300 -0
  476. pythonknot-0.1.2/src/cpp_module/cln-1.3.7/lib/include/cln/number_io.h +42 -0
  477. pythonknot-0.1.2/src/cpp_module/cln-1.3.7/lib/include/cln/numtheory.h +90 -0
  478. pythonknot-0.1.2/src/cpp_module/cln-1.3.7/lib/include/cln/object.h +531 -0
  479. pythonknot-0.1.2/src/cpp_module/cln-1.3.7/lib/include/cln/output.h +74 -0
  480. pythonknot-0.1.2/src/cpp_module/cln-1.3.7/lib/include/cln/proplist.h +55 -0
  481. pythonknot-0.1.2/src/cpp_module/cln-1.3.7/lib/include/cln/random.h +55 -0
  482. pythonknot-0.1.2/src/cpp_module/cln-1.3.7/lib/include/cln/rational.h +337 -0
  483. pythonknot-0.1.2/src/cpp_module/cln-1.3.7/lib/include/cln/rational_class.h +65 -0
  484. pythonknot-0.1.2/src/cpp_module/cln-1.3.7/lib/include/cln/rational_io.h +73 -0
  485. pythonknot-0.1.2/src/cpp_module/cln-1.3.7/lib/include/cln/rational_ring.h +26 -0
  486. pythonknot-0.1.2/src/cpp_module/cln-1.3.7/lib/include/cln/real.h +607 -0
  487. pythonknot-0.1.2/src/cpp_module/cln-1.3.7/lib/include/cln/real_class.h +70 -0
  488. pythonknot-0.1.2/src/cpp_module/cln-1.3.7/lib/include/cln/real_io.h +52 -0
  489. pythonknot-0.1.2/src/cpp_module/cln-1.3.7/lib/include/cln/real_ring.h +27 -0
  490. pythonknot-0.1.2/src/cpp_module/cln-1.3.7/lib/include/cln/ring.h +464 -0
  491. pythonknot-0.1.2/src/cpp_module/cln-1.3.7/lib/include/cln/sfloat.h +300 -0
  492. pythonknot-0.1.2/src/cpp_module/cln-1.3.7/lib/include/cln/sfloat_class.h +45 -0
  493. pythonknot-0.1.2/src/cpp_module/cln-1.3.7/lib/include/cln/sfloat_io.h +31 -0
  494. pythonknot-0.1.2/src/cpp_module/cln-1.3.7/lib/include/cln/string.h +172 -0
  495. pythonknot-0.1.2/src/cpp_module/cln-1.3.7/lib/include/cln/symbol.h +48 -0
  496. pythonknot-0.1.2/src/cpp_module/cln-1.3.7/lib/include/cln/timing.h +78 -0
  497. pythonknot-0.1.2/src/cpp_module/cln-1.3.7/lib/include/cln/types.h +182 -0
  498. pythonknot-0.1.2/src/cpp_module/cln-1.3.7/lib/include/cln/univpoly.h +733 -0
  499. pythonknot-0.1.2/src/cpp_module/cln-1.3.7/lib/include/cln/univpoly_complex.h +228 -0
  500. pythonknot-0.1.2/src/cpp_module/cln-1.3.7/lib/include/cln/univpoly_integer.h +233 -0
  501. pythonknot-0.1.2/src/cpp_module/cln-1.3.7/lib/include/cln/univpoly_modint.h +217 -0
  502. pythonknot-0.1.2/src/cpp_module/cln-1.3.7/lib/include/cln/univpoly_rational.h +232 -0
  503. pythonknot-0.1.2/src/cpp_module/cln-1.3.7/lib/include/cln/univpoly_real.h +228 -0
  504. pythonknot-0.1.2/src/cpp_module/cln-1.3.7/lib/include/cln/version.h +46 -0
  505. pythonknot-0.1.2/src/cpp_module/cln-1.3.7/src/base/cl_N.h +22 -0
  506. pythonknot-0.1.2/src/cpp_module/cln-1.3.7/src/base/cl_alloca.h +88 -0
  507. pythonknot-0.1.2/src/cpp_module/cln-1.3.7/src/base/cl_base_config.h +18 -0
  508. pythonknot-0.1.2/src/cpp_module/cln-1.3.7/src/base/cl_gmpconfig.h +17 -0
  509. pythonknot-0.1.2/src/cpp_module/cln-1.3.7/src/base/cl_inline.h +8 -0
  510. pythonknot-0.1.2/src/cpp_module/cln-1.3.7/src/base/cl_inline2.h +8 -0
  511. pythonknot-0.1.2/src/cpp_module/cln-1.3.7/src/base/cl_iterator.h +28 -0
  512. pythonknot-0.1.2/src/cpp_module/cln-1.3.7/src/base/cl_low.h +1594 -0
  513. pythonknot-0.1.2/src/cpp_module/cln-1.3.7/src/base/cl_macros.h +258 -0
  514. pythonknot-0.1.2/src/cpp_module/cln-1.3.7/src/base/cl_maybe_inline.h +133 -0
  515. pythonknot-0.1.2/src/cpp_module/cln-1.3.7/src/base/cl_offsetof.h +20 -0
  516. pythonknot-0.1.2/src/cpp_module/cln-1.3.7/src/base/cl_sysdep.h +64 -0
  517. pythonknot-0.1.2/src/cpp_module/cln-1.3.7/src/base/cl_xmacros.h +13 -0
  518. pythonknot-0.1.2/src/cpp_module/cln-1.3.7/src/base/digit/cl_2D.h +44 -0
  519. pythonknot-0.1.2/src/cpp_module/cln-1.3.7/src/base/digit/cl_D.h +226 -0
  520. pythonknot-0.1.2/src/cpp_module/cln-1.3.7/src/base/digitseq/cl_2DS.h +31 -0
  521. pythonknot-0.1.2/src/cpp_module/cln-1.3.7/src/base/digitseq/cl_DS.h +2689 -0
  522. pythonknot-0.1.2/src/cpp_module/cln-1.3.7/src/base/digitseq/cl_DS_endian.h +21 -0
  523. pythonknot-0.1.2/src/cpp_module/cln-1.3.7/src/base/digitseq/cl_DS_mul_fftc.h +1102 -0
  524. pythonknot-0.1.2/src/cpp_module/cln-1.3.7/src/base/digitseq/cl_DS_mul_fftcs.h +1152 -0
  525. pythonknot-0.1.2/src/cpp_module/cln-1.3.7/src/base/digitseq/cl_DS_mul_fftm.h +654 -0
  526. pythonknot-0.1.2/src/cpp_module/cln-1.3.7/src/base/digitseq/cl_DS_mul_fftp.h +823 -0
  527. pythonknot-0.1.2/src/cpp_module/cln-1.3.7/src/base/digitseq/cl_DS_mul_fftp3.h +672 -0
  528. pythonknot-0.1.2/src/cpp_module/cln-1.3.7/src/base/digitseq/cl_DS_mul_fftp3m.h +858 -0
  529. pythonknot-0.1.2/src/cpp_module/cln-1.3.7/src/base/digitseq/cl_DS_mul_fftr.h +1139 -0
  530. pythonknot-0.1.2/src/cpp_module/cln-1.3.7/src/base/digitseq/cl_DS_mul_kara.h +259 -0
  531. pythonknot-0.1.2/src/cpp_module/cln-1.3.7/src/base/digitseq/cl_DS_mul_kara_sqr.h +81 -0
  532. pythonknot-0.1.2/src/cpp_module/cln-1.3.7/src/base/digitseq/cl_DS_mul_nuss.h +1511 -0
  533. pythonknot-0.1.2/src/cpp_module/cln-1.3.7/src/base/digitseq/cl_asm.h +42 -0
  534. pythonknot-0.1.2/src/cpp_module/cln-1.3.7/src/base/digitseq/cl_asm_arm.h +10 -0
  535. pythonknot-0.1.2/src/cpp_module/cln-1.3.7/src/base/digitseq/cl_asm_hppa.h +2 -0
  536. pythonknot-0.1.2/src/cpp_module/cln-1.3.7/src/base/digitseq/cl_asm_i386.h +11 -0
  537. pythonknot-0.1.2/src/cpp_module/cln-1.3.7/src/base/digitseq/cl_asm_m68k.h +11 -0
  538. pythonknot-0.1.2/src/cpp_module/cln-1.3.7/src/base/digitseq/cl_asm_mips.h +8 -0
  539. pythonknot-0.1.2/src/cpp_module/cln-1.3.7/src/base/digitseq/cl_asm_sparc.h +11 -0
  540. pythonknot-0.1.2/src/cpp_module/cln-1.3.7/src/base/digitseq/cl_asm_sparc64.h +10 -0
  541. pythonknot-0.1.2/src/cpp_module/cln-1.3.7/src/base/hash/cl_hash.h +185 -0
  542. pythonknot-0.1.2/src/cpp_module/cln-1.3.7/src/base/hash/cl_hash1.h +157 -0
  543. pythonknot-0.1.2/src/cpp_module/cln-1.3.7/src/base/hash/cl_hash1weak.h +97 -0
  544. pythonknot-0.1.2/src/cpp_module/cln-1.3.7/src/base/hash/cl_hash2.h +163 -0
  545. pythonknot-0.1.2/src/cpp_module/cln-1.3.7/src/base/hash/cl_hash2weak.h +97 -0
  546. pythonknot-0.1.2/src/cpp_module/cln-1.3.7/src/base/hash/cl_hashset.h +150 -0
  547. pythonknot-0.1.2/src/cpp_module/cln-1.3.7/src/base/hash/cl_hashuniq.h +158 -0
  548. pythonknot-0.1.2/src/cpp_module/cln-1.3.7/src/base/hash/cl_hashuniqweak.h +97 -0
  549. pythonknot-0.1.2/src/cpp_module/cln-1.3.7/src/base/hash/cl_rcpointer2_hashweak_rcpointer.h +48 -0
  550. pythonknot-0.1.2/src/cpp_module/cln-1.3.7/src/base/hash/cl_rcpointer_hashweak_rcpointer.h +43 -0
  551. pythonknot-0.1.2/src/cpp_module/cln-1.3.7/src/base/random/cl_random_impl.h +26 -0
  552. pythonknot-0.1.2/src/cpp_module/cln-1.3.7/src/base/string/cl_spushstring.h +65 -0
  553. pythonknot-0.1.2/src/cpp_module/cln-1.3.7/src/base/string/cl_sstring.h +14 -0
  554. pythonknot-0.1.2/src/cpp_module/cln-1.3.7/src/base/string/cl_st_make0.h +11 -0
  555. pythonknot-0.1.2/src/cpp_module/cln-1.3.7/src/complex/cl_C.h +193 -0
  556. pythonknot-0.1.2/src/cpp_module/cln-1.3.7/src/float/cl_F.h +276 -0
  557. pythonknot-0.1.2/src/cpp_module/cln-1.3.7/src/float/dfloat/cl_DF.h +321 -0
  558. pythonknot-0.1.2/src/cpp_module/cln-1.3.7/src/float/ffloat/cl_FF.h +249 -0
  559. pythonknot-0.1.2/src/cpp_module/cln-1.3.7/src/float/lfloat/cl_LF.h +150 -0
  560. pythonknot-0.1.2/src/cpp_module/cln-1.3.7/src/float/lfloat/cl_LF_impl.h +153 -0
  561. pythonknot-0.1.2/src/cpp_module/cln-1.3.7/src/float/sfloat/cl_SF.h +137 -0
  562. pythonknot-0.1.2/src/cpp_module/cln-1.3.7/src/float/transcendental/cl_F_catalanconst_var.h +29 -0
  563. pythonknot-0.1.2/src/cpp_module/cln-1.3.7/src/float/transcendental/cl_F_eulerconst_var.h +29 -0
  564. pythonknot-0.1.2/src/cpp_module/cln-1.3.7/src/float/transcendental/cl_F_exp1_var.h +29 -0
  565. pythonknot-0.1.2/src/cpp_module/cln-1.3.7/src/float/transcendental/cl_F_ln10_var.h +29 -0
  566. pythonknot-0.1.2/src/cpp_module/cln-1.3.7/src/float/transcendental/cl_F_ln2_var.h +29 -0
  567. pythonknot-0.1.2/src/cpp_module/cln-1.3.7/src/float/transcendental/cl_F_pi_var.h +29 -0
  568. pythonknot-0.1.2/src/cpp_module/cln-1.3.7/src/float/transcendental/cl_F_tran.h +149 -0
  569. pythonknot-0.1.2/src/cpp_module/cln-1.3.7/src/float/transcendental/cl_LF_tran.h +335 -0
  570. pythonknot-0.1.2/src/cpp_module/cln-1.3.7/src/integer/bitwise/cl_I_byte.h +33 -0
  571. pythonknot-0.1.2/src/cpp_module/cln-1.3.7/src/integer/bitwise/cl_I_log.h +38 -0
  572. pythonknot-0.1.2/src/cpp_module/cln-1.3.7/src/integer/cl_I.h +764 -0
  573. pythonknot-0.1.2/src/cpp_module/cln-1.3.7/src/integer/conv/cl_I_cached_power.h +47 -0
  574. pythonknot-0.1.2/src/cpp_module/cln-1.3.7/src/integer/hash/cl_I_hash_gcobject.h +35 -0
  575. pythonknot-0.1.2/src/cpp_module/cln-1.3.7/src/integer/hash/cl_I_hash_gcpointer.h +35 -0
  576. pythonknot-0.1.2/src/cpp_module/cln-1.3.7/src/integer/hash/cl_I_hash_pointer.h +35 -0
  577. pythonknot-0.1.2/src/cpp_module/cln-1.3.7/src/integer/hash/cl_I_hash_rcobject.h +35 -0
  578. pythonknot-0.1.2/src/cpp_module/cln-1.3.7/src/integer/hash/cl_I_hash_rcpointer.h +35 -0
  579. pythonknot-0.1.2/src/cpp_module/cln-1.3.7/src/integer/hash/cl_I_hashweak_rcpointer.h +35 -0
  580. pythonknot-0.1.2/src/cpp_module/cln-1.3.7/src/integer/misc/combin/cl_I_combin.h +17 -0
  581. pythonknot-0.1.2/src/cpp_module/cln-1.3.7/src/modinteger/cl_MI.h +14 -0
  582. pythonknot-0.1.2/src/cpp_module/cln-1.3.7/src/modinteger/cl_MI_fix16.h +91 -0
  583. pythonknot-0.1.2/src/cpp_module/cln-1.3.7/src/modinteger/cl_MI_fix29.h +98 -0
  584. pythonknot-0.1.2/src/cpp_module/cln-1.3.7/src/modinteger/cl_MI_fix32.h +100 -0
  585. pythonknot-0.1.2/src/cpp_module/cln-1.3.7/src/modinteger/cl_MI_int.h +149 -0
  586. pythonknot-0.1.2/src/cpp_module/cln-1.3.7/src/modinteger/cl_MI_int32.h +99 -0
  587. pythonknot-0.1.2/src/cpp_module/cln-1.3.7/src/modinteger/cl_MI_montgom.h +238 -0
  588. pythonknot-0.1.2/src/cpp_module/cln-1.3.7/src/modinteger/cl_MI_pow2.h +157 -0
  589. pythonknot-0.1.2/src/cpp_module/cln-1.3.7/src/modinteger/cl_MI_pow2m1.h +98 -0
  590. pythonknot-0.1.2/src/cpp_module/cln-1.3.7/src/modinteger/cl_MI_pow2p1.h +109 -0
  591. pythonknot-0.1.2/src/cpp_module/cln-1.3.7/src/modinteger/cl_MI_std.h +370 -0
  592. pythonknot-0.1.2/src/cpp_module/cln-1.3.7/src/numtheory/cl_IF.h +55 -0
  593. pythonknot-0.1.2/src/cpp_module/cln-1.3.7/src/polynomial/cl_UP.h +35 -0
  594. pythonknot-0.1.2/src/cpp_module/cln-1.3.7/src/polynomial/elem/cl_UP_GF2.h +1066 -0
  595. pythonknot-0.1.2/src/cpp_module/cln-1.3.7/src/polynomial/elem/cl_UP_MI.h +506 -0
  596. pythonknot-0.1.2/src/cpp_module/cln-1.3.7/src/polynomial/elem/cl_UP_gen.h +485 -0
  597. pythonknot-0.1.2/src/cpp_module/cln-1.3.7/src/polynomial/elem/cl_UP_number.h +488 -0
  598. pythonknot-0.1.2/src/cpp_module/cln-1.3.7/src/rational/cl_RA.h +154 -0
  599. pythonknot-0.1.2/src/cpp_module/cln-1.3.7/src/real/cl_R.h +209 -0
  600. pythonknot-0.1.2/src/cpp_module/cln-1.3.7/src/real/division/cl_R_div_t.h +26 -0
  601. pythonknot-0.1.2/src/cpp_module/cln-1.3.7/src/real/format-output/cl_format.h +75 -0
  602. pythonknot-0.1.2/src/cpp_module/cln-1.3.7/src/timing/cl_t_config.h +29 -0
  603. pythonknot-0.1.2/src/cpp_module/cln-1.3.7/src/vector/cl_GV_io.h +22 -0
  604. pythonknot-0.1.2/src/cpp_module/cln-1.3.7/src/vector/cl_SV_io.h +22 -0
  605. pythonknot-0.1.2/src/cpp_module/cln-1.3.7/tests/exam.h +103 -0
  606. pythonknot-0.1.2/src/cpp_module/cln-1.3.7/tests/test.h +93 -0
  607. pythonknot-0.1.2/src/cpp_module/cln-1.3.7/tests/test_I.h +4 -0
  608. pythonknot-0.1.2/src/cpp_module/cln-1.3.7/tests/test_MI.h +5 -0
  609. pythonknot-0.1.2/src/cpp_module/cln-1.3.7/tests/test_nt.h +5 -0
  610. pythonknot-0.1.2/src/cpp_module/ginac/build/CMakeFiles/3.16.3/CompilerIdCXX/CMakeCXXCompilerId.cpp +660 -0
  611. pythonknot-0.1.2/src/cpp_module/ginac/build/config.h +5 -0
  612. pythonknot-0.1.2/src/cpp_module/ginac/build/ginac/function.cpp +2289 -0
  613. pythonknot-0.1.2/src/cpp_module/ginac/build/ginac/function.h +770 -0
  614. pythonknot-0.1.2/src/cpp_module/ginac/build/ginsh/ginsh_fcn_help.h +219 -0
  615. pythonknot-0.1.2/src/cpp_module/ginac/build/ginsh/ginsh_lexer.cpp +2202 -0
  616. pythonknot-0.1.2/src/cpp_module/ginac/build/ginsh/ginsh_op_help.h +15 -0
  617. pythonknot-0.1.2/src/cpp_module/ginac/build/ginsh/ginsh_parser.cpp +2845 -0
  618. pythonknot-0.1.2/src/cpp_module/ginac/check/bugme_chinrem_gcd.cpp +77 -0
  619. pythonknot-0.1.2/src/cpp_module/ginac/check/check_inifcns.cpp +215 -0
  620. pythonknot-0.1.2/src/cpp_module/ginac/check/check_lsolve.cpp +208 -0
  621. pythonknot-0.1.2/src/cpp_module/ginac/check/check_matrices.cpp +228 -0
  622. pythonknot-0.1.2/src/cpp_module/ginac/check/check_mul_info.cpp +14 -0
  623. pythonknot-0.1.2/src/cpp_module/ginac/check/check_numeric.cpp +128 -0
  624. pythonknot-0.1.2/src/cpp_module/ginac/check/error_report.h +40 -0
  625. pythonknot-0.1.2/src/cpp_module/ginac/check/exam_archive.cpp +82 -0
  626. pythonknot-0.1.2/src/cpp_module/ginac/check/exam_clifford.cpp +666 -0
  627. pythonknot-0.1.2/src/cpp_module/ginac/check/exam_color.cpp +163 -0
  628. pythonknot-0.1.2/src/cpp_module/ginac/check/exam_cra.cpp +146 -0
  629. pythonknot-0.1.2/src/cpp_module/ginac/check/exam_differentiation.cpp +282 -0
  630. pythonknot-0.1.2/src/cpp_module/ginac/check/exam_factor.cpp +312 -0
  631. pythonknot-0.1.2/src/cpp_module/ginac/check/exam_indexed.cpp +413 -0
  632. pythonknot-0.1.2/src/cpp_module/ginac/check/exam_inifcns.cpp +440 -0
  633. pythonknot-0.1.2/src/cpp_module/ginac/check/exam_inifcns_nstdsums.cpp +420 -0
  634. pythonknot-0.1.2/src/cpp_module/ginac/check/exam_inifcns_nstdsums.h +888 -0
  635. pythonknot-0.1.2/src/cpp_module/ginac/check/exam_lsolve.cpp +209 -0
  636. pythonknot-0.1.2/src/cpp_module/ginac/check/exam_matrices.cpp +405 -0
  637. pythonknot-0.1.2/src/cpp_module/ginac/check/exam_misc.cpp +322 -0
  638. pythonknot-0.1.2/src/cpp_module/ginac/check/exam_mod_gcd.cpp +108 -0
  639. pythonknot-0.1.2/src/cpp_module/ginac/check/exam_normalization.cpp +244 -0
  640. pythonknot-0.1.2/src/cpp_module/ginac/check/exam_numeric.cpp +403 -0
  641. pythonknot-0.1.2/src/cpp_module/ginac/check/exam_paranoia.cpp +678 -0
  642. pythonknot-0.1.2/src/cpp_module/ginac/check/exam_polygcd.cpp +255 -0
  643. pythonknot-0.1.2/src/cpp_module/ginac/check/exam_powerlaws.cpp +341 -0
  644. pythonknot-0.1.2/src/cpp_module/ginac/check/exam_pseries.cpp +420 -0
  645. pythonknot-0.1.2/src/cpp_module/ginac/check/exam_real_imag.cpp +82 -0
  646. pythonknot-0.1.2/src/cpp_module/ginac/check/exam_structure.cpp +102 -0
  647. pythonknot-0.1.2/src/cpp_module/ginac/check/factor_univariate_bug.cpp +21 -0
  648. pythonknot-0.1.2/src/cpp_module/ginac/check/genex.cpp +157 -0
  649. pythonknot-0.1.2/src/cpp_module/ginac/check/heur_gcd_bug.cpp +58 -0
  650. pythonknot-0.1.2/src/cpp_module/ginac/check/match_bug.cpp +127 -0
  651. pythonknot-0.1.2/src/cpp_module/ginac/check/mul_eval_memleak.cpp +119 -0
  652. pythonknot-0.1.2/src/cpp_module/ginac/check/numeric_archive.cpp +68 -0
  653. pythonknot-0.1.2/src/cpp_module/ginac/check/parser_bugs.cpp +115 -0
  654. pythonknot-0.1.2/src/cpp_module/ginac/check/parser_memleak.cpp +57 -0
  655. pythonknot-0.1.2/src/cpp_module/ginac/check/pgcd_infinite_loop.cpp +41 -0
  656. pythonknot-0.1.2/src/cpp_module/ginac/check/pgcd_relatively_prime_bug.cpp +31 -0
  657. pythonknot-0.1.2/src/cpp_module/ginac/check/randomize_serials.cpp +53 -0
  658. pythonknot-0.1.2/src/cpp_module/ginac/check/test_runner.h +90 -0
  659. pythonknot-0.1.2/src/cpp_module/ginac/check/time_antipode.cpp +511 -0
  660. pythonknot-0.1.2/src/cpp_module/ginac/check/time_dennyfliegner.cpp +99 -0
  661. pythonknot-0.1.2/src/cpp_module/ginac/check/time_fateman_expand.cpp +79 -0
  662. pythonknot-0.1.2/src/cpp_module/ginac/check/time_gammaseries.cpp +88 -0
  663. pythonknot-0.1.2/src/cpp_module/ginac/check/time_lw_A.cpp +73 -0
  664. pythonknot-0.1.2/src/cpp_module/ginac/check/time_lw_B.cpp +73 -0
  665. pythonknot-0.1.2/src/cpp_module/ginac/check/time_lw_C.cpp +78 -0
  666. pythonknot-0.1.2/src/cpp_module/ginac/check/time_lw_D.cpp +78 -0
  667. pythonknot-0.1.2/src/cpp_module/ginac/check/time_lw_E.cpp +78 -0
  668. pythonknot-0.1.2/src/cpp_module/ginac/check/time_lw_F.cpp +75 -0
  669. pythonknot-0.1.2/src/cpp_module/ginac/check/time_lw_G.cpp +78 -0
  670. pythonknot-0.1.2/src/cpp_module/ginac/check/time_lw_H.cpp +90 -0
  671. pythonknot-0.1.2/src/cpp_module/ginac/check/time_lw_IJKL.cpp +97 -0
  672. pythonknot-0.1.2/src/cpp_module/ginac/check/time_lw_M1.cpp +109 -0
  673. pythonknot-0.1.2/src/cpp_module/ginac/check/time_lw_M2.cpp +189 -0
  674. pythonknot-0.1.2/src/cpp_module/ginac/check/time_lw_N.cpp +93 -0
  675. pythonknot-0.1.2/src/cpp_module/ginac/check/time_lw_O.cpp +173 -0
  676. pythonknot-0.1.2/src/cpp_module/ginac/check/time_lw_P.cpp +87 -0
  677. pythonknot-0.1.2/src/cpp_module/ginac/check/time_lw_Pprime.cpp +101 -0
  678. pythonknot-0.1.2/src/cpp_module/ginac/check/time_lw_Q.cpp +95 -0
  679. pythonknot-0.1.2/src/cpp_module/ginac/check/time_lw_Qprime.cpp +107 -0
  680. pythonknot-0.1.2/src/cpp_module/ginac/check/time_parser.cpp +81 -0
  681. pythonknot-0.1.2/src/cpp_module/ginac/check/time_toeplitz.cpp +115 -0
  682. pythonknot-0.1.2/src/cpp_module/ginac/check/time_uvar_gcd.cpp +1911 -0
  683. pythonknot-0.1.2/src/cpp_module/ginac/check/time_vandermonde.cpp +112 -0
  684. pythonknot-0.1.2/src/cpp_module/ginac/check/timer.cpp +101 -0
  685. pythonknot-0.1.2/src/cpp_module/ginac/check/timer.h +53 -0
  686. pythonknot-0.1.2/src/cpp_module/ginac/doc/examples/archive1.cpp +47 -0
  687. pythonknot-0.1.2/src/cpp_module/ginac/doc/examples/compile1.cpp +72 -0
  688. pythonknot-0.1.2/src/cpp_module/ginac/doc/examples/compile2.cpp +62 -0
  689. pythonknot-0.1.2/src/cpp_module/ginac/doc/examples/compile3.cpp +39 -0
  690. pythonknot-0.1.2/src/cpp_module/ginac/doc/examples/derivative.cpp +30 -0
  691. pythonknot-0.1.2/src/cpp_module/ginac/doc/examples/lanczos.cpp +238 -0
  692. pythonknot-0.1.2/src/cpp_module/ginac/doc/examples/mystring.cpp +83 -0
  693. pythonknot-0.1.2/src/cpp_module/ginac/ginac/add.cpp +581 -0
  694. pythonknot-0.1.2/src/cpp_module/ginac/ginac/add.h +93 -0
  695. pythonknot-0.1.2/src/cpp_module/ginac/ginac/archive.cpp +692 -0
  696. pythonknot-0.1.2/src/cpp_module/ginac/ginac/archive.h +346 -0
  697. pythonknot-0.1.2/src/cpp_module/ginac/ginac/assertion.h +37 -0
  698. pythonknot-0.1.2/src/cpp_module/ginac/ginac/basic.cpp +927 -0
  699. pythonknot-0.1.2/src/cpp_module/ginac/ginac/basic.h +352 -0
  700. pythonknot-0.1.2/src/cpp_module/ginac/ginac/class_info.h +198 -0
  701. pythonknot-0.1.2/src/cpp_module/ginac/ginac/clifford.cpp +1409 -0
  702. pythonknot-0.1.2/src/cpp_module/ginac/ginac/clifford.h +369 -0
  703. pythonknot-0.1.2/src/cpp_module/ginac/ginac/color.cpp +639 -0
  704. pythonknot-0.1.2/src/cpp_module/ginac/ginac/color.h +198 -0
  705. pythonknot-0.1.2/src/cpp_module/ginac/ginac/compiler.h +36 -0
  706. pythonknot-0.1.2/src/cpp_module/ginac/ginac/constant.cpp +258 -0
  707. pythonknot-0.1.2/src/cpp_module/ginac/ginac/constant.h +88 -0
  708. pythonknot-0.1.2/src/cpp_module/ginac/ginac/container.h +675 -0
  709. pythonknot-0.1.2/src/cpp_module/ginac/ginac/crc32.h +76 -0
  710. pythonknot-0.1.2/src/cpp_module/ginac/ginac/ex.cpp +558 -0
  711. pythonknot-0.1.2/src/cpp_module/ginac/ginac/ex.h +987 -0
  712. pythonknot-0.1.2/src/cpp_module/ginac/ginac/excompiler.cpp +360 -0
  713. pythonknot-0.1.2/src/cpp_module/ginac/ginac/excompiler.h +126 -0
  714. pythonknot-0.1.2/src/cpp_module/ginac/ginac/expair.cpp +48 -0
  715. pythonknot-0.1.2/src/cpp_module/ginac/ginac/expair.h +116 -0
  716. pythonknot-0.1.2/src/cpp_module/ginac/ginac/expairseq.cpp +1175 -0
  717. pythonknot-0.1.2/src/cpp_module/ginac/ginac/expairseq.h +187 -0
  718. pythonknot-0.1.2/src/cpp_module/ginac/ginac/exprseq.cpp +46 -0
  719. pythonknot-0.1.2/src/cpp_module/ginac/ginac/exprseq.h +39 -0
  720. pythonknot-0.1.2/src/cpp_module/ginac/ginac/factor.cpp +2596 -0
  721. pythonknot-0.1.2/src/cpp_module/ginac/ginac/factor.h +46 -0
  722. pythonknot-0.1.2/src/cpp_module/ginac/ginac/fail.cpp +54 -0
  723. pythonknot-0.1.2/src/cpp_module/ginac/ginac/fail.h +48 -0
  724. pythonknot-0.1.2/src/cpp_module/ginac/ginac/fderivative.cpp +252 -0
  725. pythonknot-0.1.2/src/cpp_module/ginac/ginac/fderivative.h +91 -0
  726. pythonknot-0.1.2/src/cpp_module/ginac/ginac/flags.h +309 -0
  727. pythonknot-0.1.2/src/cpp_module/ginac/ginac/ginac.h +79 -0
  728. pythonknot-0.1.2/src/cpp_module/ginac/ginac/hash_map.h +38 -0
  729. pythonknot-0.1.2/src/cpp_module/ginac/ginac/hash_seed.h +54 -0
  730. pythonknot-0.1.2/src/cpp_module/ginac/ginac/idx.cpp +574 -0
  731. pythonknot-0.1.2/src/cpp_module/ginac/ginac/idx.h +277 -0
  732. pythonknot-0.1.2/src/cpp_module/ginac/ginac/indexed.cpp +1578 -0
  733. pythonknot-0.1.2/src/cpp_module/ginac/ginac/indexed.h +288 -0
  734. pythonknot-0.1.2/src/cpp_module/ginac/ginac/inifcns.cpp +1277 -0
  735. pythonknot-0.1.2/src/cpp_module/ginac/ginac/inifcns.h +215 -0
  736. pythonknot-0.1.2/src/cpp_module/ginac/ginac/inifcns_gamma.cpp +589 -0
  737. pythonknot-0.1.2/src/cpp_module/ginac/ginac/inifcns_nstdsums.cpp +4157 -0
  738. pythonknot-0.1.2/src/cpp_module/ginac/ginac/inifcns_trans.cpp +1574 -0
  739. pythonknot-0.1.2/src/cpp_module/ginac/ginac/integral.cpp +448 -0
  740. pythonknot-0.1.2/src/cpp_module/ginac/ginac/integral.h +96 -0
  741. pythonknot-0.1.2/src/cpp_module/ginac/ginac/lst.cpp +43 -0
  742. pythonknot-0.1.2/src/cpp_module/ginac/ginac/lst.h +49 -0
  743. pythonknot-0.1.2/src/cpp_module/ginac/ginac/matrix.cpp +1838 -0
  744. pythonknot-0.1.2/src/cpp_module/ginac/ginac/matrix.h +262 -0
  745. pythonknot-0.1.2/src/cpp_module/ginac/ginac/mul.cpp +1296 -0
  746. pythonknot-0.1.2/src/cpp_module/ginac/ginac/mul.h +108 -0
  747. pythonknot-0.1.2/src/cpp_module/ginac/ginac/ncmul.cpp +626 -0
  748. pythonknot-0.1.2/src/cpp_module/ginac/ginac/ncmul.h +99 -0
  749. pythonknot-0.1.2/src/cpp_module/ginac/ginac/normal.cpp +2686 -0
  750. pythonknot-0.1.2/src/cpp_module/ginac/ginac/normal.h +108 -0
  751. pythonknot-0.1.2/src/cpp_module/ginac/ginac/numeric.cpp +2581 -0
  752. pythonknot-0.1.2/src/cpp_module/ginac/ginac/numeric.h +330 -0
  753. pythonknot-0.1.2/src/cpp_module/ginac/ginac/operators.cpp +510 -0
  754. pythonknot-0.1.2/src/cpp_module/ginac/ginac/operators.h +104 -0
  755. pythonknot-0.1.2/src/cpp_module/ginac/ginac/parser/debug.h +72 -0
  756. pythonknot-0.1.2/src/cpp_module/ginac/ginac/parser/default_reader.cpp +157 -0
  757. pythonknot-0.1.2/src/cpp_module/ginac/ginac/parser/lexer.cpp +180 -0
  758. pythonknot-0.1.2/src/cpp_module/ginac/ginac/parser/lexer.h +70 -0
  759. pythonknot-0.1.2/src/cpp_module/ginac/ginac/parser/parse_binop_rhs.cpp +197 -0
  760. pythonknot-0.1.2/src/cpp_module/ginac/ginac/parser/parse_context.cpp +47 -0
  761. pythonknot-0.1.2/src/cpp_module/ginac/ginac/parser/parse_context.h +121 -0
  762. pythonknot-0.1.2/src/cpp_module/ginac/ginac/parser/parser.cpp +262 -0
  763. pythonknot-0.1.2/src/cpp_module/ginac/ginac/parser/parser.h +137 -0
  764. pythonknot-0.1.2/src/cpp_module/ginac/ginac/parser/parser_compat.cpp +69 -0
  765. pythonknot-0.1.2/src/cpp_module/ginac/ginac/polynomial/chinrem_gcd.cpp +35 -0
  766. pythonknot-0.1.2/src/cpp_module/ginac/ginac/polynomial/chinrem_gcd.h +40 -0
  767. pythonknot-0.1.2/src/cpp_module/ginac/ginac/polynomial/collect_vargs.cpp +206 -0
  768. pythonknot-0.1.2/src/cpp_module/ginac/ginac/polynomial/collect_vargs.h +88 -0
  769. pythonknot-0.1.2/src/cpp_module/ginac/ginac/polynomial/cra_garner.cpp +113 -0
  770. pythonknot-0.1.2/src/cpp_module/ginac/ginac/polynomial/cra_garner.h +36 -0
  771. pythonknot-0.1.2/src/cpp_module/ginac/ginac/polynomial/debug.h +53 -0
  772. pythonknot-0.1.2/src/cpp_module/ginac/ginac/polynomial/divide_in_z_p.cpp +112 -0
  773. pythonknot-0.1.2/src/cpp_module/ginac/ginac/polynomial/divide_in_z_p.h +48 -0
  774. pythonknot-0.1.2/src/cpp_module/ginac/ginac/polynomial/euclid_gcd_wrap.h +82 -0
  775. pythonknot-0.1.2/src/cpp_module/ginac/ginac/polynomial/eval_point_finder.h +73 -0
  776. pythonknot-0.1.2/src/cpp_module/ginac/ginac/polynomial/eval_uvar.h +59 -0
  777. pythonknot-0.1.2/src/cpp_module/ginac/ginac/polynomial/gcd_euclid.h +66 -0
  778. pythonknot-0.1.2/src/cpp_module/ginac/ginac/polynomial/gcd_uvar.cpp +54 -0
  779. pythonknot-0.1.2/src/cpp_module/ginac/ginac/polynomial/heur_gcd_uvar.h +88 -0
  780. pythonknot-0.1.2/src/cpp_module/ginac/ginac/polynomial/interpolate_padic_uvar.h +61 -0
  781. pythonknot-0.1.2/src/cpp_module/ginac/ginac/polynomial/mgcd.cpp +132 -0
  782. pythonknot-0.1.2/src/cpp_module/ginac/ginac/polynomial/mod_gcd.cpp +198 -0
  783. pythonknot-0.1.2/src/cpp_module/ginac/ginac/polynomial/mod_gcd.h +34 -0
  784. pythonknot-0.1.2/src/cpp_module/ginac/ginac/polynomial/newton_interpolate.h +60 -0
  785. pythonknot-0.1.2/src/cpp_module/ginac/ginac/polynomial/normalize.cpp +49 -0
  786. pythonknot-0.1.2/src/cpp_module/ginac/ginac/polynomial/normalize.h +93 -0
  787. pythonknot-0.1.2/src/cpp_module/ginac/ginac/polynomial/optimal_vars_finder.cpp +154 -0
  788. pythonknot-0.1.2/src/cpp_module/ginac/ginac/polynomial/optimal_vars_finder.h +46 -0
  789. pythonknot-0.1.2/src/cpp_module/ginac/ginac/polynomial/pgcd.cpp +156 -0
  790. pythonknot-0.1.2/src/cpp_module/ginac/ginac/polynomial/pgcd.h +49 -0
  791. pythonknot-0.1.2/src/cpp_module/ginac/ginac/polynomial/poly_cra.h +60 -0
  792. pythonknot-0.1.2/src/cpp_module/ginac/ginac/polynomial/prem_uvar.h +68 -0
  793. pythonknot-0.1.2/src/cpp_module/ginac/ginac/polynomial/primes_factory.h +82 -0
  794. pythonknot-0.1.2/src/cpp_module/ginac/ginac/polynomial/primpart_content.cpp +98 -0
  795. pythonknot-0.1.2/src/cpp_module/ginac/ginac/polynomial/remainder.cpp +87 -0
  796. pythonknot-0.1.2/src/cpp_module/ginac/ginac/polynomial/remainder.h +84 -0
  797. pythonknot-0.1.2/src/cpp_module/ginac/ginac/polynomial/ring_traits.h +67 -0
  798. pythonknot-0.1.2/src/cpp_module/ginac/ginac/polynomial/smod_helpers.h +95 -0
  799. pythonknot-0.1.2/src/cpp_module/ginac/ginac/polynomial/sr_gcd_uvar.h +117 -0
  800. pythonknot-0.1.2/src/cpp_module/ginac/ginac/polynomial/upoly.h +182 -0
  801. pythonknot-0.1.2/src/cpp_module/ginac/ginac/polynomial/upoly_io.cpp +75 -0
  802. pythonknot-0.1.2/src/cpp_module/ginac/ginac/polynomial/upoly_io.h +37 -0
  803. pythonknot-0.1.2/src/cpp_module/ginac/ginac/power.cpp +1155 -0
  804. pythonknot-0.1.2/src/cpp_module/ginac/ginac/power.h +135 -0
  805. pythonknot-0.1.2/src/cpp_module/ginac/ginac/print.cpp +96 -0
  806. pythonknot-0.1.2/src/cpp_module/ginac/ginac/print.h +283 -0
  807. pythonknot-0.1.2/src/cpp_module/ginac/ginac/pseries.cpp +1277 -0
  808. pythonknot-0.1.2/src/cpp_module/ginac/ginac/pseries.h +148 -0
  809. pythonknot-0.1.2/src/cpp_module/ginac/ginac/ptr.h +167 -0
  810. pythonknot-0.1.2/src/cpp_module/ginac/ginac/registrar.cpp +31 -0
  811. pythonknot-0.1.2/src/cpp_module/ginac/ginac/registrar.h +211 -0
  812. pythonknot-0.1.2/src/cpp_module/ginac/ginac/relational.cpp +334 -0
  813. pythonknot-0.1.2/src/cpp_module/ginac/ginac/relational.h +119 -0
  814. pythonknot-0.1.2/src/cpp_module/ginac/ginac/remember.cpp +190 -0
  815. pythonknot-0.1.2/src/cpp_module/ginac/ginac/remember.h +101 -0
  816. pythonknot-0.1.2/src/cpp_module/ginac/ginac/structure.h +247 -0
  817. pythonknot-0.1.2/src/cpp_module/ginac/ginac/symbol.cpp +364 -0
  818. pythonknot-0.1.2/src/cpp_module/ginac/ginac/symbol.h +142 -0
  819. pythonknot-0.1.2/src/cpp_module/ginac/ginac/symmetry.cpp +578 -0
  820. pythonknot-0.1.2/src/cpp_module/ginac/ginac/symmetry.h +186 -0
  821. pythonknot-0.1.2/src/cpp_module/ginac/ginac/tensor.cpp +678 -0
  822. pythonknot-0.1.2/src/cpp_module/ginac/ginac/tensor.h +260 -0
  823. pythonknot-0.1.2/src/cpp_module/ginac/ginac/utils.cpp +537 -0
  824. pythonknot-0.1.2/src/cpp_module/ginac/ginac/utils.h +631 -0
  825. pythonknot-0.1.2/src/cpp_module/ginac/ginac/version.h +95 -0
  826. pythonknot-0.1.2/src/cpp_module/ginac/ginac/wildcard.cpp +134 -0
  827. pythonknot-0.1.2/src/cpp_module/ginac/ginac/wildcard.h +82 -0
  828. pythonknot-0.1.2/src/cpp_module/ginac/ginsh/ginsh.h +74 -0
  829. pythonknot-0.1.2/src/cpp_module/ginac/ginsh/ginsh_extensions.h +33 -0
  830. pythonknot-0.1.2/src/cpp_module/ginac/tools/viewgar.cpp +66 -0
  831. pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/build/CMakeFiles/3.16.3/CompilerIdCXX/CMakeCXXCompilerId.cpp +660 -0
  832. pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/build/config.h +5 -0
  833. pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/build/ginac/function.cpp +2291 -0
  834. pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/build/ginac/function.h +770 -0
  835. pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/build/ginsh/ginsh_fcn_help.h +227 -0
  836. pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/build/ginsh/ginsh_lexer.cpp +2213 -0
  837. pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/build/ginsh/ginsh_op_help.h +15 -0
  838. pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/build/ginsh/ginsh_parser.cpp +2982 -0
  839. pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/check/check_cra.cpp +146 -0
  840. pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/check/check_inifcns.cpp +215 -0
  841. pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/check/check_lsolve.cpp +208 -0
  842. pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/check/check_matrices.cpp +228 -0
  843. pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/check/check_numeric.cpp +128 -0
  844. pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/check/error_report.h +40 -0
  845. pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/check/exam_archive.cpp +125 -0
  846. pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/check/exam_chinrem_gcd.cpp +77 -0
  847. pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/check/exam_clifford.cpp +666 -0
  848. pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/check/exam_collect.cpp +152 -0
  849. pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/check/exam_collect_common_factors.cpp +59 -0
  850. pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/check/exam_color.cpp +163 -0
  851. pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/check/exam_differentiation.cpp +282 -0
  852. pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/check/exam_factor.cpp +338 -0
  853. pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/check/exam_function_exvector.cpp +116 -0
  854. pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/check/exam_heur_gcd.cpp +58 -0
  855. pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/check/exam_indexed.cpp +413 -0
  856. pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/check/exam_inifcns.cpp +440 -0
  857. pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/check/exam_inifcns_elliptic.cpp +419 -0
  858. pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/check/exam_inifcns_nstdsums.cpp +421 -0
  859. pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/check/exam_inifcns_nstdsums.h +888 -0
  860. pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/check/exam_lsolve.cpp +209 -0
  861. pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/check/exam_match.cpp +127 -0
  862. pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/check/exam_matrices.cpp +405 -0
  863. pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/check/exam_misc.cpp +320 -0
  864. pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/check/exam_mod_gcd.cpp +108 -0
  865. pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/check/exam_normalization.cpp +353 -0
  866. pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/check/exam_numeric.cpp +403 -0
  867. pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/check/exam_paranoia.cpp +704 -0
  868. pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/check/exam_parser.cpp +218 -0
  869. pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/check/exam_pgcd.cpp +68 -0
  870. pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/check/exam_polygcd.cpp +255 -0
  871. pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/check/exam_powerlaws.cpp +341 -0
  872. pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/check/exam_pseries.cpp +439 -0
  873. pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/check/exam_real_imag.cpp +82 -0
  874. pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/check/exam_relational.cpp +151 -0
  875. pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/check/exam_sqrfree.cpp +243 -0
  876. pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/check/exam_structure.cpp +102 -0
  877. pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/check/genex.cpp +157 -0
  878. pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/check/randomize_serials.cpp +53 -0
  879. pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/check/test_runner.h +90 -0
  880. pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/check/time_antipode.cpp +511 -0
  881. pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/check/time_dennyfliegner.cpp +99 -0
  882. pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/check/time_fateman_expand.cpp +79 -0
  883. pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/check/time_gammaseries.cpp +88 -0
  884. pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/check/time_lw_A.cpp +73 -0
  885. pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/check/time_lw_B.cpp +73 -0
  886. pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/check/time_lw_C.cpp +78 -0
  887. pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/check/time_lw_D.cpp +78 -0
  888. pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/check/time_lw_E.cpp +78 -0
  889. pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/check/time_lw_F.cpp +75 -0
  890. pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/check/time_lw_G.cpp +78 -0
  891. pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/check/time_lw_H.cpp +90 -0
  892. pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/check/time_lw_IJKL.cpp +97 -0
  893. pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/check/time_lw_M1.cpp +109 -0
  894. pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/check/time_lw_M2.cpp +189 -0
  895. pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/check/time_lw_N.cpp +93 -0
  896. pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/check/time_lw_O.cpp +173 -0
  897. pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/check/time_lw_P.cpp +87 -0
  898. pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/check/time_lw_Pprime.cpp +101 -0
  899. pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/check/time_lw_Q.cpp +95 -0
  900. pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/check/time_lw_Qprime.cpp +107 -0
  901. pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/check/time_parser.cpp +81 -0
  902. pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/check/time_toeplitz.cpp +115 -0
  903. pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/check/time_uvar_gcd.cpp +1911 -0
  904. pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/check/time_vandermonde.cpp +112 -0
  905. pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/check/timer.cpp +101 -0
  906. pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/check/timer.h +53 -0
  907. pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/config/config.h +89 -0
  908. pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/doc/examples/archive1.cpp +51 -0
  909. pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/doc/examples/compile1.cpp +76 -0
  910. pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/doc/examples/compile2.cpp +67 -0
  911. pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/doc/examples/compile3.cpp +43 -0
  912. pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/doc/examples/derivative.cpp +34 -0
  913. pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/doc/examples/lanczos.cpp +239 -0
  914. pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/doc/examples/mystring.cpp +86 -0
  915. pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/ginac/add.cpp +581 -0
  916. pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/ginac/add.h +93 -0
  917. pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/ginac/archive.cpp +689 -0
  918. pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/ginac/archive.h +346 -0
  919. pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/ginac/assertion.h +37 -0
  920. pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/ginac/basic.cpp +927 -0
  921. pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/ginac/basic.h +352 -0
  922. pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/ginac/class_info.h +198 -0
  923. pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/ginac/clifford.cpp +1409 -0
  924. pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/ginac/clifford.h +374 -0
  925. pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/ginac/color.cpp +639 -0
  926. pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/ginac/color.h +198 -0
  927. pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/ginac/compiler.h +36 -0
  928. pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/ginac/constant.cpp +258 -0
  929. pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/ginac/constant.h +88 -0
  930. pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/ginac/container.h +509 -0
  931. pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/ginac/crc32.h +76 -0
  932. pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/ginac/ex.cpp +578 -0
  933. pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/ginac/ex.h +1018 -0
  934. pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/ginac/excompiler.cpp +360 -0
  935. pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/ginac/excompiler.h +127 -0
  936. pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/ginac/expair.cpp +48 -0
  937. pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/ginac/expair.h +116 -0
  938. pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/ginac/expairseq.cpp +1175 -0
  939. pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/ginac/expairseq.h +187 -0
  940. pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/ginac/exprseq.cpp +46 -0
  941. pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/ginac/exprseq.h +44 -0
  942. pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/ginac/factor.cpp +2589 -0
  943. pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/ginac/factor.h +46 -0
  944. pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/ginac/fail.cpp +54 -0
  945. pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/ginac/fail.h +48 -0
  946. pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/ginac/fderivative.cpp +252 -0
  947. pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/ginac/fderivative.h +91 -0
  948. pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/ginac/flags.h +309 -0
  949. pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/ginac/function.cpp +2291 -0
  950. pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/ginac/function.h +770 -0
  951. pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/ginac/ginac.h +81 -0
  952. pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/ginac/hash_map.h +38 -0
  953. pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/ginac/hash_seed.h +54 -0
  954. pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/ginac/idx.cpp +574 -0
  955. pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/ginac/idx.h +274 -0
  956. pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/ginac/indexed.cpp +1578 -0
  957. pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/ginac/indexed.h +278 -0
  958. pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/ginac/inifcns.cpp +1292 -0
  959. pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/ginac/inifcns.h +241 -0
  960. pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/ginac/inifcns_elliptic.cpp +632 -0
  961. pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/ginac/inifcns_gamma.cpp +589 -0
  962. pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/ginac/inifcns_nstdsums.cpp +4164 -0
  963. pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/ginac/inifcns_trans.cpp +1687 -0
  964. pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/ginac/integral.cpp +449 -0
  965. pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/ginac/integral.h +96 -0
  966. pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/ginac/integration_kernel.cpp +2148 -0
  967. pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/ginac/integration_kernel.h +669 -0
  968. pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/ginac/lst.cpp +44 -0
  969. pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/ginac/lst.h +55 -0
  970. pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/ginac/matrix.cpp +1838 -0
  971. pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/ginac/matrix.h +195 -0
  972. pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/ginac/mul.cpp +1296 -0
  973. pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/ginac/mul.h +108 -0
  974. pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/ginac/ncmul.cpp +626 -0
  975. pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/ginac/ncmul.h +99 -0
  976. pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/ginac/normal.cpp +2909 -0
  977. pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/ginac/normal.h +108 -0
  978. pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/ginac/numeric.cpp +2593 -0
  979. pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/ginac/numeric.h +332 -0
  980. pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/ginac/operators.cpp +510 -0
  981. pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/ginac/operators.h +104 -0
  982. pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/ginac/parser/debug.h +72 -0
  983. pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/ginac/parser/default_reader.cpp +157 -0
  984. pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/ginac/parser/lexer.cpp +180 -0
  985. pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/ginac/parser/lexer.h +70 -0
  986. pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/ginac/parser/parse_binop_rhs.cpp +215 -0
  987. pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/ginac/parser/parse_context.cpp +47 -0
  988. pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/ginac/parser/parse_context.h +121 -0
  989. pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/ginac/parser/parser.cpp +243 -0
  990. pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/ginac/parser/parser.h +137 -0
  991. pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/ginac/parser/parser_compat.cpp +69 -0
  992. pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/ginac/polynomial/chinrem_gcd.cpp +35 -0
  993. pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/ginac/polynomial/chinrem_gcd.h +40 -0
  994. pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/ginac/polynomial/collect_vargs.cpp +206 -0
  995. pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/ginac/polynomial/collect_vargs.h +88 -0
  996. pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/ginac/polynomial/cra_garner.cpp +113 -0
  997. pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/ginac/polynomial/cra_garner.h +36 -0
  998. pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/ginac/polynomial/debug.h +53 -0
  999. pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/ginac/polynomial/divide_in_z_p.cpp +112 -0
  1000. pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/ginac/polynomial/divide_in_z_p.h +48 -0
  1001. pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/ginac/polynomial/euclid_gcd_wrap.h +82 -0
  1002. pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/ginac/polynomial/eval_point_finder.h +73 -0
  1003. pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/ginac/polynomial/eval_uvar.h +59 -0
  1004. pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/ginac/polynomial/gcd_euclid.h +66 -0
  1005. pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/ginac/polynomial/gcd_uvar.cpp +54 -0
  1006. pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/ginac/polynomial/heur_gcd_uvar.h +88 -0
  1007. pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/ginac/polynomial/interpolate_padic_uvar.h +61 -0
  1008. pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/ginac/polynomial/mgcd.cpp +132 -0
  1009. pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/ginac/polynomial/mod_gcd.cpp +198 -0
  1010. pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/ginac/polynomial/mod_gcd.h +34 -0
  1011. pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/ginac/polynomial/newton_interpolate.h +60 -0
  1012. pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/ginac/polynomial/normalize.cpp +49 -0
  1013. pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/ginac/polynomial/normalize.h +93 -0
  1014. pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/ginac/polynomial/optimal_vars_finder.cpp +154 -0
  1015. pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/ginac/polynomial/optimal_vars_finder.h +46 -0
  1016. pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/ginac/polynomial/pgcd.cpp +156 -0
  1017. pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/ginac/polynomial/pgcd.h +49 -0
  1018. pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/ginac/polynomial/poly_cra.h +60 -0
  1019. pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/ginac/polynomial/prem_uvar.h +68 -0
  1020. pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/ginac/polynomial/primes_factory.h +82 -0
  1021. pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/ginac/polynomial/primpart_content.cpp +98 -0
  1022. pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/ginac/polynomial/remainder.cpp +87 -0
  1023. pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/ginac/polynomial/remainder.h +84 -0
  1024. pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/ginac/polynomial/ring_traits.h +67 -0
  1025. pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/ginac/polynomial/smod_helpers.h +95 -0
  1026. pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/ginac/polynomial/sr_gcd_uvar.h +117 -0
  1027. pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/ginac/polynomial/upoly.h +182 -0
  1028. pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/ginac/polynomial/upoly_io.cpp +75 -0
  1029. pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/ginac/polynomial/upoly_io.h +37 -0
  1030. pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/ginac/power.cpp +1156 -0
  1031. pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/ginac/power.h +135 -0
  1032. pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/ginac/print.cpp +96 -0
  1033. pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/ginac/print.h +283 -0
  1034. pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/ginac/pseries.cpp +1290 -0
  1035. pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/ginac/pseries.h +148 -0
  1036. pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/ginac/ptr.h +167 -0
  1037. pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/ginac/registrar.cpp +31 -0
  1038. pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/ginac/registrar.h +211 -0
  1039. pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/ginac/relational.cpp +358 -0
  1040. pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/ginac/relational.h +121 -0
  1041. pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/ginac/remember.cpp +190 -0
  1042. pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/ginac/remember.h +101 -0
  1043. pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/ginac/structure.h +247 -0
  1044. pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/ginac/symbol.cpp +364 -0
  1045. pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/ginac/symbol.h +142 -0
  1046. pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/ginac/symmetry.cpp +578 -0
  1047. pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/ginac/symmetry.h +186 -0
  1048. pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/ginac/tensor.cpp +678 -0
  1049. pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/ginac/tensor.h +260 -0
  1050. pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/ginac/utils.cpp +542 -0
  1051. pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/ginac/utils.h +631 -0
  1052. pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/ginac/utils_multi_iterator.h +1488 -0
  1053. pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/ginac/version.h +98 -0
  1054. pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/ginac/wildcard.cpp +134 -0
  1055. pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/ginac/wildcard.h +82 -0
  1056. pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/ginsh/ginsh.h +70 -0
  1057. pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/ginsh/ginsh_extensions.h +33 -0
  1058. pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/ginsh/ginsh_lexer.cpp +2212 -0
  1059. pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/ginsh/ginsh_parser.cpp +2733 -0
  1060. pythonknot-0.1.2/src/cpp_module/ginac-1.8.7/tools/viewgar.cpp +66 -0
  1061. pythonknot-0.1.2/src/cpp_module/src/knot.cpp +139 -0
  1062. pythonknot-0.1.2/src/cpp_module/src/knot.h +50 -0
  1063. pythonknot-0.1.2/src/cpp_module/src/knot_alex_table.h +91 -0
  1064. pythonknot-0.1.2/src/cpp_module/src/knottype.cpp +525 -0
  1065. pythonknot-0.1.2/src/cpp_module/src/knottype.h +22 -0
  1066. pythonknot-0.1.2/src/cpp_module/src/main.cpp +108 -0
  1067. pythonknot-0.1.2/src/cpp_module/src/my_function.cpp +636 -0
  1068. pythonknot-0.1.2/src/cpp_module/src/myfunction.h +65 -0
  1069. {pythonknot-0.1.1 → pythonknot-0.1.2}/src/pythonknot.egg-info/PKG-INFO +1 -1
  1070. pythonknot-0.1.2/src/pythonknot.egg-info/SOURCES.txt +1080 -0
  1071. pythonknot-0.1.1/src/pythonknot.egg-info/SOURCES.txt +0 -14
  1072. {pythonknot-0.1.1 → pythonknot-0.1.2}/README.md +0 -0
  1073. {pythonknot-0.1.1 → pythonknot-0.1.2}/setup.cfg +0 -0
  1074. {pythonknot-0.1.1 → pythonknot-0.1.2}/src/pythonknot/__init__.py +0 -0
  1075. {pythonknot-0.1.1 → pythonknot-0.1.2}/src/pythonknot/polymer.py +0 -0
  1076. {pythonknot-0.1.1 → pythonknot-0.1.2}/src/pythonknot/rmsd.py +0 -0
  1077. {pythonknot-0.1.1 → pythonknot-0.1.2}/src/pythonknot/xyz.py +0 -0
  1078. {pythonknot-0.1.1 → pythonknot-0.1.2}/src/pythonknot.egg-info/dependency_links.txt +0 -0
  1079. {pythonknot-0.1.1 → pythonknot-0.1.2}/src/pythonknot.egg-info/not-zip-safe +0 -0
  1080. {pythonknot-0.1.1 → pythonknot-0.1.2}/src/pythonknot.egg-info/requires.txt +0 -0
  1081. {pythonknot-0.1.1 → pythonknot-0.1.2}/src/pythonknot.egg-info/top_level.txt +0 -0
  1082. {pythonknot-0.1.1 → pythonknot-0.1.2}/test/test.py +0 -0
  1083. {pythonknot-0.1.1 → pythonknot-0.1.2}/test/test2.py +0 -0
@@ -0,0 +1,2 @@
1
+ include src/cpp_module/CMakeLists.txt
2
+ recursive-include src/cpp_module *.cpp *.h
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: pythonknot
3
- Version: 0.1.1
3
+ Version: 0.1.2
4
4
  Summary: pythonknot for knot theory calculation
5
5
  Home-page:
6
6
  Author: yjianzhu
@@ -126,7 +126,7 @@ class CMakeBuild(build_ext):
126
126
 
127
127
  setuptools.setup(
128
128
  name="pythonknot",
129
- version="0.1.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
+ # )