pythonknot 0.1.5__tar.gz → 0.2.0__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.2.0/MANIFEST.in +6 -0
- {pythonknot-0.1.5/src/pythonknot.egg-info → pythonknot-0.2.0}/PKG-INFO +10 -5
- pythonknot-0.2.0/README.md +101 -0
- pythonknot-0.2.0/setup.py +102 -0
- pythonknot-0.2.0/src/pythonknot/__init__.py +18 -0
- pythonknot-0.2.0/src/pythonknot/data/__init__.py +1 -0
- pythonknot-0.2.0/src/pythonknot/data/table_knot_Alexander_polynomial.txt +251 -0
- pythonknot-0.2.0/src/pythonknot/knot_generator.py +22 -0
- {pythonknot-0.1.5 → pythonknot-0.2.0}/src/pythonknot/xyz.py +12 -1
- {pythonknot-0.1.5 → pythonknot-0.2.0/src/pythonknot.egg-info}/PKG-INFO +10 -5
- pythonknot-0.2.0/src/pythonknot.egg-info/SOURCES.txt +33 -0
- pythonknot-0.2.0/src/pythonknot.egg-info/requires.txt +3 -0
- pythonknot-0.2.0/vendor/rust_knot/Cargo.lock +765 -0
- pythonknot-0.2.0/vendor/rust_knot/Cargo.toml +26 -0
- pythonknot-0.2.0/vendor/rust_knot/src/alexander_table.rs +366 -0
- pythonknot-0.2.0/vendor/rust_knot/src/batch.rs +206 -0
- pythonknot-0.2.0/vendor/rust_knot/src/config.rs +41 -0
- pythonknot-0.2.0/vendor/rust_knot/src/error.rs +24 -0
- pythonknot-0.2.0/vendor/rust_knot/src/geometry.rs +271 -0
- pythonknot-0.2.0/vendor/rust_knot/src/hull.rs +214 -0
- pythonknot-0.2.0/vendor/rust_knot/src/io.rs +316 -0
- pythonknot-0.2.0/vendor/rust_knot/src/kmt.rs +158 -0
- pythonknot-0.2.0/vendor/rust_knot/src/knotsize.rs +520 -0
- pythonknot-0.2.0/vendor/rust_knot/src/knottype.rs +230 -0
- pythonknot-0.2.0/vendor/rust_knot/src/lib.rs +23 -0
- pythonknot-0.2.0/vendor/rust_knot/src/main.rs +230 -0
- pythonknot-0.2.0/vendor/rust_knot/src/point.rs +3 -0
- pythonknot-0.2.0/vendor/rust_knot/src/polynomial.rs +606 -0
- pythonknot-0.2.0/vendor/rust_knot/src/python_module.rs +577 -0
- pythonknot-0.1.5/MANIFEST.in +0 -2
- pythonknot-0.1.5/README.md +0 -13
- pythonknot-0.1.5/setup.py +0 -151
- pythonknot-0.1.5/src/cpp_module/CMakeLists.txt +0 -86
- pythonknot-0.1.5/src/cpp_module/build/CMakeFiles/3.16.3/CompilerIdCXX/CMakeCXXCompilerId.cpp +0 -660
- pythonknot-0.1.5/src/cpp_module/cln/autoconf/cl_config.h +0 -159
- pythonknot-0.1.5/src/cpp_module/cln/build/include/cln/GV.h +0 -350
- pythonknot-0.1.5/src/cpp_module/cln/build/include/cln/GV_complex.h +0 -58
- pythonknot-0.1.5/src/cpp_module/cln/build/include/cln/GV_integer.h +0 -91
- pythonknot-0.1.5/src/cpp_module/cln/build/include/cln/GV_modinteger.h +0 -51
- pythonknot-0.1.5/src/cpp_module/cln/build/include/cln/GV_number.h +0 -55
- pythonknot-0.1.5/src/cpp_module/cln/build/include/cln/GV_rational.h +0 -58
- pythonknot-0.1.5/src/cpp_module/cln/build/include/cln/GV_real.h +0 -58
- pythonknot-0.1.5/src/cpp_module/cln/build/include/cln/SV.h +0 -217
- pythonknot-0.1.5/src/cpp_module/cln/build/include/cln/SV_complex.h +0 -54
- pythonknot-0.1.5/src/cpp_module/cln/build/include/cln/SV_integer.h +0 -51
- pythonknot-0.1.5/src/cpp_module/cln/build/include/cln/SV_number.h +0 -67
- pythonknot-0.1.5/src/cpp_module/cln/build/include/cln/SV_rational.h +0 -54
- pythonknot-0.1.5/src/cpp_module/cln/build/include/cln/SV_real.h +0 -54
- pythonknot-0.1.5/src/cpp_module/cln/build/include/cln/SV_ringelt.h +0 -72
- pythonknot-0.1.5/src/cpp_module/cln/build/include/cln/V.h +0 -23
- pythonknot-0.1.5/src/cpp_module/cln/build/include/cln/cln.h +0 -141
- pythonknot-0.1.5/src/cpp_module/cln/build/include/cln/complex.h +0 -157
- pythonknot-0.1.5/src/cpp_module/cln/build/include/cln/complex_class.h +0 -76
- pythonknot-0.1.5/src/cpp_module/cln/build/include/cln/complex_io.h +0 -48
- pythonknot-0.1.5/src/cpp_module/cln/build/include/cln/complex_ring.h +0 -26
- pythonknot-0.1.5/src/cpp_module/cln/build/include/cln/condition.h +0 -39
- pythonknot-0.1.5/src/cpp_module/cln/build/include/cln/config.h +0 -28
- pythonknot-0.1.5/src/cpp_module/cln/build/include/cln/dfloat.h +0 -326
- pythonknot-0.1.5/src/cpp_module/cln/build/include/cln/dfloat_class.h +0 -75
- pythonknot-0.1.5/src/cpp_module/cln/build/include/cln/dfloat_io.h +0 -31
- pythonknot-0.1.5/src/cpp_module/cln/build/include/cln/exception.h +0 -40
- pythonknot-0.1.5/src/cpp_module/cln/build/include/cln/ffloat.h +0 -329
- pythonknot-0.1.5/src/cpp_module/cln/build/include/cln/ffloat_class.h +0 -85
- pythonknot-0.1.5/src/cpp_module/cln/build/include/cln/ffloat_io.h +0 -31
- pythonknot-0.1.5/src/cpp_module/cln/build/include/cln/float.h +0 -754
- pythonknot-0.1.5/src/cpp_module/cln/build/include/cln/float_class.h +0 -52
- pythonknot-0.1.5/src/cpp_module/cln/build/include/cln/float_io.h +0 -81
- pythonknot-0.1.5/src/cpp_module/cln/build/include/cln/floatformat.h +0 -21
- pythonknot-0.1.5/src/cpp_module/cln/build/include/cln/host_cpu.h +0 -84
- pythonknot-0.1.5/src/cpp_module/cln/build/include/cln/input.h +0 -61
- pythonknot-0.1.5/src/cpp_module/cln/build/include/cln/integer.h +0 -666
- pythonknot-0.1.5/src/cpp_module/cln/build/include/cln/integer_class.h +0 -69
- pythonknot-0.1.5/src/cpp_module/cln/build/include/cln/integer_io.h +0 -105
- pythonknot-0.1.5/src/cpp_module/cln/build/include/cln/integer_ring.h +0 -26
- pythonknot-0.1.5/src/cpp_module/cln/build/include/cln/intparam.h +0 -94
- pythonknot-0.1.5/src/cpp_module/cln/build/include/cln/io.h +0 -89
- pythonknot-0.1.5/src/cpp_module/cln/build/include/cln/lfloat.h +0 -433
- pythonknot-0.1.5/src/cpp_module/cln/build/include/cln/lfloat_class.h +0 -73
- pythonknot-0.1.5/src/cpp_module/cln/build/include/cln/lfloat_io.h +0 -31
- pythonknot-0.1.5/src/cpp_module/cln/build/include/cln/malloc.h +0 -17
- pythonknot-0.1.5/src/cpp_module/cln/build/include/cln/modinteger.h +0 -466
- pythonknot-0.1.5/src/cpp_module/cln/build/include/cln/modules.h +0 -37
- pythonknot-0.1.5/src/cpp_module/cln/build/include/cln/null_ring.h +0 -24
- pythonknot-0.1.5/src/cpp_module/cln/build/include/cln/number.h +0 -308
- pythonknot-0.1.5/src/cpp_module/cln/build/include/cln/number_io.h +0 -42
- pythonknot-0.1.5/src/cpp_module/cln/build/include/cln/numtheory.h +0 -90
- pythonknot-0.1.5/src/cpp_module/cln/build/include/cln/object.h +0 -550
- pythonknot-0.1.5/src/cpp_module/cln/build/include/cln/output.h +0 -74
- pythonknot-0.1.5/src/cpp_module/cln/build/include/cln/proplist.h +0 -55
- pythonknot-0.1.5/src/cpp_module/cln/build/include/cln/random.h +0 -55
- pythonknot-0.1.5/src/cpp_module/cln/build/include/cln/rational.h +0 -357
- pythonknot-0.1.5/src/cpp_module/cln/build/include/cln/rational_class.h +0 -71
- pythonknot-0.1.5/src/cpp_module/cln/build/include/cln/rational_io.h +0 -78
- pythonknot-0.1.5/src/cpp_module/cln/build/include/cln/rational_ring.h +0 -26
- pythonknot-0.1.5/src/cpp_module/cln/build/include/cln/real.h +0 -637
- pythonknot-0.1.5/src/cpp_module/cln/build/include/cln/real_class.h +0 -76
- pythonknot-0.1.5/src/cpp_module/cln/build/include/cln/real_io.h +0 -57
- pythonknot-0.1.5/src/cpp_module/cln/build/include/cln/real_ring.h +0 -27
- pythonknot-0.1.5/src/cpp_module/cln/build/include/cln/ring.h +0 -464
- pythonknot-0.1.5/src/cpp_module/cln/build/include/cln/sfloat.h +0 -300
- pythonknot-0.1.5/src/cpp_module/cln/build/include/cln/sfloat_class.h +0 -45
- pythonknot-0.1.5/src/cpp_module/cln/build/include/cln/sfloat_io.h +0 -31
- pythonknot-0.1.5/src/cpp_module/cln/build/include/cln/string.h +0 -172
- pythonknot-0.1.5/src/cpp_module/cln/build/include/cln/symbol.h +0 -48
- pythonknot-0.1.5/src/cpp_module/cln/build/include/cln/timing.h +0 -78
- pythonknot-0.1.5/src/cpp_module/cln/build/include/cln/types.h +0 -188
- pythonknot-0.1.5/src/cpp_module/cln/build/include/cln/univpoly.h +0 -733
- pythonknot-0.1.5/src/cpp_module/cln/build/include/cln/univpoly_complex.h +0 -228
- pythonknot-0.1.5/src/cpp_module/cln/build/include/cln/univpoly_integer.h +0 -233
- pythonknot-0.1.5/src/cpp_module/cln/build/include/cln/univpoly_modint.h +0 -217
- pythonknot-0.1.5/src/cpp_module/cln/build/include/cln/univpoly_rational.h +0 -232
- pythonknot-0.1.5/src/cpp_module/cln/build/include/cln/univpoly_real.h +0 -228
- pythonknot-0.1.5/src/cpp_module/cln/build/include/cln/version.h +0 -27
- pythonknot-0.1.5/src/cpp_module/cln/include/cln/GV.h +0 -350
- pythonknot-0.1.5/src/cpp_module/cln/include/cln/GV_complex.h +0 -58
- pythonknot-0.1.5/src/cpp_module/cln/include/cln/GV_integer.h +0 -91
- pythonknot-0.1.5/src/cpp_module/cln/include/cln/GV_modinteger.h +0 -51
- pythonknot-0.1.5/src/cpp_module/cln/include/cln/GV_number.h +0 -55
- pythonknot-0.1.5/src/cpp_module/cln/include/cln/GV_rational.h +0 -58
- pythonknot-0.1.5/src/cpp_module/cln/include/cln/GV_real.h +0 -58
- pythonknot-0.1.5/src/cpp_module/cln/include/cln/SV.h +0 -217
- pythonknot-0.1.5/src/cpp_module/cln/include/cln/SV_complex.h +0 -54
- pythonknot-0.1.5/src/cpp_module/cln/include/cln/SV_integer.h +0 -51
- pythonknot-0.1.5/src/cpp_module/cln/include/cln/SV_number.h +0 -67
- pythonknot-0.1.5/src/cpp_module/cln/include/cln/SV_rational.h +0 -54
- pythonknot-0.1.5/src/cpp_module/cln/include/cln/SV_real.h +0 -54
- pythonknot-0.1.5/src/cpp_module/cln/include/cln/SV_ringelt.h +0 -72
- pythonknot-0.1.5/src/cpp_module/cln/include/cln/V.h +0 -23
- pythonknot-0.1.5/src/cpp_module/cln/include/cln/cln.h +0 -141
- pythonknot-0.1.5/src/cpp_module/cln/include/cln/complex.h +0 -157
- pythonknot-0.1.5/src/cpp_module/cln/include/cln/complex_class.h +0 -76
- pythonknot-0.1.5/src/cpp_module/cln/include/cln/complex_io.h +0 -48
- pythonknot-0.1.5/src/cpp_module/cln/include/cln/complex_ring.h +0 -26
- pythonknot-0.1.5/src/cpp_module/cln/include/cln/condition.h +0 -39
- pythonknot-0.1.5/src/cpp_module/cln/include/cln/config.h +0 -28
- pythonknot-0.1.5/src/cpp_module/cln/include/cln/dfloat.h +0 -326
- pythonknot-0.1.5/src/cpp_module/cln/include/cln/dfloat_class.h +0 -75
- pythonknot-0.1.5/src/cpp_module/cln/include/cln/dfloat_io.h +0 -31
- pythonknot-0.1.5/src/cpp_module/cln/include/cln/exception.h +0 -40
- pythonknot-0.1.5/src/cpp_module/cln/include/cln/ffloat.h +0 -329
- pythonknot-0.1.5/src/cpp_module/cln/include/cln/ffloat_class.h +0 -85
- pythonknot-0.1.5/src/cpp_module/cln/include/cln/ffloat_io.h +0 -31
- pythonknot-0.1.5/src/cpp_module/cln/include/cln/float.h +0 -754
- pythonknot-0.1.5/src/cpp_module/cln/include/cln/float_class.h +0 -52
- pythonknot-0.1.5/src/cpp_module/cln/include/cln/float_io.h +0 -81
- pythonknot-0.1.5/src/cpp_module/cln/include/cln/floatformat.h +0 -21
- pythonknot-0.1.5/src/cpp_module/cln/include/cln/floatparam.h +0 -26
- pythonknot-0.1.5/src/cpp_module/cln/include/cln/host_cpu.h +0 -84
- pythonknot-0.1.5/src/cpp_module/cln/include/cln/input.h +0 -61
- pythonknot-0.1.5/src/cpp_module/cln/include/cln/integer.h +0 -666
- pythonknot-0.1.5/src/cpp_module/cln/include/cln/integer_class.h +0 -69
- pythonknot-0.1.5/src/cpp_module/cln/include/cln/integer_io.h +0 -105
- pythonknot-0.1.5/src/cpp_module/cln/include/cln/integer_ring.h +0 -26
- pythonknot-0.1.5/src/cpp_module/cln/include/cln/intparam.h +0 -94
- pythonknot-0.1.5/src/cpp_module/cln/include/cln/io.h +0 -89
- pythonknot-0.1.5/src/cpp_module/cln/include/cln/lfloat.h +0 -433
- pythonknot-0.1.5/src/cpp_module/cln/include/cln/lfloat_class.h +0 -73
- pythonknot-0.1.5/src/cpp_module/cln/include/cln/lfloat_io.h +0 -31
- pythonknot-0.1.5/src/cpp_module/cln/include/cln/malloc.h +0 -17
- pythonknot-0.1.5/src/cpp_module/cln/include/cln/modinteger.h +0 -466
- pythonknot-0.1.5/src/cpp_module/cln/include/cln/modules.h +0 -37
- pythonknot-0.1.5/src/cpp_module/cln/include/cln/null_ring.h +0 -24
- pythonknot-0.1.5/src/cpp_module/cln/include/cln/number.h +0 -308
- pythonknot-0.1.5/src/cpp_module/cln/include/cln/number_io.h +0 -42
- pythonknot-0.1.5/src/cpp_module/cln/include/cln/numtheory.h +0 -90
- pythonknot-0.1.5/src/cpp_module/cln/include/cln/object.h +0 -550
- pythonknot-0.1.5/src/cpp_module/cln/include/cln/output.h +0 -74
- pythonknot-0.1.5/src/cpp_module/cln/include/cln/proplist.h +0 -55
- pythonknot-0.1.5/src/cpp_module/cln/include/cln/random.h +0 -55
- pythonknot-0.1.5/src/cpp_module/cln/include/cln/rational.h +0 -357
- pythonknot-0.1.5/src/cpp_module/cln/include/cln/rational_class.h +0 -71
- pythonknot-0.1.5/src/cpp_module/cln/include/cln/rational_io.h +0 -78
- pythonknot-0.1.5/src/cpp_module/cln/include/cln/rational_ring.h +0 -26
- pythonknot-0.1.5/src/cpp_module/cln/include/cln/real.h +0 -637
- pythonknot-0.1.5/src/cpp_module/cln/include/cln/real_class.h +0 -76
- pythonknot-0.1.5/src/cpp_module/cln/include/cln/real_io.h +0 -57
- pythonknot-0.1.5/src/cpp_module/cln/include/cln/real_ring.h +0 -27
- pythonknot-0.1.5/src/cpp_module/cln/include/cln/ring.h +0 -464
- pythonknot-0.1.5/src/cpp_module/cln/include/cln/sfloat.h +0 -300
- pythonknot-0.1.5/src/cpp_module/cln/include/cln/sfloat_class.h +0 -45
- pythonknot-0.1.5/src/cpp_module/cln/include/cln/sfloat_io.h +0 -31
- pythonknot-0.1.5/src/cpp_module/cln/include/cln/string.h +0 -172
- pythonknot-0.1.5/src/cpp_module/cln/include/cln/symbol.h +0 -48
- pythonknot-0.1.5/src/cpp_module/cln/include/cln/timing.h +0 -78
- pythonknot-0.1.5/src/cpp_module/cln/include/cln/types.h +0 -188
- pythonknot-0.1.5/src/cpp_module/cln/include/cln/univpoly.h +0 -733
- pythonknot-0.1.5/src/cpp_module/cln/include/cln/univpoly_complex.h +0 -228
- pythonknot-0.1.5/src/cpp_module/cln/include/cln/univpoly_integer.h +0 -233
- pythonknot-0.1.5/src/cpp_module/cln/include/cln/univpoly_modint.h +0 -217
- pythonknot-0.1.5/src/cpp_module/cln/include/cln/univpoly_rational.h +0 -232
- pythonknot-0.1.5/src/cpp_module/cln/include/cln/univpoly_real.h +0 -228
- pythonknot-0.1.5/src/cpp_module/cln/include/cln/version.h +0 -27
- pythonknot-0.1.5/src/cpp_module/cln/src/base/cl_N.h +0 -22
- pythonknot-0.1.5/src/cpp_module/cln/src/base/cl_alloca.h +0 -88
- pythonknot-0.1.5/src/cpp_module/cln/src/base/cl_base_config.h +0 -22
- pythonknot-0.1.5/src/cpp_module/cln/src/base/cl_gmpconfig.h +0 -17
- pythonknot-0.1.5/src/cpp_module/cln/src/base/cl_inline.h +0 -8
- pythonknot-0.1.5/src/cpp_module/cln/src/base/cl_inline2.h +0 -8
- pythonknot-0.1.5/src/cpp_module/cln/src/base/cl_iterator.h +0 -28
- pythonknot-0.1.5/src/cpp_module/cln/src/base/cl_low.h +0 -1614
- pythonknot-0.1.5/src/cpp_module/cln/src/base/cl_macros.h +0 -260
- pythonknot-0.1.5/src/cpp_module/cln/src/base/cl_maybe_inline.h +0 -133
- pythonknot-0.1.5/src/cpp_module/cln/src/base/cl_offsetof.h +0 -20
- pythonknot-0.1.5/src/cpp_module/cln/src/base/cl_sysdep.h +0 -64
- pythonknot-0.1.5/src/cpp_module/cln/src/base/cl_xmacros.h +0 -13
- pythonknot-0.1.5/src/cpp_module/cln/src/base/digit/cl_2D.h +0 -44
- pythonknot-0.1.5/src/cpp_module/cln/src/base/digit/cl_D.h +0 -226
- pythonknot-0.1.5/src/cpp_module/cln/src/base/digitseq/cl_2DS.h +0 -31
- pythonknot-0.1.5/src/cpp_module/cln/src/base/digitseq/cl_DS.h +0 -2689
- pythonknot-0.1.5/src/cpp_module/cln/src/base/digitseq/cl_DS_endian.h +0 -21
- pythonknot-0.1.5/src/cpp_module/cln/src/base/digitseq/cl_DS_mul_fftc.h +0 -1102
- pythonknot-0.1.5/src/cpp_module/cln/src/base/digitseq/cl_DS_mul_fftcs.h +0 -1152
- pythonknot-0.1.5/src/cpp_module/cln/src/base/digitseq/cl_DS_mul_fftm.h +0 -654
- pythonknot-0.1.5/src/cpp_module/cln/src/base/digitseq/cl_DS_mul_fftp.h +0 -823
- pythonknot-0.1.5/src/cpp_module/cln/src/base/digitseq/cl_DS_mul_fftp3.h +0 -672
- pythonknot-0.1.5/src/cpp_module/cln/src/base/digitseq/cl_DS_mul_fftp3m.h +0 -858
- pythonknot-0.1.5/src/cpp_module/cln/src/base/digitseq/cl_DS_mul_fftr.h +0 -1139
- pythonknot-0.1.5/src/cpp_module/cln/src/base/digitseq/cl_DS_mul_kara.h +0 -259
- pythonknot-0.1.5/src/cpp_module/cln/src/base/digitseq/cl_DS_mul_kara_sqr.h +0 -81
- pythonknot-0.1.5/src/cpp_module/cln/src/base/digitseq/cl_DS_mul_nuss.h +0 -1511
- pythonknot-0.1.5/src/cpp_module/cln/src/base/digitseq/cl_asm.h +0 -36
- pythonknot-0.1.5/src/cpp_module/cln/src/base/digitseq/cl_asm_arm.h +0 -10
- pythonknot-0.1.5/src/cpp_module/cln/src/base/digitseq/cl_asm_hppa.h +0 -2
- pythonknot-0.1.5/src/cpp_module/cln/src/base/digitseq/cl_asm_i386.h +0 -11
- pythonknot-0.1.5/src/cpp_module/cln/src/base/digitseq/cl_asm_m68k.h +0 -11
- pythonknot-0.1.5/src/cpp_module/cln/src/base/digitseq/cl_asm_mips.h +0 -8
- pythonknot-0.1.5/src/cpp_module/cln/src/base/digitseq/cl_asm_sparc.h +0 -11
- pythonknot-0.1.5/src/cpp_module/cln/src/base/digitseq/cl_asm_sparc64.h +0 -10
- pythonknot-0.1.5/src/cpp_module/cln/src/base/hash/cl_hash.h +0 -185
- pythonknot-0.1.5/src/cpp_module/cln/src/base/hash/cl_hash1.h +0 -157
- pythonknot-0.1.5/src/cpp_module/cln/src/base/hash/cl_hash1weak.h +0 -97
- pythonknot-0.1.5/src/cpp_module/cln/src/base/hash/cl_hash2.h +0 -163
- pythonknot-0.1.5/src/cpp_module/cln/src/base/hash/cl_hash2weak.h +0 -97
- pythonknot-0.1.5/src/cpp_module/cln/src/base/hash/cl_hashset.h +0 -150
- pythonknot-0.1.5/src/cpp_module/cln/src/base/hash/cl_hashuniq.h +0 -158
- pythonknot-0.1.5/src/cpp_module/cln/src/base/hash/cl_hashuniqweak.h +0 -97
- pythonknot-0.1.5/src/cpp_module/cln/src/base/hash/cl_rcpointer2_hashweak_rcpointer.h +0 -48
- pythonknot-0.1.5/src/cpp_module/cln/src/base/hash/cl_rcpointer_hashweak_rcpointer.h +0 -43
- pythonknot-0.1.5/src/cpp_module/cln/src/base/random/cl_random_impl.h +0 -26
- pythonknot-0.1.5/src/cpp_module/cln/src/base/string/cl_spushstring.h +0 -65
- pythonknot-0.1.5/src/cpp_module/cln/src/base/string/cl_sstring.h +0 -14
- pythonknot-0.1.5/src/cpp_module/cln/src/base/string/cl_st_make0.h +0 -11
- pythonknot-0.1.5/src/cpp_module/cln/src/complex/cl_C.h +0 -193
- pythonknot-0.1.5/src/cpp_module/cln/src/float/cl_F.h +0 -276
- pythonknot-0.1.5/src/cpp_module/cln/src/float/dfloat/cl_DF.h +0 -321
- pythonknot-0.1.5/src/cpp_module/cln/src/float/ffloat/cl_FF.h +0 -249
- pythonknot-0.1.5/src/cpp_module/cln/src/float/lfloat/cl_LF.h +0 -150
- pythonknot-0.1.5/src/cpp_module/cln/src/float/lfloat/cl_LF_impl.h +0 -153
- pythonknot-0.1.5/src/cpp_module/cln/src/float/sfloat/cl_SF.h +0 -137
- pythonknot-0.1.5/src/cpp_module/cln/src/float/transcendental/cl_F_catalanconst_var.h +0 -29
- pythonknot-0.1.5/src/cpp_module/cln/src/float/transcendental/cl_F_eulerconst_var.h +0 -29
- pythonknot-0.1.5/src/cpp_module/cln/src/float/transcendental/cl_F_exp1_var.h +0 -29
- pythonknot-0.1.5/src/cpp_module/cln/src/float/transcendental/cl_F_ln10_var.h +0 -29
- pythonknot-0.1.5/src/cpp_module/cln/src/float/transcendental/cl_F_ln2_var.h +0 -29
- pythonknot-0.1.5/src/cpp_module/cln/src/float/transcendental/cl_F_pi_var.h +0 -29
- pythonknot-0.1.5/src/cpp_module/cln/src/float/transcendental/cl_F_tran.h +0 -149
- pythonknot-0.1.5/src/cpp_module/cln/src/float/transcendental/cl_LF_tran.h +0 -335
- pythonknot-0.1.5/src/cpp_module/cln/src/integer/bitwise/cl_I_byte.h +0 -33
- pythonknot-0.1.5/src/cpp_module/cln/src/integer/bitwise/cl_I_log.h +0 -38
- pythonknot-0.1.5/src/cpp_module/cln/src/integer/cl_I.h +0 -764
- pythonknot-0.1.5/src/cpp_module/cln/src/integer/conv/cl_I_cached_power.h +0 -47
- pythonknot-0.1.5/src/cpp_module/cln/src/integer/hash/cl_I_hash_gcobject.h +0 -35
- pythonknot-0.1.5/src/cpp_module/cln/src/integer/hash/cl_I_hash_gcpointer.h +0 -35
- pythonknot-0.1.5/src/cpp_module/cln/src/integer/hash/cl_I_hash_pointer.h +0 -35
- pythonknot-0.1.5/src/cpp_module/cln/src/integer/hash/cl_I_hash_rcobject.h +0 -35
- pythonknot-0.1.5/src/cpp_module/cln/src/integer/hash/cl_I_hash_rcpointer.h +0 -35
- pythonknot-0.1.5/src/cpp_module/cln/src/integer/hash/cl_I_hashweak_rcpointer.h +0 -35
- pythonknot-0.1.5/src/cpp_module/cln/src/integer/misc/combin/cl_I_combin.h +0 -17
- pythonknot-0.1.5/src/cpp_module/cln/src/modinteger/cl_MI.h +0 -14
- pythonknot-0.1.5/src/cpp_module/cln/src/modinteger/cl_MI_fix16.h +0 -91
- pythonknot-0.1.5/src/cpp_module/cln/src/modinteger/cl_MI_fix29.h +0 -98
- pythonknot-0.1.5/src/cpp_module/cln/src/modinteger/cl_MI_fix32.h +0 -100
- pythonknot-0.1.5/src/cpp_module/cln/src/modinteger/cl_MI_int.h +0 -149
- pythonknot-0.1.5/src/cpp_module/cln/src/modinteger/cl_MI_int32.h +0 -99
- pythonknot-0.1.5/src/cpp_module/cln/src/modinteger/cl_MI_montgom.h +0 -238
- pythonknot-0.1.5/src/cpp_module/cln/src/modinteger/cl_MI_pow2.h +0 -157
- pythonknot-0.1.5/src/cpp_module/cln/src/modinteger/cl_MI_pow2m1.h +0 -98
- pythonknot-0.1.5/src/cpp_module/cln/src/modinteger/cl_MI_pow2p1.h +0 -109
- pythonknot-0.1.5/src/cpp_module/cln/src/modinteger/cl_MI_std.h +0 -370
- pythonknot-0.1.5/src/cpp_module/cln/src/numtheory/cl_IF.h +0 -55
- pythonknot-0.1.5/src/cpp_module/cln/src/polynomial/cl_UP.h +0 -35
- pythonknot-0.1.5/src/cpp_module/cln/src/polynomial/elem/cl_UP_GF2.h +0 -1066
- pythonknot-0.1.5/src/cpp_module/cln/src/polynomial/elem/cl_UP_MI.h +0 -506
- pythonknot-0.1.5/src/cpp_module/cln/src/polynomial/elem/cl_UP_gen.h +0 -485
- pythonknot-0.1.5/src/cpp_module/cln/src/polynomial/elem/cl_UP_number.h +0 -488
- pythonknot-0.1.5/src/cpp_module/cln/src/rational/cl_RA.h +0 -175
- pythonknot-0.1.5/src/cpp_module/cln/src/real/cl_R.h +0 -209
- pythonknot-0.1.5/src/cpp_module/cln/src/real/division/cl_R_div_t.h +0 -26
- pythonknot-0.1.5/src/cpp_module/cln/src/real/format-output/cl_format.h +0 -75
- pythonknot-0.1.5/src/cpp_module/cln/src/timing/cl_t_config.h +0 -37
- pythonknot-0.1.5/src/cpp_module/cln/src/vector/cl_GV_io.h +0 -22
- pythonknot-0.1.5/src/cpp_module/cln/src/vector/cl_SV_io.h +0 -22
- pythonknot-0.1.5/src/cpp_module/cln/tests/exam.h +0 -103
- pythonknot-0.1.5/src/cpp_module/cln/tests/test.h +0 -93
- pythonknot-0.1.5/src/cpp_module/cln/tests/test_I.h +0 -4
- pythonknot-0.1.5/src/cpp_module/cln/tests/test_MI.h +0 -5
- pythonknot-0.1.5/src/cpp_module/cln/tests/test_nt.h +0 -5
- pythonknot-0.1.5/src/cpp_module/cln-1.3.7/autoconf/cl_config.h +0 -147
- pythonknot-0.1.5/src/cpp_module/cln-1.3.7/build/include/cln/GV.h +0 -350
- pythonknot-0.1.5/src/cpp_module/cln-1.3.7/build/include/cln/GV_complex.h +0 -58
- pythonknot-0.1.5/src/cpp_module/cln-1.3.7/build/include/cln/GV_integer.h +0 -91
- pythonknot-0.1.5/src/cpp_module/cln-1.3.7/build/include/cln/GV_modinteger.h +0 -51
- pythonknot-0.1.5/src/cpp_module/cln-1.3.7/build/include/cln/GV_number.h +0 -55
- pythonknot-0.1.5/src/cpp_module/cln-1.3.7/build/include/cln/GV_rational.h +0 -58
- pythonknot-0.1.5/src/cpp_module/cln-1.3.7/build/include/cln/GV_real.h +0 -58
- pythonknot-0.1.5/src/cpp_module/cln-1.3.7/build/include/cln/SV.h +0 -217
- pythonknot-0.1.5/src/cpp_module/cln-1.3.7/build/include/cln/SV_complex.h +0 -54
- pythonknot-0.1.5/src/cpp_module/cln-1.3.7/build/include/cln/SV_integer.h +0 -51
- pythonknot-0.1.5/src/cpp_module/cln-1.3.7/build/include/cln/SV_number.h +0 -67
- pythonknot-0.1.5/src/cpp_module/cln-1.3.7/build/include/cln/SV_rational.h +0 -54
- pythonknot-0.1.5/src/cpp_module/cln-1.3.7/build/include/cln/SV_real.h +0 -54
- pythonknot-0.1.5/src/cpp_module/cln-1.3.7/build/include/cln/SV_ringelt.h +0 -72
- pythonknot-0.1.5/src/cpp_module/cln-1.3.7/build/include/cln/V.h +0 -23
- pythonknot-0.1.5/src/cpp_module/cln-1.3.7/build/include/cln/cln.h +0 -141
- pythonknot-0.1.5/src/cpp_module/cln-1.3.7/build/include/cln/complex.h +0 -157
- pythonknot-0.1.5/src/cpp_module/cln-1.3.7/build/include/cln/complex_class.h +0 -70
- pythonknot-0.1.5/src/cpp_module/cln-1.3.7/build/include/cln/complex_io.h +0 -43
- pythonknot-0.1.5/src/cpp_module/cln-1.3.7/build/include/cln/complex_ring.h +0 -26
- pythonknot-0.1.5/src/cpp_module/cln-1.3.7/build/include/cln/condition.h +0 -39
- pythonknot-0.1.5/src/cpp_module/cln-1.3.7/build/include/cln/config.h +0 -27
- pythonknot-0.1.5/src/cpp_module/cln-1.3.7/build/include/cln/dfloat.h +0 -326
- pythonknot-0.1.5/src/cpp_module/cln-1.3.7/build/include/cln/dfloat_class.h +0 -75
- pythonknot-0.1.5/src/cpp_module/cln-1.3.7/build/include/cln/dfloat_io.h +0 -31
- pythonknot-0.1.5/src/cpp_module/cln-1.3.7/build/include/cln/exception.h +0 -40
- pythonknot-0.1.5/src/cpp_module/cln-1.3.7/build/include/cln/ffloat.h +0 -329
- pythonknot-0.1.5/src/cpp_module/cln-1.3.7/build/include/cln/ffloat_class.h +0 -85
- pythonknot-0.1.5/src/cpp_module/cln-1.3.7/build/include/cln/ffloat_io.h +0 -31
- pythonknot-0.1.5/src/cpp_module/cln-1.3.7/build/include/cln/float.h +0 -738
- pythonknot-0.1.5/src/cpp_module/cln-1.3.7/build/include/cln/float_class.h +0 -52
- pythonknot-0.1.5/src/cpp_module/cln-1.3.7/build/include/cln/float_io.h +0 -76
- pythonknot-0.1.5/src/cpp_module/cln-1.3.7/build/include/cln/floatformat.h +0 -21
- pythonknot-0.1.5/src/cpp_module/cln-1.3.7/build/include/cln/host_cpu.h +0 -84
- pythonknot-0.1.5/src/cpp_module/cln-1.3.7/build/include/cln/input.h +0 -61
- pythonknot-0.1.5/src/cpp_module/cln-1.3.7/build/include/cln/integer.h +0 -654
- pythonknot-0.1.5/src/cpp_module/cln-1.3.7/build/include/cln/integer_class.h +0 -63
- pythonknot-0.1.5/src/cpp_module/cln-1.3.7/build/include/cln/integer_io.h +0 -100
- pythonknot-0.1.5/src/cpp_module/cln-1.3.7/build/include/cln/integer_ring.h +0 -26
- pythonknot-0.1.5/src/cpp_module/cln-1.3.7/build/include/cln/intparam.h +0 -92
- pythonknot-0.1.5/src/cpp_module/cln-1.3.7/build/include/cln/io.h +0 -85
- pythonknot-0.1.5/src/cpp_module/cln-1.3.7/build/include/cln/lfloat.h +0 -425
- pythonknot-0.1.5/src/cpp_module/cln-1.3.7/build/include/cln/lfloat_class.h +0 -73
- pythonknot-0.1.5/src/cpp_module/cln-1.3.7/build/include/cln/lfloat_io.h +0 -31
- pythonknot-0.1.5/src/cpp_module/cln-1.3.7/build/include/cln/malloc.h +0 -17
- pythonknot-0.1.5/src/cpp_module/cln-1.3.7/build/include/cln/modinteger.h +0 -466
- pythonknot-0.1.5/src/cpp_module/cln-1.3.7/build/include/cln/modules.h +0 -37
- pythonknot-0.1.5/src/cpp_module/cln-1.3.7/build/include/cln/null_ring.h +0 -24
- pythonknot-0.1.5/src/cpp_module/cln-1.3.7/build/include/cln/number.h +0 -300
- pythonknot-0.1.5/src/cpp_module/cln-1.3.7/build/include/cln/number_io.h +0 -42
- pythonknot-0.1.5/src/cpp_module/cln-1.3.7/build/include/cln/numtheory.h +0 -90
- pythonknot-0.1.5/src/cpp_module/cln-1.3.7/build/include/cln/object.h +0 -531
- pythonknot-0.1.5/src/cpp_module/cln-1.3.7/build/include/cln/output.h +0 -74
- pythonknot-0.1.5/src/cpp_module/cln-1.3.7/build/include/cln/proplist.h +0 -55
- pythonknot-0.1.5/src/cpp_module/cln-1.3.7/build/include/cln/random.h +0 -55
- pythonknot-0.1.5/src/cpp_module/cln-1.3.7/build/include/cln/rational.h +0 -337
- pythonknot-0.1.5/src/cpp_module/cln-1.3.7/build/include/cln/rational_class.h +0 -65
- pythonknot-0.1.5/src/cpp_module/cln-1.3.7/build/include/cln/rational_io.h +0 -73
- pythonknot-0.1.5/src/cpp_module/cln-1.3.7/build/include/cln/rational_ring.h +0 -26
- pythonknot-0.1.5/src/cpp_module/cln-1.3.7/build/include/cln/real.h +0 -607
- pythonknot-0.1.5/src/cpp_module/cln-1.3.7/build/include/cln/real_class.h +0 -70
- pythonknot-0.1.5/src/cpp_module/cln-1.3.7/build/include/cln/real_io.h +0 -52
- pythonknot-0.1.5/src/cpp_module/cln-1.3.7/build/include/cln/real_ring.h +0 -27
- pythonknot-0.1.5/src/cpp_module/cln-1.3.7/build/include/cln/ring.h +0 -464
- pythonknot-0.1.5/src/cpp_module/cln-1.3.7/build/include/cln/sfloat.h +0 -300
- pythonknot-0.1.5/src/cpp_module/cln-1.3.7/build/include/cln/sfloat_class.h +0 -45
- pythonknot-0.1.5/src/cpp_module/cln-1.3.7/build/include/cln/sfloat_io.h +0 -31
- pythonknot-0.1.5/src/cpp_module/cln-1.3.7/build/include/cln/string.h +0 -172
- pythonknot-0.1.5/src/cpp_module/cln-1.3.7/build/include/cln/symbol.h +0 -48
- pythonknot-0.1.5/src/cpp_module/cln-1.3.7/build/include/cln/timing.h +0 -78
- pythonknot-0.1.5/src/cpp_module/cln-1.3.7/build/include/cln/types.h +0 -182
- pythonknot-0.1.5/src/cpp_module/cln-1.3.7/build/include/cln/univpoly.h +0 -733
- pythonknot-0.1.5/src/cpp_module/cln-1.3.7/build/include/cln/univpoly_complex.h +0 -228
- pythonknot-0.1.5/src/cpp_module/cln-1.3.7/build/include/cln/univpoly_integer.h +0 -233
- pythonknot-0.1.5/src/cpp_module/cln-1.3.7/build/include/cln/univpoly_modint.h +0 -217
- pythonknot-0.1.5/src/cpp_module/cln-1.3.7/build/include/cln/univpoly_rational.h +0 -232
- pythonknot-0.1.5/src/cpp_module/cln-1.3.7/build/include/cln/univpoly_real.h +0 -228
- pythonknot-0.1.5/src/cpp_module/cln-1.3.7/build/include/cln/version.h +0 -46
- pythonknot-0.1.5/src/cpp_module/cln-1.3.7/include/cln/GV.h +0 -350
- pythonknot-0.1.5/src/cpp_module/cln-1.3.7/include/cln/GV_complex.h +0 -58
- pythonknot-0.1.5/src/cpp_module/cln-1.3.7/include/cln/GV_integer.h +0 -91
- pythonknot-0.1.5/src/cpp_module/cln-1.3.7/include/cln/GV_modinteger.h +0 -51
- pythonknot-0.1.5/src/cpp_module/cln-1.3.7/include/cln/GV_number.h +0 -55
- pythonknot-0.1.5/src/cpp_module/cln-1.3.7/include/cln/GV_rational.h +0 -58
- pythonknot-0.1.5/src/cpp_module/cln-1.3.7/include/cln/GV_real.h +0 -58
- pythonknot-0.1.5/src/cpp_module/cln-1.3.7/include/cln/SV.h +0 -217
- pythonknot-0.1.5/src/cpp_module/cln-1.3.7/include/cln/SV_complex.h +0 -54
- pythonknot-0.1.5/src/cpp_module/cln-1.3.7/include/cln/SV_integer.h +0 -51
- pythonknot-0.1.5/src/cpp_module/cln-1.3.7/include/cln/SV_number.h +0 -67
- pythonknot-0.1.5/src/cpp_module/cln-1.3.7/include/cln/SV_rational.h +0 -54
- pythonknot-0.1.5/src/cpp_module/cln-1.3.7/include/cln/SV_real.h +0 -54
- pythonknot-0.1.5/src/cpp_module/cln-1.3.7/include/cln/SV_ringelt.h +0 -72
- pythonknot-0.1.5/src/cpp_module/cln-1.3.7/include/cln/V.h +0 -23
- pythonknot-0.1.5/src/cpp_module/cln-1.3.7/include/cln/cln.h +0 -141
- pythonknot-0.1.5/src/cpp_module/cln-1.3.7/include/cln/complex.h +0 -157
- pythonknot-0.1.5/src/cpp_module/cln-1.3.7/include/cln/complex_class.h +0 -70
- pythonknot-0.1.5/src/cpp_module/cln-1.3.7/include/cln/complex_io.h +0 -43
- pythonknot-0.1.5/src/cpp_module/cln-1.3.7/include/cln/complex_ring.h +0 -26
- pythonknot-0.1.5/src/cpp_module/cln-1.3.7/include/cln/condition.h +0 -39
- pythonknot-0.1.5/src/cpp_module/cln-1.3.7/include/cln/config.h +0 -27
- pythonknot-0.1.5/src/cpp_module/cln-1.3.7/include/cln/dfloat.h +0 -326
- pythonknot-0.1.5/src/cpp_module/cln-1.3.7/include/cln/dfloat_class.h +0 -75
- pythonknot-0.1.5/src/cpp_module/cln-1.3.7/include/cln/dfloat_io.h +0 -31
- pythonknot-0.1.5/src/cpp_module/cln-1.3.7/include/cln/exception.h +0 -40
- pythonknot-0.1.5/src/cpp_module/cln-1.3.7/include/cln/ffloat.h +0 -329
- pythonknot-0.1.5/src/cpp_module/cln-1.3.7/include/cln/ffloat_class.h +0 -85
- pythonknot-0.1.5/src/cpp_module/cln-1.3.7/include/cln/ffloat_io.h +0 -31
- pythonknot-0.1.5/src/cpp_module/cln-1.3.7/include/cln/float.h +0 -738
- pythonknot-0.1.5/src/cpp_module/cln-1.3.7/include/cln/float_class.h +0 -52
- pythonknot-0.1.5/src/cpp_module/cln-1.3.7/include/cln/float_io.h +0 -76
- pythonknot-0.1.5/src/cpp_module/cln-1.3.7/include/cln/floatformat.h +0 -21
- pythonknot-0.1.5/src/cpp_module/cln-1.3.7/include/cln/floatparam.h +0 -26
- pythonknot-0.1.5/src/cpp_module/cln-1.3.7/include/cln/host_cpu.h +0 -84
- pythonknot-0.1.5/src/cpp_module/cln-1.3.7/include/cln/input.h +0 -61
- pythonknot-0.1.5/src/cpp_module/cln-1.3.7/include/cln/integer.h +0 -654
- pythonknot-0.1.5/src/cpp_module/cln-1.3.7/include/cln/integer_class.h +0 -63
- pythonknot-0.1.5/src/cpp_module/cln-1.3.7/include/cln/integer_io.h +0 -100
- pythonknot-0.1.5/src/cpp_module/cln-1.3.7/include/cln/integer_ring.h +0 -26
- pythonknot-0.1.5/src/cpp_module/cln-1.3.7/include/cln/intparam.h +0 -92
- pythonknot-0.1.5/src/cpp_module/cln-1.3.7/include/cln/io.h +0 -85
- pythonknot-0.1.5/src/cpp_module/cln-1.3.7/include/cln/lfloat.h +0 -425
- pythonknot-0.1.5/src/cpp_module/cln-1.3.7/include/cln/lfloat_class.h +0 -73
- pythonknot-0.1.5/src/cpp_module/cln-1.3.7/include/cln/lfloat_io.h +0 -31
- pythonknot-0.1.5/src/cpp_module/cln-1.3.7/include/cln/malloc.h +0 -17
- pythonknot-0.1.5/src/cpp_module/cln-1.3.7/include/cln/modinteger.h +0 -466
- pythonknot-0.1.5/src/cpp_module/cln-1.3.7/include/cln/modules.h +0 -37
- pythonknot-0.1.5/src/cpp_module/cln-1.3.7/include/cln/null_ring.h +0 -24
- pythonknot-0.1.5/src/cpp_module/cln-1.3.7/include/cln/number.h +0 -300
- pythonknot-0.1.5/src/cpp_module/cln-1.3.7/include/cln/number_io.h +0 -42
- pythonknot-0.1.5/src/cpp_module/cln-1.3.7/include/cln/numtheory.h +0 -90
- pythonknot-0.1.5/src/cpp_module/cln-1.3.7/include/cln/object.h +0 -531
- pythonknot-0.1.5/src/cpp_module/cln-1.3.7/include/cln/output.h +0 -74
- pythonknot-0.1.5/src/cpp_module/cln-1.3.7/include/cln/proplist.h +0 -55
- pythonknot-0.1.5/src/cpp_module/cln-1.3.7/include/cln/random.h +0 -55
- pythonknot-0.1.5/src/cpp_module/cln-1.3.7/include/cln/rational.h +0 -337
- pythonknot-0.1.5/src/cpp_module/cln-1.3.7/include/cln/rational_class.h +0 -65
- pythonknot-0.1.5/src/cpp_module/cln-1.3.7/include/cln/rational_io.h +0 -73
- pythonknot-0.1.5/src/cpp_module/cln-1.3.7/include/cln/rational_ring.h +0 -26
- pythonknot-0.1.5/src/cpp_module/cln-1.3.7/include/cln/real.h +0 -607
- pythonknot-0.1.5/src/cpp_module/cln-1.3.7/include/cln/real_class.h +0 -70
- pythonknot-0.1.5/src/cpp_module/cln-1.3.7/include/cln/real_io.h +0 -52
- pythonknot-0.1.5/src/cpp_module/cln-1.3.7/include/cln/real_ring.h +0 -27
- pythonknot-0.1.5/src/cpp_module/cln-1.3.7/include/cln/ring.h +0 -464
- pythonknot-0.1.5/src/cpp_module/cln-1.3.7/include/cln/sfloat.h +0 -300
- pythonknot-0.1.5/src/cpp_module/cln-1.3.7/include/cln/sfloat_class.h +0 -45
- pythonknot-0.1.5/src/cpp_module/cln-1.3.7/include/cln/sfloat_io.h +0 -31
- pythonknot-0.1.5/src/cpp_module/cln-1.3.7/include/cln/string.h +0 -172
- pythonknot-0.1.5/src/cpp_module/cln-1.3.7/include/cln/symbol.h +0 -48
- pythonknot-0.1.5/src/cpp_module/cln-1.3.7/include/cln/timing.h +0 -78
- pythonknot-0.1.5/src/cpp_module/cln-1.3.7/include/cln/types.h +0 -182
- pythonknot-0.1.5/src/cpp_module/cln-1.3.7/include/cln/univpoly.h +0 -733
- pythonknot-0.1.5/src/cpp_module/cln-1.3.7/include/cln/univpoly_complex.h +0 -228
- pythonknot-0.1.5/src/cpp_module/cln-1.3.7/include/cln/univpoly_integer.h +0 -233
- pythonknot-0.1.5/src/cpp_module/cln-1.3.7/include/cln/univpoly_modint.h +0 -217
- pythonknot-0.1.5/src/cpp_module/cln-1.3.7/include/cln/univpoly_rational.h +0 -232
- pythonknot-0.1.5/src/cpp_module/cln-1.3.7/include/cln/univpoly_real.h +0 -228
- pythonknot-0.1.5/src/cpp_module/cln-1.3.7/include/cln/version.h +0 -46
- pythonknot-0.1.5/src/cpp_module/cln-1.3.7/lib/include/cln/GV.h +0 -350
- pythonknot-0.1.5/src/cpp_module/cln-1.3.7/lib/include/cln/GV_complex.h +0 -58
- pythonknot-0.1.5/src/cpp_module/cln-1.3.7/lib/include/cln/GV_integer.h +0 -91
- pythonknot-0.1.5/src/cpp_module/cln-1.3.7/lib/include/cln/GV_modinteger.h +0 -51
- pythonknot-0.1.5/src/cpp_module/cln-1.3.7/lib/include/cln/GV_number.h +0 -55
- pythonknot-0.1.5/src/cpp_module/cln-1.3.7/lib/include/cln/GV_rational.h +0 -58
- pythonknot-0.1.5/src/cpp_module/cln-1.3.7/lib/include/cln/GV_real.h +0 -58
- pythonknot-0.1.5/src/cpp_module/cln-1.3.7/lib/include/cln/SV.h +0 -217
- pythonknot-0.1.5/src/cpp_module/cln-1.3.7/lib/include/cln/SV_complex.h +0 -54
- pythonknot-0.1.5/src/cpp_module/cln-1.3.7/lib/include/cln/SV_integer.h +0 -51
- pythonknot-0.1.5/src/cpp_module/cln-1.3.7/lib/include/cln/SV_number.h +0 -67
- pythonknot-0.1.5/src/cpp_module/cln-1.3.7/lib/include/cln/SV_rational.h +0 -54
- pythonknot-0.1.5/src/cpp_module/cln-1.3.7/lib/include/cln/SV_real.h +0 -54
- pythonknot-0.1.5/src/cpp_module/cln-1.3.7/lib/include/cln/SV_ringelt.h +0 -72
- pythonknot-0.1.5/src/cpp_module/cln-1.3.7/lib/include/cln/V.h +0 -23
- pythonknot-0.1.5/src/cpp_module/cln-1.3.7/lib/include/cln/cln.h +0 -141
- pythonknot-0.1.5/src/cpp_module/cln-1.3.7/lib/include/cln/complex.h +0 -157
- pythonknot-0.1.5/src/cpp_module/cln-1.3.7/lib/include/cln/complex_class.h +0 -70
- pythonknot-0.1.5/src/cpp_module/cln-1.3.7/lib/include/cln/complex_io.h +0 -43
- pythonknot-0.1.5/src/cpp_module/cln-1.3.7/lib/include/cln/complex_ring.h +0 -26
- pythonknot-0.1.5/src/cpp_module/cln-1.3.7/lib/include/cln/condition.h +0 -39
- pythonknot-0.1.5/src/cpp_module/cln-1.3.7/lib/include/cln/config.h +0 -27
- pythonknot-0.1.5/src/cpp_module/cln-1.3.7/lib/include/cln/dfloat.h +0 -326
- pythonknot-0.1.5/src/cpp_module/cln-1.3.7/lib/include/cln/dfloat_class.h +0 -75
- pythonknot-0.1.5/src/cpp_module/cln-1.3.7/lib/include/cln/dfloat_io.h +0 -31
- pythonknot-0.1.5/src/cpp_module/cln-1.3.7/lib/include/cln/exception.h +0 -40
- pythonknot-0.1.5/src/cpp_module/cln-1.3.7/lib/include/cln/ffloat.h +0 -329
- pythonknot-0.1.5/src/cpp_module/cln-1.3.7/lib/include/cln/ffloat_class.h +0 -85
- pythonknot-0.1.5/src/cpp_module/cln-1.3.7/lib/include/cln/ffloat_io.h +0 -31
- pythonknot-0.1.5/src/cpp_module/cln-1.3.7/lib/include/cln/float.h +0 -738
- pythonknot-0.1.5/src/cpp_module/cln-1.3.7/lib/include/cln/float_class.h +0 -52
- pythonknot-0.1.5/src/cpp_module/cln-1.3.7/lib/include/cln/float_io.h +0 -76
- pythonknot-0.1.5/src/cpp_module/cln-1.3.7/lib/include/cln/floatformat.h +0 -21
- pythonknot-0.1.5/src/cpp_module/cln-1.3.7/lib/include/cln/host_cpu.h +0 -84
- pythonknot-0.1.5/src/cpp_module/cln-1.3.7/lib/include/cln/input.h +0 -61
- pythonknot-0.1.5/src/cpp_module/cln-1.3.7/lib/include/cln/integer.h +0 -654
- pythonknot-0.1.5/src/cpp_module/cln-1.3.7/lib/include/cln/integer_class.h +0 -63
- pythonknot-0.1.5/src/cpp_module/cln-1.3.7/lib/include/cln/integer_io.h +0 -100
- pythonknot-0.1.5/src/cpp_module/cln-1.3.7/lib/include/cln/integer_ring.h +0 -26
- pythonknot-0.1.5/src/cpp_module/cln-1.3.7/lib/include/cln/intparam.h +0 -92
- pythonknot-0.1.5/src/cpp_module/cln-1.3.7/lib/include/cln/io.h +0 -85
- pythonknot-0.1.5/src/cpp_module/cln-1.3.7/lib/include/cln/lfloat.h +0 -425
- pythonknot-0.1.5/src/cpp_module/cln-1.3.7/lib/include/cln/lfloat_class.h +0 -73
- pythonknot-0.1.5/src/cpp_module/cln-1.3.7/lib/include/cln/lfloat_io.h +0 -31
- pythonknot-0.1.5/src/cpp_module/cln-1.3.7/lib/include/cln/malloc.h +0 -17
- pythonknot-0.1.5/src/cpp_module/cln-1.3.7/lib/include/cln/modinteger.h +0 -466
- pythonknot-0.1.5/src/cpp_module/cln-1.3.7/lib/include/cln/modules.h +0 -37
- pythonknot-0.1.5/src/cpp_module/cln-1.3.7/lib/include/cln/null_ring.h +0 -24
- pythonknot-0.1.5/src/cpp_module/cln-1.3.7/lib/include/cln/number.h +0 -300
- pythonknot-0.1.5/src/cpp_module/cln-1.3.7/lib/include/cln/number_io.h +0 -42
- pythonknot-0.1.5/src/cpp_module/cln-1.3.7/lib/include/cln/numtheory.h +0 -90
- pythonknot-0.1.5/src/cpp_module/cln-1.3.7/lib/include/cln/object.h +0 -531
- pythonknot-0.1.5/src/cpp_module/cln-1.3.7/lib/include/cln/output.h +0 -74
- pythonknot-0.1.5/src/cpp_module/cln-1.3.7/lib/include/cln/proplist.h +0 -55
- pythonknot-0.1.5/src/cpp_module/cln-1.3.7/lib/include/cln/random.h +0 -55
- pythonknot-0.1.5/src/cpp_module/cln-1.3.7/lib/include/cln/rational.h +0 -337
- pythonknot-0.1.5/src/cpp_module/cln-1.3.7/lib/include/cln/rational_class.h +0 -65
- pythonknot-0.1.5/src/cpp_module/cln-1.3.7/lib/include/cln/rational_io.h +0 -73
- pythonknot-0.1.5/src/cpp_module/cln-1.3.7/lib/include/cln/rational_ring.h +0 -26
- pythonknot-0.1.5/src/cpp_module/cln-1.3.7/lib/include/cln/real.h +0 -607
- pythonknot-0.1.5/src/cpp_module/cln-1.3.7/lib/include/cln/real_class.h +0 -70
- pythonknot-0.1.5/src/cpp_module/cln-1.3.7/lib/include/cln/real_io.h +0 -52
- pythonknot-0.1.5/src/cpp_module/cln-1.3.7/lib/include/cln/real_ring.h +0 -27
- pythonknot-0.1.5/src/cpp_module/cln-1.3.7/lib/include/cln/ring.h +0 -464
- pythonknot-0.1.5/src/cpp_module/cln-1.3.7/lib/include/cln/sfloat.h +0 -300
- pythonknot-0.1.5/src/cpp_module/cln-1.3.7/lib/include/cln/sfloat_class.h +0 -45
- pythonknot-0.1.5/src/cpp_module/cln-1.3.7/lib/include/cln/sfloat_io.h +0 -31
- pythonknot-0.1.5/src/cpp_module/cln-1.3.7/lib/include/cln/string.h +0 -172
- pythonknot-0.1.5/src/cpp_module/cln-1.3.7/lib/include/cln/symbol.h +0 -48
- pythonknot-0.1.5/src/cpp_module/cln-1.3.7/lib/include/cln/timing.h +0 -78
- pythonknot-0.1.5/src/cpp_module/cln-1.3.7/lib/include/cln/types.h +0 -182
- pythonknot-0.1.5/src/cpp_module/cln-1.3.7/lib/include/cln/univpoly.h +0 -733
- pythonknot-0.1.5/src/cpp_module/cln-1.3.7/lib/include/cln/univpoly_complex.h +0 -228
- pythonknot-0.1.5/src/cpp_module/cln-1.3.7/lib/include/cln/univpoly_integer.h +0 -233
- pythonknot-0.1.5/src/cpp_module/cln-1.3.7/lib/include/cln/univpoly_modint.h +0 -217
- pythonknot-0.1.5/src/cpp_module/cln-1.3.7/lib/include/cln/univpoly_rational.h +0 -232
- pythonknot-0.1.5/src/cpp_module/cln-1.3.7/lib/include/cln/univpoly_real.h +0 -228
- pythonknot-0.1.5/src/cpp_module/cln-1.3.7/lib/include/cln/version.h +0 -46
- pythonknot-0.1.5/src/cpp_module/cln-1.3.7/src/base/cl_N.h +0 -22
- pythonknot-0.1.5/src/cpp_module/cln-1.3.7/src/base/cl_alloca.h +0 -88
- pythonknot-0.1.5/src/cpp_module/cln-1.3.7/src/base/cl_base_config.h +0 -18
- pythonknot-0.1.5/src/cpp_module/cln-1.3.7/src/base/cl_gmpconfig.h +0 -17
- pythonknot-0.1.5/src/cpp_module/cln-1.3.7/src/base/cl_inline.h +0 -8
- pythonknot-0.1.5/src/cpp_module/cln-1.3.7/src/base/cl_inline2.h +0 -8
- pythonknot-0.1.5/src/cpp_module/cln-1.3.7/src/base/cl_iterator.h +0 -28
- pythonknot-0.1.5/src/cpp_module/cln-1.3.7/src/base/cl_low.h +0 -1594
- pythonknot-0.1.5/src/cpp_module/cln-1.3.7/src/base/cl_macros.h +0 -258
- pythonknot-0.1.5/src/cpp_module/cln-1.3.7/src/base/cl_maybe_inline.h +0 -133
- pythonknot-0.1.5/src/cpp_module/cln-1.3.7/src/base/cl_offsetof.h +0 -20
- pythonknot-0.1.5/src/cpp_module/cln-1.3.7/src/base/cl_sysdep.h +0 -64
- pythonknot-0.1.5/src/cpp_module/cln-1.3.7/src/base/cl_xmacros.h +0 -13
- pythonknot-0.1.5/src/cpp_module/cln-1.3.7/src/base/digit/cl_2D.h +0 -44
- pythonknot-0.1.5/src/cpp_module/cln-1.3.7/src/base/digit/cl_D.h +0 -226
- pythonknot-0.1.5/src/cpp_module/cln-1.3.7/src/base/digitseq/cl_2DS.h +0 -31
- pythonknot-0.1.5/src/cpp_module/cln-1.3.7/src/base/digitseq/cl_DS.h +0 -2689
- pythonknot-0.1.5/src/cpp_module/cln-1.3.7/src/base/digitseq/cl_DS_endian.h +0 -21
- pythonknot-0.1.5/src/cpp_module/cln-1.3.7/src/base/digitseq/cl_DS_mul_fftc.h +0 -1102
- pythonknot-0.1.5/src/cpp_module/cln-1.3.7/src/base/digitseq/cl_DS_mul_fftcs.h +0 -1152
- pythonknot-0.1.5/src/cpp_module/cln-1.3.7/src/base/digitseq/cl_DS_mul_fftm.h +0 -654
- pythonknot-0.1.5/src/cpp_module/cln-1.3.7/src/base/digitseq/cl_DS_mul_fftp.h +0 -823
- pythonknot-0.1.5/src/cpp_module/cln-1.3.7/src/base/digitseq/cl_DS_mul_fftp3.h +0 -672
- pythonknot-0.1.5/src/cpp_module/cln-1.3.7/src/base/digitseq/cl_DS_mul_fftp3m.h +0 -858
- pythonknot-0.1.5/src/cpp_module/cln-1.3.7/src/base/digitseq/cl_DS_mul_fftr.h +0 -1139
- pythonknot-0.1.5/src/cpp_module/cln-1.3.7/src/base/digitseq/cl_DS_mul_kara.h +0 -259
- pythonknot-0.1.5/src/cpp_module/cln-1.3.7/src/base/digitseq/cl_DS_mul_kara_sqr.h +0 -81
- pythonknot-0.1.5/src/cpp_module/cln-1.3.7/src/base/digitseq/cl_DS_mul_nuss.h +0 -1511
- pythonknot-0.1.5/src/cpp_module/cln-1.3.7/src/base/digitseq/cl_asm.h +0 -42
- pythonknot-0.1.5/src/cpp_module/cln-1.3.7/src/base/digitseq/cl_asm_arm.h +0 -10
- pythonknot-0.1.5/src/cpp_module/cln-1.3.7/src/base/digitseq/cl_asm_hppa.h +0 -2
- pythonknot-0.1.5/src/cpp_module/cln-1.3.7/src/base/digitseq/cl_asm_i386.h +0 -11
- pythonknot-0.1.5/src/cpp_module/cln-1.3.7/src/base/digitseq/cl_asm_m68k.h +0 -11
- pythonknot-0.1.5/src/cpp_module/cln-1.3.7/src/base/digitseq/cl_asm_mips.h +0 -8
- pythonknot-0.1.5/src/cpp_module/cln-1.3.7/src/base/digitseq/cl_asm_sparc.h +0 -11
- pythonknot-0.1.5/src/cpp_module/cln-1.3.7/src/base/digitseq/cl_asm_sparc64.h +0 -10
- pythonknot-0.1.5/src/cpp_module/cln-1.3.7/src/base/hash/cl_hash.h +0 -185
- pythonknot-0.1.5/src/cpp_module/cln-1.3.7/src/base/hash/cl_hash1.h +0 -157
- pythonknot-0.1.5/src/cpp_module/cln-1.3.7/src/base/hash/cl_hash1weak.h +0 -97
- pythonknot-0.1.5/src/cpp_module/cln-1.3.7/src/base/hash/cl_hash2.h +0 -163
- pythonknot-0.1.5/src/cpp_module/cln-1.3.7/src/base/hash/cl_hash2weak.h +0 -97
- pythonknot-0.1.5/src/cpp_module/cln-1.3.7/src/base/hash/cl_hashset.h +0 -150
- pythonknot-0.1.5/src/cpp_module/cln-1.3.7/src/base/hash/cl_hashuniq.h +0 -158
- pythonknot-0.1.5/src/cpp_module/cln-1.3.7/src/base/hash/cl_hashuniqweak.h +0 -97
- pythonknot-0.1.5/src/cpp_module/cln-1.3.7/src/base/hash/cl_rcpointer2_hashweak_rcpointer.h +0 -48
- pythonknot-0.1.5/src/cpp_module/cln-1.3.7/src/base/hash/cl_rcpointer_hashweak_rcpointer.h +0 -43
- pythonknot-0.1.5/src/cpp_module/cln-1.3.7/src/base/random/cl_random_impl.h +0 -26
- pythonknot-0.1.5/src/cpp_module/cln-1.3.7/src/base/string/cl_spushstring.h +0 -65
- pythonknot-0.1.5/src/cpp_module/cln-1.3.7/src/base/string/cl_sstring.h +0 -14
- pythonknot-0.1.5/src/cpp_module/cln-1.3.7/src/base/string/cl_st_make0.h +0 -11
- pythonknot-0.1.5/src/cpp_module/cln-1.3.7/src/complex/cl_C.h +0 -193
- pythonknot-0.1.5/src/cpp_module/cln-1.3.7/src/float/cl_F.h +0 -276
- pythonknot-0.1.5/src/cpp_module/cln-1.3.7/src/float/dfloat/cl_DF.h +0 -321
- pythonknot-0.1.5/src/cpp_module/cln-1.3.7/src/float/ffloat/cl_FF.h +0 -249
- pythonknot-0.1.5/src/cpp_module/cln-1.3.7/src/float/lfloat/cl_LF.h +0 -150
- pythonknot-0.1.5/src/cpp_module/cln-1.3.7/src/float/lfloat/cl_LF_impl.h +0 -153
- pythonknot-0.1.5/src/cpp_module/cln-1.3.7/src/float/sfloat/cl_SF.h +0 -137
- pythonknot-0.1.5/src/cpp_module/cln-1.3.7/src/float/transcendental/cl_F_catalanconst_var.h +0 -29
- pythonknot-0.1.5/src/cpp_module/cln-1.3.7/src/float/transcendental/cl_F_eulerconst_var.h +0 -29
- pythonknot-0.1.5/src/cpp_module/cln-1.3.7/src/float/transcendental/cl_F_exp1_var.h +0 -29
- pythonknot-0.1.5/src/cpp_module/cln-1.3.7/src/float/transcendental/cl_F_ln10_var.h +0 -29
- pythonknot-0.1.5/src/cpp_module/cln-1.3.7/src/float/transcendental/cl_F_ln2_var.h +0 -29
- pythonknot-0.1.5/src/cpp_module/cln-1.3.7/src/float/transcendental/cl_F_pi_var.h +0 -29
- pythonknot-0.1.5/src/cpp_module/cln-1.3.7/src/float/transcendental/cl_F_tran.h +0 -149
- pythonknot-0.1.5/src/cpp_module/cln-1.3.7/src/float/transcendental/cl_LF_tran.h +0 -335
- pythonknot-0.1.5/src/cpp_module/cln-1.3.7/src/integer/bitwise/cl_I_byte.h +0 -33
- pythonknot-0.1.5/src/cpp_module/cln-1.3.7/src/integer/bitwise/cl_I_log.h +0 -38
- pythonknot-0.1.5/src/cpp_module/cln-1.3.7/src/integer/cl_I.h +0 -764
- pythonknot-0.1.5/src/cpp_module/cln-1.3.7/src/integer/conv/cl_I_cached_power.h +0 -47
- pythonknot-0.1.5/src/cpp_module/cln-1.3.7/src/integer/hash/cl_I_hash_gcobject.h +0 -35
- pythonknot-0.1.5/src/cpp_module/cln-1.3.7/src/integer/hash/cl_I_hash_gcpointer.h +0 -35
- pythonknot-0.1.5/src/cpp_module/cln-1.3.7/src/integer/hash/cl_I_hash_pointer.h +0 -35
- pythonknot-0.1.5/src/cpp_module/cln-1.3.7/src/integer/hash/cl_I_hash_rcobject.h +0 -35
- pythonknot-0.1.5/src/cpp_module/cln-1.3.7/src/integer/hash/cl_I_hash_rcpointer.h +0 -35
- pythonknot-0.1.5/src/cpp_module/cln-1.3.7/src/integer/hash/cl_I_hashweak_rcpointer.h +0 -35
- pythonknot-0.1.5/src/cpp_module/cln-1.3.7/src/integer/misc/combin/cl_I_combin.h +0 -17
- pythonknot-0.1.5/src/cpp_module/cln-1.3.7/src/modinteger/cl_MI.h +0 -14
- pythonknot-0.1.5/src/cpp_module/cln-1.3.7/src/modinteger/cl_MI_fix16.h +0 -91
- pythonknot-0.1.5/src/cpp_module/cln-1.3.7/src/modinteger/cl_MI_fix29.h +0 -98
- pythonknot-0.1.5/src/cpp_module/cln-1.3.7/src/modinteger/cl_MI_fix32.h +0 -100
- pythonknot-0.1.5/src/cpp_module/cln-1.3.7/src/modinteger/cl_MI_int.h +0 -149
- pythonknot-0.1.5/src/cpp_module/cln-1.3.7/src/modinteger/cl_MI_int32.h +0 -99
- pythonknot-0.1.5/src/cpp_module/cln-1.3.7/src/modinteger/cl_MI_montgom.h +0 -238
- pythonknot-0.1.5/src/cpp_module/cln-1.3.7/src/modinteger/cl_MI_pow2.h +0 -157
- pythonknot-0.1.5/src/cpp_module/cln-1.3.7/src/modinteger/cl_MI_pow2m1.h +0 -98
- pythonknot-0.1.5/src/cpp_module/cln-1.3.7/src/modinteger/cl_MI_pow2p1.h +0 -109
- pythonknot-0.1.5/src/cpp_module/cln-1.3.7/src/modinteger/cl_MI_std.h +0 -370
- pythonknot-0.1.5/src/cpp_module/cln-1.3.7/src/numtheory/cl_IF.h +0 -55
- pythonknot-0.1.5/src/cpp_module/cln-1.3.7/src/polynomial/cl_UP.h +0 -35
- pythonknot-0.1.5/src/cpp_module/cln-1.3.7/src/polynomial/elem/cl_UP_GF2.h +0 -1066
- pythonknot-0.1.5/src/cpp_module/cln-1.3.7/src/polynomial/elem/cl_UP_MI.h +0 -506
- pythonknot-0.1.5/src/cpp_module/cln-1.3.7/src/polynomial/elem/cl_UP_gen.h +0 -485
- pythonknot-0.1.5/src/cpp_module/cln-1.3.7/src/polynomial/elem/cl_UP_number.h +0 -488
- pythonknot-0.1.5/src/cpp_module/cln-1.3.7/src/rational/cl_RA.h +0 -154
- pythonknot-0.1.5/src/cpp_module/cln-1.3.7/src/real/cl_R.h +0 -209
- pythonknot-0.1.5/src/cpp_module/cln-1.3.7/src/real/division/cl_R_div_t.h +0 -26
- pythonknot-0.1.5/src/cpp_module/cln-1.3.7/src/real/format-output/cl_format.h +0 -75
- pythonknot-0.1.5/src/cpp_module/cln-1.3.7/src/timing/cl_t_config.h +0 -29
- pythonknot-0.1.5/src/cpp_module/cln-1.3.7/src/vector/cl_GV_io.h +0 -22
- pythonknot-0.1.5/src/cpp_module/cln-1.3.7/src/vector/cl_SV_io.h +0 -22
- pythonknot-0.1.5/src/cpp_module/cln-1.3.7/tests/exam.h +0 -103
- pythonknot-0.1.5/src/cpp_module/cln-1.3.7/tests/test.h +0 -93
- pythonknot-0.1.5/src/cpp_module/cln-1.3.7/tests/test_I.h +0 -4
- pythonknot-0.1.5/src/cpp_module/cln-1.3.7/tests/test_MI.h +0 -5
- pythonknot-0.1.5/src/cpp_module/cln-1.3.7/tests/test_nt.h +0 -5
- pythonknot-0.1.5/src/cpp_module/ginac/build/CMakeFiles/3.16.3/CompilerIdCXX/CMakeCXXCompilerId.cpp +0 -660
- pythonknot-0.1.5/src/cpp_module/ginac/build/config.h +0 -5
- pythonknot-0.1.5/src/cpp_module/ginac/build/ginac/function.cpp +0 -2289
- pythonknot-0.1.5/src/cpp_module/ginac/build/ginac/function.h +0 -770
- pythonknot-0.1.5/src/cpp_module/ginac/build/ginsh/ginsh_fcn_help.h +0 -219
- pythonknot-0.1.5/src/cpp_module/ginac/build/ginsh/ginsh_lexer.cpp +0 -2202
- pythonknot-0.1.5/src/cpp_module/ginac/build/ginsh/ginsh_op_help.h +0 -15
- pythonknot-0.1.5/src/cpp_module/ginac/build/ginsh/ginsh_parser.cpp +0 -2845
- pythonknot-0.1.5/src/cpp_module/ginac/check/bugme_chinrem_gcd.cpp +0 -77
- pythonknot-0.1.5/src/cpp_module/ginac/check/check_inifcns.cpp +0 -215
- pythonknot-0.1.5/src/cpp_module/ginac/check/check_lsolve.cpp +0 -208
- pythonknot-0.1.5/src/cpp_module/ginac/check/check_matrices.cpp +0 -228
- pythonknot-0.1.5/src/cpp_module/ginac/check/check_mul_info.cpp +0 -14
- pythonknot-0.1.5/src/cpp_module/ginac/check/check_numeric.cpp +0 -128
- pythonknot-0.1.5/src/cpp_module/ginac/check/error_report.h +0 -40
- pythonknot-0.1.5/src/cpp_module/ginac/check/exam_archive.cpp +0 -82
- pythonknot-0.1.5/src/cpp_module/ginac/check/exam_clifford.cpp +0 -666
- pythonknot-0.1.5/src/cpp_module/ginac/check/exam_color.cpp +0 -163
- pythonknot-0.1.5/src/cpp_module/ginac/check/exam_cra.cpp +0 -146
- pythonknot-0.1.5/src/cpp_module/ginac/check/exam_differentiation.cpp +0 -282
- pythonknot-0.1.5/src/cpp_module/ginac/check/exam_factor.cpp +0 -312
- pythonknot-0.1.5/src/cpp_module/ginac/check/exam_indexed.cpp +0 -413
- pythonknot-0.1.5/src/cpp_module/ginac/check/exam_inifcns.cpp +0 -440
- pythonknot-0.1.5/src/cpp_module/ginac/check/exam_inifcns_nstdsums.cpp +0 -420
- pythonknot-0.1.5/src/cpp_module/ginac/check/exam_inifcns_nstdsums.h +0 -888
- pythonknot-0.1.5/src/cpp_module/ginac/check/exam_lsolve.cpp +0 -209
- pythonknot-0.1.5/src/cpp_module/ginac/check/exam_matrices.cpp +0 -405
- pythonknot-0.1.5/src/cpp_module/ginac/check/exam_misc.cpp +0 -322
- pythonknot-0.1.5/src/cpp_module/ginac/check/exam_mod_gcd.cpp +0 -108
- pythonknot-0.1.5/src/cpp_module/ginac/check/exam_normalization.cpp +0 -244
- pythonknot-0.1.5/src/cpp_module/ginac/check/exam_numeric.cpp +0 -403
- pythonknot-0.1.5/src/cpp_module/ginac/check/exam_paranoia.cpp +0 -678
- pythonknot-0.1.5/src/cpp_module/ginac/check/exam_polygcd.cpp +0 -255
- pythonknot-0.1.5/src/cpp_module/ginac/check/exam_powerlaws.cpp +0 -341
- pythonknot-0.1.5/src/cpp_module/ginac/check/exam_pseries.cpp +0 -420
- pythonknot-0.1.5/src/cpp_module/ginac/check/exam_real_imag.cpp +0 -82
- pythonknot-0.1.5/src/cpp_module/ginac/check/exam_structure.cpp +0 -102
- pythonknot-0.1.5/src/cpp_module/ginac/check/factor_univariate_bug.cpp +0 -21
- pythonknot-0.1.5/src/cpp_module/ginac/check/genex.cpp +0 -157
- pythonknot-0.1.5/src/cpp_module/ginac/check/heur_gcd_bug.cpp +0 -58
- pythonknot-0.1.5/src/cpp_module/ginac/check/match_bug.cpp +0 -127
- pythonknot-0.1.5/src/cpp_module/ginac/check/mul_eval_memleak.cpp +0 -119
- pythonknot-0.1.5/src/cpp_module/ginac/check/numeric_archive.cpp +0 -68
- pythonknot-0.1.5/src/cpp_module/ginac/check/parser_bugs.cpp +0 -115
- pythonknot-0.1.5/src/cpp_module/ginac/check/parser_memleak.cpp +0 -57
- pythonknot-0.1.5/src/cpp_module/ginac/check/pgcd_infinite_loop.cpp +0 -41
- pythonknot-0.1.5/src/cpp_module/ginac/check/pgcd_relatively_prime_bug.cpp +0 -31
- pythonknot-0.1.5/src/cpp_module/ginac/check/randomize_serials.cpp +0 -53
- pythonknot-0.1.5/src/cpp_module/ginac/check/test_runner.h +0 -90
- pythonknot-0.1.5/src/cpp_module/ginac/check/time_antipode.cpp +0 -511
- pythonknot-0.1.5/src/cpp_module/ginac/check/time_dennyfliegner.cpp +0 -99
- pythonknot-0.1.5/src/cpp_module/ginac/check/time_fateman_expand.cpp +0 -79
- pythonknot-0.1.5/src/cpp_module/ginac/check/time_gammaseries.cpp +0 -88
- pythonknot-0.1.5/src/cpp_module/ginac/check/time_lw_A.cpp +0 -73
- pythonknot-0.1.5/src/cpp_module/ginac/check/time_lw_B.cpp +0 -73
- pythonknot-0.1.5/src/cpp_module/ginac/check/time_lw_C.cpp +0 -78
- pythonknot-0.1.5/src/cpp_module/ginac/check/time_lw_D.cpp +0 -78
- pythonknot-0.1.5/src/cpp_module/ginac/check/time_lw_E.cpp +0 -78
- pythonknot-0.1.5/src/cpp_module/ginac/check/time_lw_F.cpp +0 -75
- pythonknot-0.1.5/src/cpp_module/ginac/check/time_lw_G.cpp +0 -78
- pythonknot-0.1.5/src/cpp_module/ginac/check/time_lw_H.cpp +0 -90
- pythonknot-0.1.5/src/cpp_module/ginac/check/time_lw_IJKL.cpp +0 -97
- pythonknot-0.1.5/src/cpp_module/ginac/check/time_lw_M1.cpp +0 -109
- pythonknot-0.1.5/src/cpp_module/ginac/check/time_lw_M2.cpp +0 -189
- pythonknot-0.1.5/src/cpp_module/ginac/check/time_lw_N.cpp +0 -93
- pythonknot-0.1.5/src/cpp_module/ginac/check/time_lw_O.cpp +0 -173
- pythonknot-0.1.5/src/cpp_module/ginac/check/time_lw_P.cpp +0 -87
- pythonknot-0.1.5/src/cpp_module/ginac/check/time_lw_Pprime.cpp +0 -101
- pythonknot-0.1.5/src/cpp_module/ginac/check/time_lw_Q.cpp +0 -95
- pythonknot-0.1.5/src/cpp_module/ginac/check/time_lw_Qprime.cpp +0 -107
- pythonknot-0.1.5/src/cpp_module/ginac/check/time_parser.cpp +0 -81
- pythonknot-0.1.5/src/cpp_module/ginac/check/time_toeplitz.cpp +0 -115
- pythonknot-0.1.5/src/cpp_module/ginac/check/time_uvar_gcd.cpp +0 -1911
- pythonknot-0.1.5/src/cpp_module/ginac/check/time_vandermonde.cpp +0 -112
- pythonknot-0.1.5/src/cpp_module/ginac/check/timer.cpp +0 -101
- pythonknot-0.1.5/src/cpp_module/ginac/check/timer.h +0 -53
- pythonknot-0.1.5/src/cpp_module/ginac/doc/examples/archive1.cpp +0 -47
- pythonknot-0.1.5/src/cpp_module/ginac/doc/examples/compile1.cpp +0 -72
- pythonknot-0.1.5/src/cpp_module/ginac/doc/examples/compile2.cpp +0 -62
- pythonknot-0.1.5/src/cpp_module/ginac/doc/examples/compile3.cpp +0 -39
- pythonknot-0.1.5/src/cpp_module/ginac/doc/examples/derivative.cpp +0 -30
- pythonknot-0.1.5/src/cpp_module/ginac/doc/examples/lanczos.cpp +0 -238
- pythonknot-0.1.5/src/cpp_module/ginac/doc/examples/mystring.cpp +0 -83
- pythonknot-0.1.5/src/cpp_module/ginac/ginac/add.cpp +0 -581
- pythonknot-0.1.5/src/cpp_module/ginac/ginac/add.h +0 -93
- pythonknot-0.1.5/src/cpp_module/ginac/ginac/archive.cpp +0 -692
- pythonknot-0.1.5/src/cpp_module/ginac/ginac/archive.h +0 -346
- pythonknot-0.1.5/src/cpp_module/ginac/ginac/assertion.h +0 -37
- pythonknot-0.1.5/src/cpp_module/ginac/ginac/basic.cpp +0 -927
- pythonknot-0.1.5/src/cpp_module/ginac/ginac/basic.h +0 -352
- pythonknot-0.1.5/src/cpp_module/ginac/ginac/class_info.h +0 -198
- pythonknot-0.1.5/src/cpp_module/ginac/ginac/clifford.cpp +0 -1409
- pythonknot-0.1.5/src/cpp_module/ginac/ginac/clifford.h +0 -369
- pythonknot-0.1.5/src/cpp_module/ginac/ginac/color.cpp +0 -639
- pythonknot-0.1.5/src/cpp_module/ginac/ginac/color.h +0 -198
- pythonknot-0.1.5/src/cpp_module/ginac/ginac/compiler.h +0 -36
- pythonknot-0.1.5/src/cpp_module/ginac/ginac/constant.cpp +0 -258
- pythonknot-0.1.5/src/cpp_module/ginac/ginac/constant.h +0 -88
- pythonknot-0.1.5/src/cpp_module/ginac/ginac/container.h +0 -675
- pythonknot-0.1.5/src/cpp_module/ginac/ginac/crc32.h +0 -76
- pythonknot-0.1.5/src/cpp_module/ginac/ginac/ex.cpp +0 -558
- pythonknot-0.1.5/src/cpp_module/ginac/ginac/ex.h +0 -987
- pythonknot-0.1.5/src/cpp_module/ginac/ginac/excompiler.cpp +0 -360
- pythonknot-0.1.5/src/cpp_module/ginac/ginac/excompiler.h +0 -126
- pythonknot-0.1.5/src/cpp_module/ginac/ginac/expair.cpp +0 -48
- pythonknot-0.1.5/src/cpp_module/ginac/ginac/expair.h +0 -116
- pythonknot-0.1.5/src/cpp_module/ginac/ginac/expairseq.cpp +0 -1175
- pythonknot-0.1.5/src/cpp_module/ginac/ginac/expairseq.h +0 -187
- pythonknot-0.1.5/src/cpp_module/ginac/ginac/exprseq.cpp +0 -46
- pythonknot-0.1.5/src/cpp_module/ginac/ginac/exprseq.h +0 -39
- pythonknot-0.1.5/src/cpp_module/ginac/ginac/factor.cpp +0 -2596
- pythonknot-0.1.5/src/cpp_module/ginac/ginac/factor.h +0 -46
- pythonknot-0.1.5/src/cpp_module/ginac/ginac/fail.cpp +0 -54
- pythonknot-0.1.5/src/cpp_module/ginac/ginac/fail.h +0 -48
- pythonknot-0.1.5/src/cpp_module/ginac/ginac/fderivative.cpp +0 -252
- pythonknot-0.1.5/src/cpp_module/ginac/ginac/fderivative.h +0 -91
- pythonknot-0.1.5/src/cpp_module/ginac/ginac/flags.h +0 -309
- pythonknot-0.1.5/src/cpp_module/ginac/ginac/ginac.h +0 -79
- pythonknot-0.1.5/src/cpp_module/ginac/ginac/hash_map.h +0 -38
- pythonknot-0.1.5/src/cpp_module/ginac/ginac/hash_seed.h +0 -54
- pythonknot-0.1.5/src/cpp_module/ginac/ginac/idx.cpp +0 -574
- pythonknot-0.1.5/src/cpp_module/ginac/ginac/idx.h +0 -277
- pythonknot-0.1.5/src/cpp_module/ginac/ginac/indexed.cpp +0 -1578
- pythonknot-0.1.5/src/cpp_module/ginac/ginac/indexed.h +0 -288
- pythonknot-0.1.5/src/cpp_module/ginac/ginac/inifcns.cpp +0 -1277
- pythonknot-0.1.5/src/cpp_module/ginac/ginac/inifcns.h +0 -215
- pythonknot-0.1.5/src/cpp_module/ginac/ginac/inifcns_gamma.cpp +0 -589
- pythonknot-0.1.5/src/cpp_module/ginac/ginac/inifcns_nstdsums.cpp +0 -4157
- pythonknot-0.1.5/src/cpp_module/ginac/ginac/inifcns_trans.cpp +0 -1574
- pythonknot-0.1.5/src/cpp_module/ginac/ginac/integral.cpp +0 -448
- pythonknot-0.1.5/src/cpp_module/ginac/ginac/integral.h +0 -96
- pythonknot-0.1.5/src/cpp_module/ginac/ginac/lst.cpp +0 -43
- pythonknot-0.1.5/src/cpp_module/ginac/ginac/lst.h +0 -49
- pythonknot-0.1.5/src/cpp_module/ginac/ginac/matrix.cpp +0 -1838
- pythonknot-0.1.5/src/cpp_module/ginac/ginac/matrix.h +0 -262
- pythonknot-0.1.5/src/cpp_module/ginac/ginac/mul.cpp +0 -1296
- pythonknot-0.1.5/src/cpp_module/ginac/ginac/mul.h +0 -108
- pythonknot-0.1.5/src/cpp_module/ginac/ginac/ncmul.cpp +0 -626
- pythonknot-0.1.5/src/cpp_module/ginac/ginac/ncmul.h +0 -99
- pythonknot-0.1.5/src/cpp_module/ginac/ginac/normal.cpp +0 -2686
- pythonknot-0.1.5/src/cpp_module/ginac/ginac/normal.h +0 -108
- pythonknot-0.1.5/src/cpp_module/ginac/ginac/numeric.cpp +0 -2581
- pythonknot-0.1.5/src/cpp_module/ginac/ginac/numeric.h +0 -330
- pythonknot-0.1.5/src/cpp_module/ginac/ginac/operators.cpp +0 -510
- pythonknot-0.1.5/src/cpp_module/ginac/ginac/operators.h +0 -104
- pythonknot-0.1.5/src/cpp_module/ginac/ginac/parser/debug.h +0 -72
- pythonknot-0.1.5/src/cpp_module/ginac/ginac/parser/default_reader.cpp +0 -157
- pythonknot-0.1.5/src/cpp_module/ginac/ginac/parser/lexer.cpp +0 -180
- pythonknot-0.1.5/src/cpp_module/ginac/ginac/parser/lexer.h +0 -70
- pythonknot-0.1.5/src/cpp_module/ginac/ginac/parser/parse_binop_rhs.cpp +0 -197
- pythonknot-0.1.5/src/cpp_module/ginac/ginac/parser/parse_context.cpp +0 -47
- pythonknot-0.1.5/src/cpp_module/ginac/ginac/parser/parse_context.h +0 -121
- pythonknot-0.1.5/src/cpp_module/ginac/ginac/parser/parser.cpp +0 -262
- pythonknot-0.1.5/src/cpp_module/ginac/ginac/parser/parser.h +0 -137
- pythonknot-0.1.5/src/cpp_module/ginac/ginac/parser/parser_compat.cpp +0 -69
- pythonknot-0.1.5/src/cpp_module/ginac/ginac/polynomial/chinrem_gcd.cpp +0 -35
- pythonknot-0.1.5/src/cpp_module/ginac/ginac/polynomial/chinrem_gcd.h +0 -40
- pythonknot-0.1.5/src/cpp_module/ginac/ginac/polynomial/collect_vargs.cpp +0 -206
- pythonknot-0.1.5/src/cpp_module/ginac/ginac/polynomial/collect_vargs.h +0 -88
- pythonknot-0.1.5/src/cpp_module/ginac/ginac/polynomial/cra_garner.cpp +0 -113
- pythonknot-0.1.5/src/cpp_module/ginac/ginac/polynomial/cra_garner.h +0 -36
- pythonknot-0.1.5/src/cpp_module/ginac/ginac/polynomial/debug.h +0 -53
- pythonknot-0.1.5/src/cpp_module/ginac/ginac/polynomial/divide_in_z_p.cpp +0 -112
- pythonknot-0.1.5/src/cpp_module/ginac/ginac/polynomial/divide_in_z_p.h +0 -48
- pythonknot-0.1.5/src/cpp_module/ginac/ginac/polynomial/euclid_gcd_wrap.h +0 -82
- pythonknot-0.1.5/src/cpp_module/ginac/ginac/polynomial/eval_point_finder.h +0 -73
- pythonknot-0.1.5/src/cpp_module/ginac/ginac/polynomial/eval_uvar.h +0 -59
- pythonknot-0.1.5/src/cpp_module/ginac/ginac/polynomial/gcd_euclid.h +0 -66
- pythonknot-0.1.5/src/cpp_module/ginac/ginac/polynomial/gcd_uvar.cpp +0 -54
- pythonknot-0.1.5/src/cpp_module/ginac/ginac/polynomial/heur_gcd_uvar.h +0 -88
- pythonknot-0.1.5/src/cpp_module/ginac/ginac/polynomial/interpolate_padic_uvar.h +0 -61
- pythonknot-0.1.5/src/cpp_module/ginac/ginac/polynomial/mgcd.cpp +0 -132
- pythonknot-0.1.5/src/cpp_module/ginac/ginac/polynomial/mod_gcd.cpp +0 -198
- pythonknot-0.1.5/src/cpp_module/ginac/ginac/polynomial/mod_gcd.h +0 -34
- pythonknot-0.1.5/src/cpp_module/ginac/ginac/polynomial/newton_interpolate.h +0 -60
- pythonknot-0.1.5/src/cpp_module/ginac/ginac/polynomial/normalize.cpp +0 -49
- pythonknot-0.1.5/src/cpp_module/ginac/ginac/polynomial/normalize.h +0 -93
- pythonknot-0.1.5/src/cpp_module/ginac/ginac/polynomial/optimal_vars_finder.cpp +0 -154
- pythonknot-0.1.5/src/cpp_module/ginac/ginac/polynomial/optimal_vars_finder.h +0 -46
- pythonknot-0.1.5/src/cpp_module/ginac/ginac/polynomial/pgcd.cpp +0 -156
- pythonknot-0.1.5/src/cpp_module/ginac/ginac/polynomial/pgcd.h +0 -49
- pythonknot-0.1.5/src/cpp_module/ginac/ginac/polynomial/poly_cra.h +0 -60
- pythonknot-0.1.5/src/cpp_module/ginac/ginac/polynomial/prem_uvar.h +0 -68
- pythonknot-0.1.5/src/cpp_module/ginac/ginac/polynomial/primes_factory.h +0 -82
- pythonknot-0.1.5/src/cpp_module/ginac/ginac/polynomial/primpart_content.cpp +0 -98
- pythonknot-0.1.5/src/cpp_module/ginac/ginac/polynomial/remainder.cpp +0 -87
- pythonknot-0.1.5/src/cpp_module/ginac/ginac/polynomial/remainder.h +0 -84
- pythonknot-0.1.5/src/cpp_module/ginac/ginac/polynomial/ring_traits.h +0 -67
- pythonknot-0.1.5/src/cpp_module/ginac/ginac/polynomial/smod_helpers.h +0 -95
- pythonknot-0.1.5/src/cpp_module/ginac/ginac/polynomial/sr_gcd_uvar.h +0 -117
- pythonknot-0.1.5/src/cpp_module/ginac/ginac/polynomial/upoly.h +0 -182
- pythonknot-0.1.5/src/cpp_module/ginac/ginac/polynomial/upoly_io.cpp +0 -75
- pythonknot-0.1.5/src/cpp_module/ginac/ginac/polynomial/upoly_io.h +0 -37
- pythonknot-0.1.5/src/cpp_module/ginac/ginac/power.cpp +0 -1155
- pythonknot-0.1.5/src/cpp_module/ginac/ginac/power.h +0 -135
- pythonknot-0.1.5/src/cpp_module/ginac/ginac/print.cpp +0 -96
- pythonknot-0.1.5/src/cpp_module/ginac/ginac/print.h +0 -283
- pythonknot-0.1.5/src/cpp_module/ginac/ginac/pseries.cpp +0 -1277
- pythonknot-0.1.5/src/cpp_module/ginac/ginac/pseries.h +0 -148
- pythonknot-0.1.5/src/cpp_module/ginac/ginac/ptr.h +0 -167
- pythonknot-0.1.5/src/cpp_module/ginac/ginac/registrar.cpp +0 -31
- pythonknot-0.1.5/src/cpp_module/ginac/ginac/registrar.h +0 -211
- pythonknot-0.1.5/src/cpp_module/ginac/ginac/relational.cpp +0 -334
- pythonknot-0.1.5/src/cpp_module/ginac/ginac/relational.h +0 -119
- pythonknot-0.1.5/src/cpp_module/ginac/ginac/remember.cpp +0 -190
- pythonknot-0.1.5/src/cpp_module/ginac/ginac/remember.h +0 -101
- pythonknot-0.1.5/src/cpp_module/ginac/ginac/structure.h +0 -247
- pythonknot-0.1.5/src/cpp_module/ginac/ginac/symbol.cpp +0 -364
- pythonknot-0.1.5/src/cpp_module/ginac/ginac/symbol.h +0 -142
- pythonknot-0.1.5/src/cpp_module/ginac/ginac/symmetry.cpp +0 -578
- pythonknot-0.1.5/src/cpp_module/ginac/ginac/symmetry.h +0 -186
- pythonknot-0.1.5/src/cpp_module/ginac/ginac/tensor.cpp +0 -678
- pythonknot-0.1.5/src/cpp_module/ginac/ginac/tensor.h +0 -260
- pythonknot-0.1.5/src/cpp_module/ginac/ginac/utils.cpp +0 -537
- pythonknot-0.1.5/src/cpp_module/ginac/ginac/utils.h +0 -631
- pythonknot-0.1.5/src/cpp_module/ginac/ginac/version.h +0 -95
- pythonknot-0.1.5/src/cpp_module/ginac/ginac/wildcard.cpp +0 -134
- pythonknot-0.1.5/src/cpp_module/ginac/ginac/wildcard.h +0 -82
- pythonknot-0.1.5/src/cpp_module/ginac/ginsh/ginsh.h +0 -74
- pythonknot-0.1.5/src/cpp_module/ginac/ginsh/ginsh_extensions.h +0 -33
- pythonknot-0.1.5/src/cpp_module/ginac/tools/viewgar.cpp +0 -66
- pythonknot-0.1.5/src/cpp_module/ginac-1.8.7/build/CMakeFiles/3.16.3/CompilerIdCXX/CMakeCXXCompilerId.cpp +0 -660
- pythonknot-0.1.5/src/cpp_module/ginac-1.8.7/build/config.h +0 -5
- pythonknot-0.1.5/src/cpp_module/ginac-1.8.7/build/ginac/function.cpp +0 -2291
- pythonknot-0.1.5/src/cpp_module/ginac-1.8.7/build/ginac/function.h +0 -770
- pythonknot-0.1.5/src/cpp_module/ginac-1.8.7/build/ginsh/ginsh_fcn_help.h +0 -227
- pythonknot-0.1.5/src/cpp_module/ginac-1.8.7/build/ginsh/ginsh_lexer.cpp +0 -2213
- pythonknot-0.1.5/src/cpp_module/ginac-1.8.7/build/ginsh/ginsh_op_help.h +0 -15
- pythonknot-0.1.5/src/cpp_module/ginac-1.8.7/build/ginsh/ginsh_parser.cpp +0 -2982
- pythonknot-0.1.5/src/cpp_module/ginac-1.8.7/check/check_cra.cpp +0 -146
- pythonknot-0.1.5/src/cpp_module/ginac-1.8.7/check/check_inifcns.cpp +0 -215
- pythonknot-0.1.5/src/cpp_module/ginac-1.8.7/check/check_lsolve.cpp +0 -208
- pythonknot-0.1.5/src/cpp_module/ginac-1.8.7/check/check_matrices.cpp +0 -228
- pythonknot-0.1.5/src/cpp_module/ginac-1.8.7/check/check_numeric.cpp +0 -128
- pythonknot-0.1.5/src/cpp_module/ginac-1.8.7/check/error_report.h +0 -40
- pythonknot-0.1.5/src/cpp_module/ginac-1.8.7/check/exam_archive.cpp +0 -125
- pythonknot-0.1.5/src/cpp_module/ginac-1.8.7/check/exam_chinrem_gcd.cpp +0 -77
- pythonknot-0.1.5/src/cpp_module/ginac-1.8.7/check/exam_clifford.cpp +0 -666
- pythonknot-0.1.5/src/cpp_module/ginac-1.8.7/check/exam_collect.cpp +0 -152
- pythonknot-0.1.5/src/cpp_module/ginac-1.8.7/check/exam_collect_common_factors.cpp +0 -59
- pythonknot-0.1.5/src/cpp_module/ginac-1.8.7/check/exam_color.cpp +0 -163
- pythonknot-0.1.5/src/cpp_module/ginac-1.8.7/check/exam_differentiation.cpp +0 -282
- pythonknot-0.1.5/src/cpp_module/ginac-1.8.7/check/exam_factor.cpp +0 -338
- pythonknot-0.1.5/src/cpp_module/ginac-1.8.7/check/exam_function_exvector.cpp +0 -116
- pythonknot-0.1.5/src/cpp_module/ginac-1.8.7/check/exam_heur_gcd.cpp +0 -58
- pythonknot-0.1.5/src/cpp_module/ginac-1.8.7/check/exam_indexed.cpp +0 -413
- pythonknot-0.1.5/src/cpp_module/ginac-1.8.7/check/exam_inifcns.cpp +0 -440
- pythonknot-0.1.5/src/cpp_module/ginac-1.8.7/check/exam_inifcns_elliptic.cpp +0 -419
- pythonknot-0.1.5/src/cpp_module/ginac-1.8.7/check/exam_inifcns_nstdsums.cpp +0 -421
- pythonknot-0.1.5/src/cpp_module/ginac-1.8.7/check/exam_inifcns_nstdsums.h +0 -888
- pythonknot-0.1.5/src/cpp_module/ginac-1.8.7/check/exam_lsolve.cpp +0 -209
- pythonknot-0.1.5/src/cpp_module/ginac-1.8.7/check/exam_match.cpp +0 -127
- pythonknot-0.1.5/src/cpp_module/ginac-1.8.7/check/exam_matrices.cpp +0 -405
- pythonknot-0.1.5/src/cpp_module/ginac-1.8.7/check/exam_misc.cpp +0 -320
- pythonknot-0.1.5/src/cpp_module/ginac-1.8.7/check/exam_mod_gcd.cpp +0 -108
- pythonknot-0.1.5/src/cpp_module/ginac-1.8.7/check/exam_normalization.cpp +0 -353
- pythonknot-0.1.5/src/cpp_module/ginac-1.8.7/check/exam_numeric.cpp +0 -403
- pythonknot-0.1.5/src/cpp_module/ginac-1.8.7/check/exam_paranoia.cpp +0 -704
- pythonknot-0.1.5/src/cpp_module/ginac-1.8.7/check/exam_parser.cpp +0 -218
- pythonknot-0.1.5/src/cpp_module/ginac-1.8.7/check/exam_pgcd.cpp +0 -68
- pythonknot-0.1.5/src/cpp_module/ginac-1.8.7/check/exam_polygcd.cpp +0 -255
- pythonknot-0.1.5/src/cpp_module/ginac-1.8.7/check/exam_powerlaws.cpp +0 -341
- pythonknot-0.1.5/src/cpp_module/ginac-1.8.7/check/exam_pseries.cpp +0 -439
- pythonknot-0.1.5/src/cpp_module/ginac-1.8.7/check/exam_real_imag.cpp +0 -82
- pythonknot-0.1.5/src/cpp_module/ginac-1.8.7/check/exam_relational.cpp +0 -151
- pythonknot-0.1.5/src/cpp_module/ginac-1.8.7/check/exam_sqrfree.cpp +0 -243
- pythonknot-0.1.5/src/cpp_module/ginac-1.8.7/check/exam_structure.cpp +0 -102
- pythonknot-0.1.5/src/cpp_module/ginac-1.8.7/check/genex.cpp +0 -157
- pythonknot-0.1.5/src/cpp_module/ginac-1.8.7/check/randomize_serials.cpp +0 -53
- pythonknot-0.1.5/src/cpp_module/ginac-1.8.7/check/test_runner.h +0 -90
- pythonknot-0.1.5/src/cpp_module/ginac-1.8.7/check/time_antipode.cpp +0 -511
- pythonknot-0.1.5/src/cpp_module/ginac-1.8.7/check/time_dennyfliegner.cpp +0 -99
- pythonknot-0.1.5/src/cpp_module/ginac-1.8.7/check/time_fateman_expand.cpp +0 -79
- pythonknot-0.1.5/src/cpp_module/ginac-1.8.7/check/time_gammaseries.cpp +0 -88
- pythonknot-0.1.5/src/cpp_module/ginac-1.8.7/check/time_lw_A.cpp +0 -73
- pythonknot-0.1.5/src/cpp_module/ginac-1.8.7/check/time_lw_B.cpp +0 -73
- pythonknot-0.1.5/src/cpp_module/ginac-1.8.7/check/time_lw_C.cpp +0 -78
- pythonknot-0.1.5/src/cpp_module/ginac-1.8.7/check/time_lw_D.cpp +0 -78
- pythonknot-0.1.5/src/cpp_module/ginac-1.8.7/check/time_lw_E.cpp +0 -78
- pythonknot-0.1.5/src/cpp_module/ginac-1.8.7/check/time_lw_F.cpp +0 -75
- pythonknot-0.1.5/src/cpp_module/ginac-1.8.7/check/time_lw_G.cpp +0 -78
- pythonknot-0.1.5/src/cpp_module/ginac-1.8.7/check/time_lw_H.cpp +0 -90
- pythonknot-0.1.5/src/cpp_module/ginac-1.8.7/check/time_lw_IJKL.cpp +0 -97
- pythonknot-0.1.5/src/cpp_module/ginac-1.8.7/check/time_lw_M1.cpp +0 -109
- pythonknot-0.1.5/src/cpp_module/ginac-1.8.7/check/time_lw_M2.cpp +0 -189
- pythonknot-0.1.5/src/cpp_module/ginac-1.8.7/check/time_lw_N.cpp +0 -93
- pythonknot-0.1.5/src/cpp_module/ginac-1.8.7/check/time_lw_O.cpp +0 -173
- pythonknot-0.1.5/src/cpp_module/ginac-1.8.7/check/time_lw_P.cpp +0 -87
- pythonknot-0.1.5/src/cpp_module/ginac-1.8.7/check/time_lw_Pprime.cpp +0 -101
- pythonknot-0.1.5/src/cpp_module/ginac-1.8.7/check/time_lw_Q.cpp +0 -95
- pythonknot-0.1.5/src/cpp_module/ginac-1.8.7/check/time_lw_Qprime.cpp +0 -107
- pythonknot-0.1.5/src/cpp_module/ginac-1.8.7/check/time_parser.cpp +0 -81
- pythonknot-0.1.5/src/cpp_module/ginac-1.8.7/check/time_toeplitz.cpp +0 -115
- pythonknot-0.1.5/src/cpp_module/ginac-1.8.7/check/time_uvar_gcd.cpp +0 -1911
- pythonknot-0.1.5/src/cpp_module/ginac-1.8.7/check/time_vandermonde.cpp +0 -112
- pythonknot-0.1.5/src/cpp_module/ginac-1.8.7/check/timer.cpp +0 -101
- pythonknot-0.1.5/src/cpp_module/ginac-1.8.7/check/timer.h +0 -53
- pythonknot-0.1.5/src/cpp_module/ginac-1.8.7/config/config.h +0 -89
- pythonknot-0.1.5/src/cpp_module/ginac-1.8.7/doc/examples/archive1.cpp +0 -51
- pythonknot-0.1.5/src/cpp_module/ginac-1.8.7/doc/examples/compile1.cpp +0 -76
- pythonknot-0.1.5/src/cpp_module/ginac-1.8.7/doc/examples/compile2.cpp +0 -67
- pythonknot-0.1.5/src/cpp_module/ginac-1.8.7/doc/examples/compile3.cpp +0 -43
- pythonknot-0.1.5/src/cpp_module/ginac-1.8.7/doc/examples/derivative.cpp +0 -34
- pythonknot-0.1.5/src/cpp_module/ginac-1.8.7/doc/examples/lanczos.cpp +0 -239
- pythonknot-0.1.5/src/cpp_module/ginac-1.8.7/doc/examples/mystring.cpp +0 -86
- pythonknot-0.1.5/src/cpp_module/ginac-1.8.7/ginac/add.cpp +0 -581
- pythonknot-0.1.5/src/cpp_module/ginac-1.8.7/ginac/add.h +0 -93
- pythonknot-0.1.5/src/cpp_module/ginac-1.8.7/ginac/archive.cpp +0 -689
- pythonknot-0.1.5/src/cpp_module/ginac-1.8.7/ginac/archive.h +0 -346
- pythonknot-0.1.5/src/cpp_module/ginac-1.8.7/ginac/assertion.h +0 -37
- pythonknot-0.1.5/src/cpp_module/ginac-1.8.7/ginac/basic.cpp +0 -927
- pythonknot-0.1.5/src/cpp_module/ginac-1.8.7/ginac/basic.h +0 -352
- pythonknot-0.1.5/src/cpp_module/ginac-1.8.7/ginac/class_info.h +0 -198
- pythonknot-0.1.5/src/cpp_module/ginac-1.8.7/ginac/clifford.cpp +0 -1409
- pythonknot-0.1.5/src/cpp_module/ginac-1.8.7/ginac/clifford.h +0 -374
- pythonknot-0.1.5/src/cpp_module/ginac-1.8.7/ginac/color.cpp +0 -639
- pythonknot-0.1.5/src/cpp_module/ginac-1.8.7/ginac/color.h +0 -198
- pythonknot-0.1.5/src/cpp_module/ginac-1.8.7/ginac/compiler.h +0 -36
- pythonknot-0.1.5/src/cpp_module/ginac-1.8.7/ginac/constant.cpp +0 -258
- pythonknot-0.1.5/src/cpp_module/ginac-1.8.7/ginac/constant.h +0 -88
- pythonknot-0.1.5/src/cpp_module/ginac-1.8.7/ginac/container.h +0 -509
- pythonknot-0.1.5/src/cpp_module/ginac-1.8.7/ginac/crc32.h +0 -76
- pythonknot-0.1.5/src/cpp_module/ginac-1.8.7/ginac/ex.cpp +0 -578
- pythonknot-0.1.5/src/cpp_module/ginac-1.8.7/ginac/ex.h +0 -1018
- pythonknot-0.1.5/src/cpp_module/ginac-1.8.7/ginac/excompiler.cpp +0 -360
- pythonknot-0.1.5/src/cpp_module/ginac-1.8.7/ginac/excompiler.h +0 -127
- pythonknot-0.1.5/src/cpp_module/ginac-1.8.7/ginac/expair.cpp +0 -48
- pythonknot-0.1.5/src/cpp_module/ginac-1.8.7/ginac/expair.h +0 -116
- pythonknot-0.1.5/src/cpp_module/ginac-1.8.7/ginac/expairseq.cpp +0 -1175
- pythonknot-0.1.5/src/cpp_module/ginac-1.8.7/ginac/expairseq.h +0 -187
- pythonknot-0.1.5/src/cpp_module/ginac-1.8.7/ginac/exprseq.cpp +0 -46
- pythonknot-0.1.5/src/cpp_module/ginac-1.8.7/ginac/exprseq.h +0 -44
- pythonknot-0.1.5/src/cpp_module/ginac-1.8.7/ginac/factor.cpp +0 -2589
- pythonknot-0.1.5/src/cpp_module/ginac-1.8.7/ginac/factor.h +0 -46
- pythonknot-0.1.5/src/cpp_module/ginac-1.8.7/ginac/fail.cpp +0 -54
- pythonknot-0.1.5/src/cpp_module/ginac-1.8.7/ginac/fail.h +0 -48
- pythonknot-0.1.5/src/cpp_module/ginac-1.8.7/ginac/fderivative.cpp +0 -252
- pythonknot-0.1.5/src/cpp_module/ginac-1.8.7/ginac/fderivative.h +0 -91
- pythonknot-0.1.5/src/cpp_module/ginac-1.8.7/ginac/flags.h +0 -309
- pythonknot-0.1.5/src/cpp_module/ginac-1.8.7/ginac/function.cpp +0 -2291
- pythonknot-0.1.5/src/cpp_module/ginac-1.8.7/ginac/function.h +0 -770
- pythonknot-0.1.5/src/cpp_module/ginac-1.8.7/ginac/ginac.h +0 -81
- pythonknot-0.1.5/src/cpp_module/ginac-1.8.7/ginac/hash_map.h +0 -38
- pythonknot-0.1.5/src/cpp_module/ginac-1.8.7/ginac/hash_seed.h +0 -54
- pythonknot-0.1.5/src/cpp_module/ginac-1.8.7/ginac/idx.cpp +0 -574
- pythonknot-0.1.5/src/cpp_module/ginac-1.8.7/ginac/idx.h +0 -274
- pythonknot-0.1.5/src/cpp_module/ginac-1.8.7/ginac/indexed.cpp +0 -1578
- pythonknot-0.1.5/src/cpp_module/ginac-1.8.7/ginac/indexed.h +0 -278
- pythonknot-0.1.5/src/cpp_module/ginac-1.8.7/ginac/inifcns.cpp +0 -1292
- pythonknot-0.1.5/src/cpp_module/ginac-1.8.7/ginac/inifcns.h +0 -241
- pythonknot-0.1.5/src/cpp_module/ginac-1.8.7/ginac/inifcns_elliptic.cpp +0 -632
- pythonknot-0.1.5/src/cpp_module/ginac-1.8.7/ginac/inifcns_gamma.cpp +0 -589
- pythonknot-0.1.5/src/cpp_module/ginac-1.8.7/ginac/inifcns_nstdsums.cpp +0 -4164
- pythonknot-0.1.5/src/cpp_module/ginac-1.8.7/ginac/inifcns_trans.cpp +0 -1687
- pythonknot-0.1.5/src/cpp_module/ginac-1.8.7/ginac/integral.cpp +0 -449
- pythonknot-0.1.5/src/cpp_module/ginac-1.8.7/ginac/integral.h +0 -96
- pythonknot-0.1.5/src/cpp_module/ginac-1.8.7/ginac/integration_kernel.cpp +0 -2148
- pythonknot-0.1.5/src/cpp_module/ginac-1.8.7/ginac/integration_kernel.h +0 -669
- pythonknot-0.1.5/src/cpp_module/ginac-1.8.7/ginac/lst.cpp +0 -44
- pythonknot-0.1.5/src/cpp_module/ginac-1.8.7/ginac/lst.h +0 -55
- pythonknot-0.1.5/src/cpp_module/ginac-1.8.7/ginac/matrix.cpp +0 -1838
- pythonknot-0.1.5/src/cpp_module/ginac-1.8.7/ginac/matrix.h +0 -195
- pythonknot-0.1.5/src/cpp_module/ginac-1.8.7/ginac/mul.cpp +0 -1296
- pythonknot-0.1.5/src/cpp_module/ginac-1.8.7/ginac/mul.h +0 -108
- pythonknot-0.1.5/src/cpp_module/ginac-1.8.7/ginac/ncmul.cpp +0 -626
- pythonknot-0.1.5/src/cpp_module/ginac-1.8.7/ginac/ncmul.h +0 -99
- pythonknot-0.1.5/src/cpp_module/ginac-1.8.7/ginac/normal.cpp +0 -2909
- pythonknot-0.1.5/src/cpp_module/ginac-1.8.7/ginac/normal.h +0 -108
- pythonknot-0.1.5/src/cpp_module/ginac-1.8.7/ginac/numeric.cpp +0 -2593
- pythonknot-0.1.5/src/cpp_module/ginac-1.8.7/ginac/numeric.h +0 -332
- pythonknot-0.1.5/src/cpp_module/ginac-1.8.7/ginac/operators.cpp +0 -510
- pythonknot-0.1.5/src/cpp_module/ginac-1.8.7/ginac/operators.h +0 -104
- pythonknot-0.1.5/src/cpp_module/ginac-1.8.7/ginac/parser/debug.h +0 -72
- pythonknot-0.1.5/src/cpp_module/ginac-1.8.7/ginac/parser/default_reader.cpp +0 -157
- pythonknot-0.1.5/src/cpp_module/ginac-1.8.7/ginac/parser/lexer.cpp +0 -180
- pythonknot-0.1.5/src/cpp_module/ginac-1.8.7/ginac/parser/lexer.h +0 -70
- pythonknot-0.1.5/src/cpp_module/ginac-1.8.7/ginac/parser/parse_binop_rhs.cpp +0 -215
- pythonknot-0.1.5/src/cpp_module/ginac-1.8.7/ginac/parser/parse_context.cpp +0 -47
- pythonknot-0.1.5/src/cpp_module/ginac-1.8.7/ginac/parser/parse_context.h +0 -121
- pythonknot-0.1.5/src/cpp_module/ginac-1.8.7/ginac/parser/parser.cpp +0 -243
- pythonknot-0.1.5/src/cpp_module/ginac-1.8.7/ginac/parser/parser.h +0 -137
- pythonknot-0.1.5/src/cpp_module/ginac-1.8.7/ginac/parser/parser_compat.cpp +0 -69
- pythonknot-0.1.5/src/cpp_module/ginac-1.8.7/ginac/polynomial/chinrem_gcd.cpp +0 -35
- pythonknot-0.1.5/src/cpp_module/ginac-1.8.7/ginac/polynomial/chinrem_gcd.h +0 -40
- pythonknot-0.1.5/src/cpp_module/ginac-1.8.7/ginac/polynomial/collect_vargs.cpp +0 -206
- pythonknot-0.1.5/src/cpp_module/ginac-1.8.7/ginac/polynomial/collect_vargs.h +0 -88
- pythonknot-0.1.5/src/cpp_module/ginac-1.8.7/ginac/polynomial/cra_garner.cpp +0 -113
- pythonknot-0.1.5/src/cpp_module/ginac-1.8.7/ginac/polynomial/cra_garner.h +0 -36
- pythonknot-0.1.5/src/cpp_module/ginac-1.8.7/ginac/polynomial/debug.h +0 -53
- pythonknot-0.1.5/src/cpp_module/ginac-1.8.7/ginac/polynomial/divide_in_z_p.cpp +0 -112
- pythonknot-0.1.5/src/cpp_module/ginac-1.8.7/ginac/polynomial/divide_in_z_p.h +0 -48
- pythonknot-0.1.5/src/cpp_module/ginac-1.8.7/ginac/polynomial/euclid_gcd_wrap.h +0 -82
- pythonknot-0.1.5/src/cpp_module/ginac-1.8.7/ginac/polynomial/eval_point_finder.h +0 -73
- pythonknot-0.1.5/src/cpp_module/ginac-1.8.7/ginac/polynomial/eval_uvar.h +0 -59
- pythonknot-0.1.5/src/cpp_module/ginac-1.8.7/ginac/polynomial/gcd_euclid.h +0 -66
- pythonknot-0.1.5/src/cpp_module/ginac-1.8.7/ginac/polynomial/gcd_uvar.cpp +0 -54
- pythonknot-0.1.5/src/cpp_module/ginac-1.8.7/ginac/polynomial/heur_gcd_uvar.h +0 -88
- pythonknot-0.1.5/src/cpp_module/ginac-1.8.7/ginac/polynomial/interpolate_padic_uvar.h +0 -61
- pythonknot-0.1.5/src/cpp_module/ginac-1.8.7/ginac/polynomial/mgcd.cpp +0 -132
- pythonknot-0.1.5/src/cpp_module/ginac-1.8.7/ginac/polynomial/mod_gcd.cpp +0 -198
- pythonknot-0.1.5/src/cpp_module/ginac-1.8.7/ginac/polynomial/mod_gcd.h +0 -34
- pythonknot-0.1.5/src/cpp_module/ginac-1.8.7/ginac/polynomial/newton_interpolate.h +0 -60
- pythonknot-0.1.5/src/cpp_module/ginac-1.8.7/ginac/polynomial/normalize.cpp +0 -49
- pythonknot-0.1.5/src/cpp_module/ginac-1.8.7/ginac/polynomial/normalize.h +0 -93
- pythonknot-0.1.5/src/cpp_module/ginac-1.8.7/ginac/polynomial/optimal_vars_finder.cpp +0 -154
- pythonknot-0.1.5/src/cpp_module/ginac-1.8.7/ginac/polynomial/optimal_vars_finder.h +0 -46
- pythonknot-0.1.5/src/cpp_module/ginac-1.8.7/ginac/polynomial/pgcd.cpp +0 -156
- pythonknot-0.1.5/src/cpp_module/ginac-1.8.7/ginac/polynomial/pgcd.h +0 -49
- pythonknot-0.1.5/src/cpp_module/ginac-1.8.7/ginac/polynomial/poly_cra.h +0 -60
- pythonknot-0.1.5/src/cpp_module/ginac-1.8.7/ginac/polynomial/prem_uvar.h +0 -68
- pythonknot-0.1.5/src/cpp_module/ginac-1.8.7/ginac/polynomial/primes_factory.h +0 -82
- pythonknot-0.1.5/src/cpp_module/ginac-1.8.7/ginac/polynomial/primpart_content.cpp +0 -98
- pythonknot-0.1.5/src/cpp_module/ginac-1.8.7/ginac/polynomial/remainder.cpp +0 -87
- pythonknot-0.1.5/src/cpp_module/ginac-1.8.7/ginac/polynomial/remainder.h +0 -84
- pythonknot-0.1.5/src/cpp_module/ginac-1.8.7/ginac/polynomial/ring_traits.h +0 -67
- pythonknot-0.1.5/src/cpp_module/ginac-1.8.7/ginac/polynomial/smod_helpers.h +0 -95
- pythonknot-0.1.5/src/cpp_module/ginac-1.8.7/ginac/polynomial/sr_gcd_uvar.h +0 -117
- pythonknot-0.1.5/src/cpp_module/ginac-1.8.7/ginac/polynomial/upoly.h +0 -182
- pythonknot-0.1.5/src/cpp_module/ginac-1.8.7/ginac/polynomial/upoly_io.cpp +0 -75
- pythonknot-0.1.5/src/cpp_module/ginac-1.8.7/ginac/polynomial/upoly_io.h +0 -37
- pythonknot-0.1.5/src/cpp_module/ginac-1.8.7/ginac/power.cpp +0 -1156
- pythonknot-0.1.5/src/cpp_module/ginac-1.8.7/ginac/power.h +0 -135
- pythonknot-0.1.5/src/cpp_module/ginac-1.8.7/ginac/print.cpp +0 -96
- pythonknot-0.1.5/src/cpp_module/ginac-1.8.7/ginac/print.h +0 -283
- pythonknot-0.1.5/src/cpp_module/ginac-1.8.7/ginac/pseries.cpp +0 -1290
- pythonknot-0.1.5/src/cpp_module/ginac-1.8.7/ginac/pseries.h +0 -148
- pythonknot-0.1.5/src/cpp_module/ginac-1.8.7/ginac/ptr.h +0 -167
- pythonknot-0.1.5/src/cpp_module/ginac-1.8.7/ginac/registrar.cpp +0 -31
- pythonknot-0.1.5/src/cpp_module/ginac-1.8.7/ginac/registrar.h +0 -211
- pythonknot-0.1.5/src/cpp_module/ginac-1.8.7/ginac/relational.cpp +0 -358
- pythonknot-0.1.5/src/cpp_module/ginac-1.8.7/ginac/relational.h +0 -121
- pythonknot-0.1.5/src/cpp_module/ginac-1.8.7/ginac/remember.cpp +0 -190
- pythonknot-0.1.5/src/cpp_module/ginac-1.8.7/ginac/remember.h +0 -101
- pythonknot-0.1.5/src/cpp_module/ginac-1.8.7/ginac/structure.h +0 -247
- pythonknot-0.1.5/src/cpp_module/ginac-1.8.7/ginac/symbol.cpp +0 -364
- pythonknot-0.1.5/src/cpp_module/ginac-1.8.7/ginac/symbol.h +0 -142
- pythonknot-0.1.5/src/cpp_module/ginac-1.8.7/ginac/symmetry.cpp +0 -578
- pythonknot-0.1.5/src/cpp_module/ginac-1.8.7/ginac/symmetry.h +0 -186
- pythonknot-0.1.5/src/cpp_module/ginac-1.8.7/ginac/tensor.cpp +0 -678
- pythonknot-0.1.5/src/cpp_module/ginac-1.8.7/ginac/tensor.h +0 -260
- pythonknot-0.1.5/src/cpp_module/ginac-1.8.7/ginac/utils.cpp +0 -542
- pythonknot-0.1.5/src/cpp_module/ginac-1.8.7/ginac/utils.h +0 -631
- pythonknot-0.1.5/src/cpp_module/ginac-1.8.7/ginac/utils_multi_iterator.h +0 -1488
- pythonknot-0.1.5/src/cpp_module/ginac-1.8.7/ginac/version.h +0 -98
- pythonknot-0.1.5/src/cpp_module/ginac-1.8.7/ginac/wildcard.cpp +0 -134
- pythonknot-0.1.5/src/cpp_module/ginac-1.8.7/ginac/wildcard.h +0 -82
- pythonknot-0.1.5/src/cpp_module/ginac-1.8.7/ginsh/ginsh.h +0 -70
- pythonknot-0.1.5/src/cpp_module/ginac-1.8.7/ginsh/ginsh_extensions.h +0 -33
- pythonknot-0.1.5/src/cpp_module/ginac-1.8.7/ginsh/ginsh_lexer.cpp +0 -2212
- pythonknot-0.1.5/src/cpp_module/ginac-1.8.7/ginsh/ginsh_parser.cpp +0 -2733
- pythonknot-0.1.5/src/cpp_module/ginac-1.8.7/tools/viewgar.cpp +0 -66
- pythonknot-0.1.5/src/cpp_module/src/knot.cpp +0 -139
- pythonknot-0.1.5/src/cpp_module/src/knot.h +0 -50
- pythonknot-0.1.5/src/cpp_module/src/knot_alex_table.h +0 -91
- pythonknot-0.1.5/src/cpp_module/src/knottype.cpp +0 -525
- pythonknot-0.1.5/src/cpp_module/src/knottype.h +0 -22
- pythonknot-0.1.5/src/cpp_module/src/main.cpp +0 -108
- pythonknot-0.1.5/src/cpp_module/src/my_function.cpp +0 -636
- pythonknot-0.1.5/src/cpp_module/src/myfunction.h +0 -65
- pythonknot-0.1.5/src/pythonknot/__init__.py +0 -0
- pythonknot-0.1.5/src/pythonknot.egg-info/SOURCES.txt +0 -1080
- pythonknot-0.1.5/src/pythonknot.egg-info/requires.txt +0 -6
- pythonknot-0.1.5/test/test.py +0 -7
- pythonknot-0.1.5/test/test2.py +0 -5
- {pythonknot-0.1.5 → pythonknot-0.2.0}/setup.cfg +0 -0
- {pythonknot-0.1.5 → pythonknot-0.2.0}/src/pythonknot/polymer.py +0 -0
- {pythonknot-0.1.5 → pythonknot-0.2.0}/src/pythonknot/rmsd.py +0 -0
- {pythonknot-0.1.5 → pythonknot-0.2.0}/src/pythonknot.egg-info/dependency_links.txt +0 -0
- {pythonknot-0.1.5 → pythonknot-0.2.0}/src/pythonknot.egg-info/not-zip-safe +0 -0
- {pythonknot-0.1.5 → pythonknot-0.2.0}/src/pythonknot.egg-info/top_level.txt +0 -0
|
@@ -1,12 +1,17 @@
|
|
|
1
|
-
Metadata-Version: 2.
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
2
|
Name: pythonknot
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.2.0
|
|
4
4
|
Summary: pythonknot for knot theory calculation
|
|
5
5
|
Home-page:
|
|
6
6
|
Author: yjianzhu
|
|
7
7
|
Author-email: yjianzhu@mail.ustc.edu.cn
|
|
8
|
-
|
|
9
|
-
|
|
8
|
+
Requires-Dist: numpy
|
|
9
|
+
Requires-Dist: scipy
|
|
10
|
+
Requires-Dist: rmsd
|
|
11
|
+
Dynamic: author
|
|
12
|
+
Dynamic: author-email
|
|
13
|
+
Dynamic: description
|
|
14
|
+
Dynamic: requires-dist
|
|
15
|
+
Dynamic: summary
|
|
10
16
|
|
|
11
17
|
Python Knot is a Python package for creating and manipulating knots and links, calculating knot invariants, and more.
|
|
12
|
-
|
|
@@ -0,0 +1,101 @@
|
|
|
1
|
+
# Python Knot package: pythonknot
|
|
2
|
+
|
|
3
|
+
Python Knot is a package for creating and manipulating knots and links.
|
|
4
|
+
|
|
5
|
+
## 1. Installation
|
|
6
|
+
|
|
7
|
+
Python 3.8+ is required.
|
|
8
|
+
|
|
9
|
+
```bash
|
|
10
|
+
pip install pythonknot
|
|
11
|
+
```
|
|
12
|
+
|
|
13
|
+
### 1.1 Alexander backend (Rust + PyO3)
|
|
14
|
+
|
|
15
|
+
`pythonknot.alexander_poly` uses the Rust native backend.
|
|
16
|
+
|
|
17
|
+
- packaged table: installed with wheel at `pythonknot/data/table_knot_Alexander_polynomial.txt` and auto-used on import
|
|
18
|
+
- legacy fallback path: `~/.local/share/rust_knot/table_knot_Alexander_polynomial.txt`
|
|
19
|
+
- override table: `PYTHONKNOT_ALEXANDER_TABLE=/path/to/table.txt`
|
|
20
|
+
|
|
21
|
+
`homfly` C/C++ extension is removed from build; wheels now contain only the Rust backend.
|
|
22
|
+
|
|
23
|
+
## 2. API Summary (`pythonknot.alexander_poly`)
|
|
24
|
+
|
|
25
|
+
- `read_xyz(filename) -> np.ndarray[F, N, 3]`
|
|
26
|
+
- `read_pdb(filename, atom_filter="all") -> np.ndarray[F, N, 3]`
|
|
27
|
+
- `write_xyz(filename, input_data, append=False) -> None`
|
|
28
|
+
- `knot_type(input_data, chain_type="ring", threads=None) -> List[str]`
|
|
29
|
+
- `knot_size(input_data, chain_type="ring", threads=None) -> Tuple[List[str], List[List[int]]]`
|
|
30
|
+
- `kmt(input_data, chain_type="ring") -> np.ndarray[N2, 3]`
|
|
31
|
+
|
|
32
|
+
Notes:
|
|
33
|
+
- `input_data` can be XYZ path (`str`), `(N,3)` array, or `(F,N,3)` array for `knot_type` / `knot_size`.
|
|
34
|
+
- `read_pdb(..., atom_filter="all")` supports `"all"` and `"ca"`.
|
|
35
|
+
- `kmt` requires a `(N,3)` array.
|
|
36
|
+
- `threads=None` means single-thread path; `threads>1` enables rayon parallel processing.
|
|
37
|
+
- `knot_type` and `knot_size` release Python GIL during heavy Rust computation.
|
|
38
|
+
|
|
39
|
+
## 3. Usage
|
|
40
|
+
|
|
41
|
+
```python
|
|
42
|
+
import numpy as np
|
|
43
|
+
import pythonknot.alexander_poly as alexander_poly
|
|
44
|
+
|
|
45
|
+
positions = alexander_poly.read_xyz("test/traj_knot31_L300_close.txt")
|
|
46
|
+
print(positions.shape)
|
|
47
|
+
|
|
48
|
+
# knot type
|
|
49
|
+
types_ring = alexander_poly.knot_type(positions, chain_type="ring", threads=8)
|
|
50
|
+
types_open = alexander_poly.knot_type(positions, chain_type="open", threads=8)
|
|
51
|
+
print(types_ring[:5])
|
|
52
|
+
|
|
53
|
+
# knot size
|
|
54
|
+
types, sizes = alexander_poly.knot_size(positions[:100], chain_type="ring", threads=8)
|
|
55
|
+
print(types[:3], sizes[:3])
|
|
56
|
+
|
|
57
|
+
# KMT simplification for one frame (N,3)
|
|
58
|
+
simplified = alexander_poly.kmt(positions[0], chain_type="ring")
|
|
59
|
+
print(simplified.shape)
|
|
60
|
+
|
|
61
|
+
# write (overwrite by default)
|
|
62
|
+
alexander_poly.write_xyz("out.xyz", positions, append=False)
|
|
63
|
+
|
|
64
|
+
# append frames
|
|
65
|
+
alexander_poly.write_xyz("out.xyz", positions[:10], append=True)
|
|
66
|
+
|
|
67
|
+
# read PDB trajectory directly
|
|
68
|
+
pdb_all = alexander_poly.read_pdb("output.pdb", atom_filter="all")
|
|
69
|
+
pdb_ca = alexander_poly.read_pdb("output.pdb", atom_filter="ca")
|
|
70
|
+
print(pdb_all.shape, pdb_ca.shape)
|
|
71
|
+
```
|
|
72
|
+
|
|
73
|
+
## 4. PDB reading
|
|
74
|
+
|
|
75
|
+
Use `pythonknot.alexander_poly.read_pdb(...)` directly.
|
|
76
|
+
|
|
77
|
+
## 5. Cross-platform wheel build
|
|
78
|
+
|
|
79
|
+
Build is platform-native and Rust-only.
|
|
80
|
+
|
|
81
|
+
Linux (manylinux, cp38-cp314):
|
|
82
|
+
```bash
|
|
83
|
+
./compile_chain.sh
|
|
84
|
+
```
|
|
85
|
+
|
|
86
|
+
macOS arm64 (run on macOS arm64 host):
|
|
87
|
+
```bash
|
|
88
|
+
for py in python3.8 python3.9 python3.10 python3.11 python3.12 python3.13 python3.14; do
|
|
89
|
+
"$py" -m pip install -U pip setuptools wheel
|
|
90
|
+
"$py" setup.py bdist_wheel
|
|
91
|
+
done
|
|
92
|
+
```
|
|
93
|
+
|
|
94
|
+
Windows x64 (PowerShell, run on Windows host):
|
|
95
|
+
```powershell
|
|
96
|
+
$versions = @("3.8","3.9","3.10","3.11","3.12","3.13","3.14")
|
|
97
|
+
foreach ($v in $versions) {
|
|
98
|
+
py -$v -m pip install -U pip setuptools wheel
|
|
99
|
+
py -$v setup.py bdist_wheel
|
|
100
|
+
}
|
|
101
|
+
```
|
|
@@ -0,0 +1,102 @@
|
|
|
1
|
+
import setuptools
|
|
2
|
+
|
|
3
|
+
import os
|
|
4
|
+
import shutil
|
|
5
|
+
import subprocess
|
|
6
|
+
import sys
|
|
7
|
+
from pathlib import Path
|
|
8
|
+
|
|
9
|
+
from setuptools import Extension
|
|
10
|
+
from setuptools.command.build_ext import build_ext
|
|
11
|
+
|
|
12
|
+
class RustPyo3Extension(Extension):
|
|
13
|
+
def __init__(self, name: str, manifest_path: str, crate_name: str) -> None:
|
|
14
|
+
super().__init__(name, sources=[])
|
|
15
|
+
self.manifest_path = os.fspath(Path(manifest_path).resolve())
|
|
16
|
+
self.crate_name = crate_name
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
class RustBuild(build_ext):
|
|
20
|
+
def build_extension(self, ext: Extension) -> None:
|
|
21
|
+
if not isinstance(ext, RustPyo3Extension):
|
|
22
|
+
raise RuntimeError(f"Unsupported extension type: {type(ext)!r}")
|
|
23
|
+
self._build_rust_extension(ext)
|
|
24
|
+
|
|
25
|
+
def _build_rust_extension(self, ext: RustPyo3Extension) -> None:
|
|
26
|
+
ext_fullpath = Path.cwd() / self.get_ext_fullpath(ext.name)
|
|
27
|
+
ext_fullpath.parent.mkdir(parents=True, exist_ok=True)
|
|
28
|
+
|
|
29
|
+
debug = int(os.environ.get("DEBUG", 0)) if self.debug is None else self.debug
|
|
30
|
+
|
|
31
|
+
cargo_target_dir = (Path(self.build_temp) / "rust_cargo_target").resolve()
|
|
32
|
+
cargo_target_dir.mkdir(parents=True, exist_ok=True)
|
|
33
|
+
cargo_tmp_dir = cargo_target_dir / "tmp"
|
|
34
|
+
cargo_tmp_dir.mkdir(parents=True, exist_ok=True)
|
|
35
|
+
|
|
36
|
+
env = os.environ.copy()
|
|
37
|
+
env["PYO3_PYTHON"] = sys.executable
|
|
38
|
+
env["CARGO_TARGET_DIR"] = str(cargo_target_dir)
|
|
39
|
+
env["TMPDIR"] = str(cargo_tmp_dir)
|
|
40
|
+
if sys.platform.startswith("darwin"):
|
|
41
|
+
mac_link_args = "-C link-arg=-undefined -C link-arg=dynamic_lookup"
|
|
42
|
+
env["RUSTFLAGS"] = f"{env.get('RUSTFLAGS', '')} {mac_link_args}".strip()
|
|
43
|
+
|
|
44
|
+
cargo_cmd = [
|
|
45
|
+
"cargo",
|
|
46
|
+
"build",
|
|
47
|
+
"--manifest-path",
|
|
48
|
+
ext.manifest_path,
|
|
49
|
+
"--features",
|
|
50
|
+
"python",
|
|
51
|
+
]
|
|
52
|
+
if not debug:
|
|
53
|
+
cargo_cmd.append("--release")
|
|
54
|
+
|
|
55
|
+
subprocess.run(cargo_cmd, env=env, check=True)
|
|
56
|
+
|
|
57
|
+
profile = "debug" if debug else "release"
|
|
58
|
+
if sys.platform.startswith("linux"):
|
|
59
|
+
lib_name = f"lib{ext.crate_name}.so"
|
|
60
|
+
elif sys.platform.startswith("darwin"):
|
|
61
|
+
lib_name = f"lib{ext.crate_name}.dylib"
|
|
62
|
+
elif sys.platform == "win32":
|
|
63
|
+
lib_name = f"{ext.crate_name}.dll"
|
|
64
|
+
else:
|
|
65
|
+
raise RuntimeError(f"Unsupported platform: {sys.platform}")
|
|
66
|
+
|
|
67
|
+
built_lib = cargo_target_dir / profile / lib_name
|
|
68
|
+
if not built_lib.exists():
|
|
69
|
+
raise RuntimeError(f"Rust extension build output not found: {built_lib}")
|
|
70
|
+
|
|
71
|
+
shutil.copyfile(built_lib, ext_fullpath)
|
|
72
|
+
|
|
73
|
+
setuptools.setup(
|
|
74
|
+
name="pythonknot",
|
|
75
|
+
version="0.2.0",
|
|
76
|
+
author="yjianzhu",
|
|
77
|
+
author_email="yjianzhu@mail.ustc.edu.cn",
|
|
78
|
+
description="pythonknot for knot theory calculation",
|
|
79
|
+
long_description="Python Knot is a Python package for creating and manipulating knots and links, calculating knot invariants, and more.",
|
|
80
|
+
url="",
|
|
81
|
+
ext_modules=[
|
|
82
|
+
RustPyo3Extension(
|
|
83
|
+
name="pythonknot.alexander_poly",
|
|
84
|
+
manifest_path="vendor/rust_knot/Cargo.toml",
|
|
85
|
+
crate_name="rust_knot",
|
|
86
|
+
),
|
|
87
|
+
],
|
|
88
|
+
cmdclass={"build_ext": RustBuild},
|
|
89
|
+
|
|
90
|
+
packages=setuptools.find_packages(where='src'),
|
|
91
|
+
package_dir={"": "src"},
|
|
92
|
+
package_data={
|
|
93
|
+
"pythonknot": ["data/table_knot_Alexander_polynomial.txt"],
|
|
94
|
+
},
|
|
95
|
+
zip_safe=False,
|
|
96
|
+
install_requires=[
|
|
97
|
+
'numpy',
|
|
98
|
+
'scipy',
|
|
99
|
+
'rmsd'
|
|
100
|
+
],
|
|
101
|
+
include_package_data=True,
|
|
102
|
+
)
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import os
|
|
2
|
+
from pathlib import Path
|
|
3
|
+
|
|
4
|
+
|
|
5
|
+
_TABLE_ENV = "PYTHONKNOT_ALEXANDER_TABLE"
|
|
6
|
+
_TABLE_NAME = "table_knot_Alexander_polynomial.txt"
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
def _configure_default_alexander_table() -> None:
|
|
10
|
+
if os.environ.get(_TABLE_ENV):
|
|
11
|
+
return
|
|
12
|
+
|
|
13
|
+
packaged_table = Path(__file__).resolve().parent / "data" / _TABLE_NAME
|
|
14
|
+
if packaged_table.exists():
|
|
15
|
+
os.environ[_TABLE_ENV] = str(packaged_table)
|
|
16
|
+
|
|
17
|
+
|
|
18
|
+
_configure_default_alexander_table()
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
# Package data module for bundled runtime resources.
|
|
@@ -0,0 +1,251 @@
|
|
|
1
|
+
1 1
|
|
2
|
+
3_1 -1+t-t^2
|
|
3
|
+
4_1 -1+3*t-t^2
|
|
4
|
+
5_1 1-t+t^2-t^3+t^4
|
|
5
|
+
5_2 2-3*t+2*t^2
|
|
6
|
+
6_1 -2+5*t-2*t^2
|
|
7
|
+
6_2 1-3*t+3*t^2-3*t^3+t^4
|
|
8
|
+
6_3 1-3*t+5*t^2-3*t^3+t^4
|
|
9
|
+
7_1 1-t+t^2-t^3+t^4-t^5+t^6
|
|
10
|
+
7_2 3-5*t+3*t^2
|
|
11
|
+
7_3 2-3*t+3*t^2-3*t^3+2*t^4
|
|
12
|
+
7_4 4-7*t+4*t^2
|
|
13
|
+
7_5 2-4*t+5*t^2-4*t^3+2*t^4
|
|
14
|
+
7_6 1-5*t+7*t^2-5*t^3+t^4
|
|
15
|
+
7_7 1-5*t+9*t^2-5*t^3+t^4
|
|
16
|
+
8_1 3-7*t+3*t^2
|
|
17
|
+
8_2 1-3*t+3*t^2-3*t^3+3*t^4-3*t^5+t^6
|
|
18
|
+
8_3 4-9*t+4*t^2
|
|
19
|
+
8_4 2-5*t+5*t^2-5*t^3+2*t^4
|
|
20
|
+
8_5 1-3*t+4*t^2-5*t^3+4*t^4-3*t^5+t^6
|
|
21
|
+
8_6 2-6*t+7*t^2-6*t^3+2*t^4
|
|
22
|
+
8_7 1-3*t+5*t^2-5*t^3+5*t^4-3*t^5+t^6
|
|
23
|
+
8_8 2-6*t+9*t^2-6*t^3+2*t^4
|
|
24
|
+
8_9 1-3*t+5*t^2-7*t^3+5*t^4-3*t^5+t^6
|
|
25
|
+
8_10 1-3*t+6*t^2-7*t^3+6*t^4-3*t^5+t^6
|
|
26
|
+
8_11 2-7*t+9*t^2-7*t^3+2*t^4
|
|
27
|
+
8_12 1-7*t+13*t^2-7*t^3+t^4
|
|
28
|
+
8_13 2-7*t+11*t^2-7*t^3+2*t^4
|
|
29
|
+
8_14 2-8*t+11*t^2-8*t^3+2*t^4
|
|
30
|
+
8_15 3-8*t+11*t^2-8*t^3+3*t^4
|
|
31
|
+
8_16 1-4*t+8*t^2-9*t^3+8*t^4-4*t^5+t^6
|
|
32
|
+
8_17 1-4*t+8*t^2-11*t^3+8*t^4-4*t^5+t^6
|
|
33
|
+
8_18 1-5*t+10*t^2-13*t^3+10*t^4-5*t^5+t^6
|
|
34
|
+
8_19 1-t+t^3-t^5+t^6
|
|
35
|
+
8_20 1-2*t+3*t^2-2*t^3+t^4
|
|
36
|
+
8_21 1-4*t+5*t^2-4*t^3+t^4
|
|
37
|
+
9_1 1-t+t^2-t^3+t^4-t^5+t^6-t^7+t^8
|
|
38
|
+
9_2 4-7*t+4*t^2
|
|
39
|
+
9_3 2-3*t+3*t^2-3*t^3+3*t^4-3*t^5+2*t^6
|
|
40
|
+
9_4 3-5*t+5*t^2-5*t^3+3*t^4
|
|
41
|
+
9_5 6-11*t+6*t^2
|
|
42
|
+
9_6 2-4*t+5*t^2-5*t^3+5*t^4-4*t^5+2*t^6
|
|
43
|
+
9_7 3-7*t+9*t^2-7*t^3+3*t^4
|
|
44
|
+
9_8 2-8*t+11*t^2-8*t^3+2*t^4
|
|
45
|
+
9_9 2-4*t+6*t^2-7*t^3+6*t^4-4*t^5+2*t^6
|
|
46
|
+
9_10 4-8*t+9*t^2-8*t^3+4*t^4
|
|
47
|
+
9_11 1-5*t+7*t^2-7*t^3+7*t^4-5*t^5+t^6
|
|
48
|
+
9_12 2-9*t+13*t^2-9*t^3+2*t^4
|
|
49
|
+
9_13 4-9*t+11*t^2-9*t^3+4*t^4
|
|
50
|
+
9_14 2-9*t+15*t^2-9*t^3+2*t^4
|
|
51
|
+
9_15 2-10*t+15*t^2-10*t^3+2*t^4
|
|
52
|
+
9_16 2-5*t+8*t^2-9*t^3+8*t^4-5*t^5+2*t^6
|
|
53
|
+
9_17 1-5*t+9*t^2-9*t^3+9*t^4-5*t^5+t^6
|
|
54
|
+
9_18 4-10*t+13*t^2-10*t^3+4*t^4
|
|
55
|
+
9_19 2-10*t+17*t^2-10*t^3+2*t^4
|
|
56
|
+
9_20 1-5*t+9*t^2-11*t^3+9*t^4-5*t^5+t^6
|
|
57
|
+
9_21 2-11*t+17*t^2-11*t^3+2*t^4
|
|
58
|
+
9_22 1-5*t+10*t^2-11*t^3+10*t^4-5*t^5+t^6
|
|
59
|
+
9_23 4-11*t+15*t^2-11*t^3+4*t^4
|
|
60
|
+
9_24 1-5*t+10*t^2-13*t^3+10*t^4-5*t^5+t^6
|
|
61
|
+
9_25 3-12*t+17*t^2-12*t^3+3*t^4
|
|
62
|
+
9_26 1-5*t+11*t^2-13*t^3+11*t^4-5*t^5+t^6
|
|
63
|
+
9_27 1-5*t+11*t^2-15*t^3+11*t^4-5*t^5+t^6
|
|
64
|
+
9_28 1-5*t+12*t^2-15*t^3+12*t^4-5*t^5+t^6
|
|
65
|
+
9_29 1-5*t+12*t^2-15*t^3+12*t^4-5*t^5+t^6
|
|
66
|
+
9_30 1-5*t+12*t^2-17*t^3+12*t^4-5*t^5+t^6
|
|
67
|
+
9_31 1-5*t+13*t^2-17*t^3+13*t^4-5*t^5+t^6
|
|
68
|
+
9_32 1-6*t+14*t^2-17*t^3+14*t^4-6*t^5+t^6
|
|
69
|
+
9_33 1-6*t+14*t^2-19*t^3+14*t^4-6*t^5+t^6
|
|
70
|
+
9_34 1-6*t+16*t^2-23*t^3+16*t^4-6*t^5+t^6
|
|
71
|
+
9_35 7-13*t+7*t^2
|
|
72
|
+
9_36 1-5*t+8*t^2-9*t^3+8*t^4-5*t^5+t^6
|
|
73
|
+
9_37 2-11*t+19*t^2-11*t^3+2*t^4
|
|
74
|
+
9_38 5-14*t+19*t^2-14*t^3+5*t^4
|
|
75
|
+
9_39 3-14*t+21*t^2-14*t^3+3*t^4
|
|
76
|
+
9_40 1-7*t+18*t^2-23*t^3+18*t^4-7*t^5+t^6
|
|
77
|
+
9_41 3-12*t+19*t^2-12*t^3+3*t^4
|
|
78
|
+
9_42 1-2*t+t^2-2*t^3+t^4
|
|
79
|
+
9_43 1-3*t+2*t^2-t^3+2*t^4-3*t^5+t^6
|
|
80
|
+
9_44 1-4*t+7*t^2-4*t^3+t^4
|
|
81
|
+
9_45 1-6*t+9*t^2-6*t^3+t^4
|
|
82
|
+
9_46 2-5*t+2*t^2
|
|
83
|
+
9_47 1-4*t+6*t^2-5*t^3+6*t^4-4*t^5+t^6
|
|
84
|
+
9_48 1-7*t+11*t^2-7*t^3+t^4
|
|
85
|
+
9_49 3-6*t+7*t^2-6*t^3+3*t^4
|
|
86
|
+
10_1 4-9*t+4*t^2
|
|
87
|
+
10_2 1-3*t+3*t^2-3*t^3+3*t^4-3*t^5+3*t^6-3*t^7+t^8
|
|
88
|
+
10_3 6-13*t+6*t^2
|
|
89
|
+
10_4 3-7*t+7*t^2-7*t^3+3*t^4
|
|
90
|
+
10_5 1-3*t+5*t^2-5*t^3+5*t^4-5*t^5+5*t^6-3*t^7+t^8
|
|
91
|
+
10_6 2-6*t+7*t^2-7*t^3+7*t^4-6*t^5+2*t^6
|
|
92
|
+
10_7 3-11*t+15*t^2-11*t^3+3*t^4
|
|
93
|
+
10_8 2-5*t+5*t^2-5*t^3+5*t^4-5*t^5+2*t^6
|
|
94
|
+
10_9 1-3*t+5*t^2-7*t^3+7*t^4-7*t^5+5*t^6-3*t^7+t^8
|
|
95
|
+
10_10 3-11*t+17*t^2-11*t^3+3*t^4
|
|
96
|
+
10_11 4-11*t+13*t^2-11*t^3+4*t^4
|
|
97
|
+
10_12 2-6*t+10*t^2-11*t^3+10*t^4-6*t^5+2*t^6
|
|
98
|
+
10_13 2-13*t+23*t^2-13*t^3+2*t^4
|
|
99
|
+
10_14 2-8*t+12*t^2-13*t^3+12*t^4-8*t^5+2*t^6
|
|
100
|
+
10_15 2-6*t+9*t^2-9*t^3+9*t^4-6*t^5+2*t^6
|
|
101
|
+
10_16 4-12*t+15*t^2-12*t^3+4*t^4
|
|
102
|
+
10_17 1-3*t+5*t^2-7*t^3+9*t^4-7*t^5+5*t^6-3*t^7+t^8
|
|
103
|
+
10_18 4-14*t+19*t^2-14*t^3+4*t^4
|
|
104
|
+
10_19 2-7*t+11*t^2-11*t^3+11*t^4-7*t^5+2*t^6
|
|
105
|
+
10_20 3-9*t+11*t^2-9*t^3+3*t^4
|
|
106
|
+
10_21 2-7*t+9*t^2-9*t^3+9*t^4-7*t^5+2*t^6
|
|
107
|
+
10_22 2-6*t+10*t^2-13*t^3+10*t^4-6*t^5+2*t^6
|
|
108
|
+
10_23 2-7*t+13*t^2-15*t^3+13*t^4-7*t^5+2*t^6
|
|
109
|
+
10_24 4-14*t+19*t^2-14*t^3+4*t^4
|
|
110
|
+
10_25 2-8*t+14*t^2-17*t^3+14*t^4-8*t^5+2*t^6
|
|
111
|
+
10_26 2-7*t+13*t^2-17*t^3+13*t^4-7*t^5+2*t^6
|
|
112
|
+
10_27 2-8*t+16*t^2-19*t^3+16*t^4-8*t^5+2*t^6
|
|
113
|
+
10_28 4-13*t+19*t^2-13*t^3+4*t^4
|
|
114
|
+
10_29 1-7*t+15*t^2-17*t^3+15*t^4-7*t^5+t^6
|
|
115
|
+
10_30 4-17*t+25*t^2-17*t^3+4*t^4
|
|
116
|
+
10_31 4-14*t+21*t^2-14*t^3+4*t^4
|
|
117
|
+
10_32 2-8*t+15*t^2-19*t^3+15*t^4-8*t^5+2*t^6
|
|
118
|
+
10_33 4-16*t+25*t^2-16*t^3+4*t^4
|
|
119
|
+
10_34 3-9*t+13*t^2-9*t^3+3*t^4
|
|
120
|
+
10_35 2-12*t+21*t^2-12*t^3+2*t^4
|
|
121
|
+
10_36 3-13*t+19*t^2-13*t^3+3*t^4
|
|
122
|
+
10_37 4-13*t+19*t^2-13*t^3+4*t^4
|
|
123
|
+
10_38 4-15*t+21*t^2-15*t^3+4*t^4
|
|
124
|
+
10_39 2-8*t+13*t^2-15*t^3+13*t^4-8*t^5+2*t^6
|
|
125
|
+
10_40 2-8*t+17*t^2-21*t^3+17*t^4-8*t^5+2*t^6
|
|
126
|
+
10_41 1-7*t+17*t^2-21*t^3+17*t^4-7*t^5+t^6
|
|
127
|
+
10_42 1-7*t+19*t^2-27*t^3+19*t^4-7*t^5+t^6
|
|
128
|
+
10_43 1-7*t+17*t^2-23*t^3+17*t^4-7*t^5+t^6
|
|
129
|
+
10_44 1-7*t+19*t^2-25*t^3+19*t^4-7*t^5+t^6
|
|
130
|
+
10_45 1-7*t+21*t^2-31*t^3+21*t^4-7*t^5+t^6
|
|
131
|
+
10_46 1-3*t+4*t^2-5*t^3+5*t^4-5*t^5+4*t^6-3*t^7+t^8
|
|
132
|
+
10_47 1-3*t+6*t^2-7*t^3+7*t^4-7*t^5+6*t^6-3*t^7+t^8
|
|
133
|
+
10_48 1-3*t+6*t^2-9*t^3+11*t^4-9*t^5+6*t^6-3*t^7+t^8
|
|
134
|
+
10_49 3-8*t+12*t^2-13*t^3+12*t^4-8*t^5+3*t^6
|
|
135
|
+
10_50 2-7*t+11*t^2-13*t^3+11*t^4-7*t^5+2*t^6
|
|
136
|
+
10_51 2-7*t+15*t^2-19*t^3+15*t^4-7*t^5+2*t^6
|
|
137
|
+
10_52 2-7*t+13*t^2-15*t^3+13*t^4-7*t^5+2*t^6
|
|
138
|
+
10_53 6-18*t+25*t^2-18*t^3+6*t^4
|
|
139
|
+
10_54 2-6*t+10*t^2-11*t^3+10*t^4-6*t^5+2*t^6
|
|
140
|
+
10_55 5-15*t+21*t^2-15*t^3+5*t^4
|
|
141
|
+
10_56 2-8*t+14*t^2-17*t^3+14*t^4-8*t^5+2*t^6
|
|
142
|
+
10_57 2-8*t+18*t^2-23*t^3+18*t^4-8*t^5+2*t^6
|
|
143
|
+
10_58 3-16*t+27*t^2-16*t^3+3*t^4
|
|
144
|
+
10_59 1-7*t+18*t^2-23*t^3+18*t^4-7*t^5+t^6
|
|
145
|
+
10_60 1-7*t+20*t^2-29*t^3+20*t^4-7*t^5+t^6
|
|
146
|
+
10_61 2-5*t+6*t^2-7*t^3+6*t^4-5*t^5+2*t^6
|
|
147
|
+
10_62 1-3*t+6*t^2-8*t^3+9*t^4-8*t^5+6*t^6-3*t^7+t^8
|
|
148
|
+
10_63 5-14*t+19*t^2-14*t^3+5*t^4
|
|
149
|
+
10_64 1-3*t+6*t^2-10*t^3+11*t^4-10*t^5+6*t^6-3*t^7+t^8
|
|
150
|
+
10_65 2-7*t+14*t^2-17*t^3+14*t^4-7*t^5+2*t^6
|
|
151
|
+
10_66 3-9*t+16*t^2-19*t^3+16*t^4-9*t^5+3*t^6
|
|
152
|
+
10_67 4-16*t+23*t^2-16*t^3+4*t^4
|
|
153
|
+
10_68 4-14*t+21*t^2-14*t^3+4*t^4
|
|
154
|
+
10_69 1-7*t+21*t^2-29*t^3+21*t^4-7*t^5+t^6
|
|
155
|
+
10_70 1-7*t+16*t^2-19*t^3+16*t^4-7*t^5+t^6
|
|
156
|
+
10_71 1-7*t+18*t^2-25*t^3+18*t^4-7*t^5+t^6
|
|
157
|
+
10_72 2-9*t+16*t^2-19*t^3+16*t^4-9*t^5+2*t^6
|
|
158
|
+
10_73 1-7*t+20*t^2-27*t^3+20*t^4-7*t^5+t^6
|
|
159
|
+
10_74 4-16*t+23*t^2-16*t^3+4*t^4
|
|
160
|
+
10_75 1-7*t+19*t^2-27*t^3+19*t^4-7*t^5+t^6
|
|
161
|
+
10_76 2-7*t+12*t^2-15*t^3+12*t^4-7*t^5+2*t^6
|
|
162
|
+
10_77 2-7*t+14*t^2-17*t^3+14*t^4-7*t^5+2*t^6
|
|
163
|
+
10_78 1-7*t+16*t^2-21*t^3+16*t^4-7*t^5+t^6
|
|
164
|
+
10_79 1-3*t+7*t^2-12*t^3+15*t^4-12*t^5+7*t^6-3*t^7+t^8
|
|
165
|
+
10_80 3-9*t+15*t^2-17*t^3+15*t^4-9*t^5+3*t^6
|
|
166
|
+
10_81 1-8*t+20*t^2-27*t^3+20*t^4-8*t^5+t^6
|
|
167
|
+
10_82 1-4*t+8*t^2-12*t^3+13*t^4-12*t^5+8*t^6-4*t^7+t^8
|
|
168
|
+
10_83 2-9*t+19*t^2-23*t^3+19*t^4-9*t^5+2*t^6
|
|
169
|
+
10_84 2-9*t+20*t^2-25*t^3+20*t^4-9*t^5+2*t^6
|
|
170
|
+
10_85 1-4*t+8*t^2-10*t^3+11*t^4-10*t^5+8*t^6-4*t^7+t^8
|
|
171
|
+
10_86 2-9*t+19*t^2-25*t^3+19*t^4-9*t^5+2*t^6
|
|
172
|
+
10_87 2-9*t+18*t^2-23*t^3+18*t^4-9*t^5+2*t^6
|
|
173
|
+
10_88 1-8*t+24*t^2-35*t^3+24*t^4-8*t^5+t^6
|
|
174
|
+
10_89 1-8*t+24*t^2-33*t^3+24*t^4-8*t^5+t^6
|
|
175
|
+
10_90 2-8*t+17*t^2-23*t^3+17*t^4-8*t^5+2*t^6
|
|
176
|
+
10_91 1-4*t+9*t^2-14*t^3+17*t^4-14*t^5+9*t^6-4*t^7+t^8
|
|
177
|
+
10_92 2-10*t+20*t^2-25*t^3+20*t^4-10*t^5+2*t^6
|
|
178
|
+
10_93 2-8*t+15*t^2-17*t^3+15*t^4-8*t^5+2*t^6
|
|
179
|
+
10_94 1-4*t+9*t^2-14*t^3+15*t^4-14*t^5+9*t^6-4*t^7+t^8
|
|
180
|
+
10_95 2-9*t+21*t^2-27*t^3+21*t^4-9*t^5+2*t^6
|
|
181
|
+
10_96 1-7*t+22*t^2-33*t^3+22*t^4-7*t^5+t^6
|
|
182
|
+
10_97 5-22*t+33*t^2-22*t^3+5*t^4
|
|
183
|
+
10_98 2-9*t+18*t^2-23*t^3+18*t^4-9*t^5+2*t^6
|
|
184
|
+
10_99 1-4*t+10*t^2-16*t^3+19*t^4-16*t^5+10*t^6-4*t^7+t^8
|
|
185
|
+
10_100 1-4*t+9*t^2-12*t^3+13*t^4-12*t^5+9*t^6-4*t^7+t^8
|
|
186
|
+
10_101 7-21*t+29*t^2-21*t^3+7*t^4
|
|
187
|
+
10_102 2-8*t+16*t^2-21*t^3+16*t^4-8*t^5+2*t^6
|
|
188
|
+
10_103 2-8*t+17*t^2-21*t^3+17*t^4-8*t^5+2*t^6
|
|
189
|
+
10_104 1-4*t+9*t^2-15*t^3+19*t^4-15*t^5+9*t^6-4*t^7+t^8
|
|
190
|
+
10_105 1-8*t+22*t^2-29*t^3+22*t^4-8*t^5+t^6
|
|
191
|
+
10_106 1-4*t+9*t^2-15*t^3+17*t^4-15*t^5+9*t^6-4*t^7+t^8
|
|
192
|
+
10_107 1-8*t+22*t^2-31*t^3+22*t^4-8*t^5+t^6
|
|
193
|
+
10_108 2-8*t+14*t^2-15*t^3+14*t^4-8*t^5+2*t^6
|
|
194
|
+
10_109 1-4*t+10*t^2-17*t^3+21*t^4-17*t^5+10*t^6-4*t^7+t^8
|
|
195
|
+
10_110 1-8*t+20*t^2-25*t^3+20*t^4-8*t^5+t^6
|
|
196
|
+
10_111 2-9*t+17*t^2-21*t^3+17*t^4-9*t^5+2*t^6
|
|
197
|
+
10_112 1-5*t+11*t^2-17*t^3+19*t^4-17*t^5+11*t^6-5*t^7+t^8
|
|
198
|
+
10_113 2-11*t+26*t^2-33*t^3+26*t^4-11*t^5+2*t^6
|
|
199
|
+
10_114 2-10*t+21*t^2-27*t^3+21*t^4-10*t^5+2*t^6
|
|
200
|
+
10_115 1-9*t+26*t^2-37*t^3+26*t^4-9*t^5+t^6
|
|
201
|
+
10_116 1-5*t+12*t^2-19*t^3+21*t^4-19*t^5+12*t^6-5*t^7+t^8
|
|
202
|
+
10_117 2-10*t+24*t^2-31*t^3+24*t^4-10*t^5+2*t^6
|
|
203
|
+
10_118 1-5*t+12*t^2-19*t^3+23*t^4-19*t^5+12*t^6-5*t^7+t^8
|
|
204
|
+
10_119 2-10*t+23*t^2-31*t^3+23*t^4-10*t^5+2*t^6
|
|
205
|
+
10_120 8-26*t+37*t^2-26*t^3+8*t^4
|
|
206
|
+
10_121 2-11*t+27*t^2-35*t^3+27*t^4-11*t^5+2*t^6
|
|
207
|
+
10_122 2-11*t+24*t^2-31*t^3+24*t^4-11*t^5+2*t^6
|
|
208
|
+
10_123 1-6*t+15*t^2-24*t^3+29*t^4-24*t^5+15*t^6-6*t^7+t^8
|
|
209
|
+
10_124 1-t+t^3-t^4+t^5-t^7+t^8
|
|
210
|
+
10_125 1-2*t+2*t^2-t^3+2*t^4-2*t^5+t^6
|
|
211
|
+
10_126 1-2*t+4*t^2-5*t^3+4*t^4-2*t^5+t^6
|
|
212
|
+
10_127 1-4*t+6*t^2-7*t^3+6*t^4-4*t^5+t^6
|
|
213
|
+
10_128 2-3*t+t^2+t^3+t^4-3*t^5+2*t^6
|
|
214
|
+
10_129 2-6*t+9*t^2-6*t^3+2*t^4
|
|
215
|
+
10_130 2-4*t+5*t^2-4*t^3+2*t^4
|
|
216
|
+
10_131 2-8*t+11*t^2-8*t^3+2*t^4
|
|
217
|
+
10_132 1-t+t^2-t^3+t^4
|
|
218
|
+
10_133 1-5*t+7*t^2-5*t^3+t^4
|
|
219
|
+
10_134 2-4*t+4*t^2-3*t^3+4*t^4-4*t^5+2*t^6
|
|
220
|
+
10_135 3-9*t+13*t^2-9*t^3+3*t^4
|
|
221
|
+
10_136 1-4*t+5*t^2-4*t^3+t^4
|
|
222
|
+
10_137 1-6*t+11*t^2-6*t^3+t^4
|
|
223
|
+
10_138 1-5*t+8*t^2-7*t^3+8*t^4-5*t^5+t^6
|
|
224
|
+
10_139 1-t+2*t^3-3*t^4+2*t^5-t^7+t^8
|
|
225
|
+
10_140 1-2*t+3*t^2-2*t^3+t^4
|
|
226
|
+
10_141 1-3*t+4*t^2-5*t^3+4*t^4-3*t^5+t^6
|
|
227
|
+
10_142 2-3*t+2*t^2-t^3+2*t^4-3*t^5+2*t^6
|
|
228
|
+
10_143 1-3*t+6*t^2-7*t^3+6*t^4-3*t^5+t^6
|
|
229
|
+
10_144 3-10*t+13*t^2-10*t^3+3*t^4
|
|
230
|
+
10_145 1+t-3*t^2+t^3+t^4
|
|
231
|
+
10_146 2-8*t+13*t^2-8*t^3+2*t^4
|
|
232
|
+
10_147 2-7*t+9*t^2-7*t^3+2*t^4
|
|
233
|
+
10_148 1-3*t+7*t^2-9*t^3+7*t^4-3*t^5+t^6
|
|
234
|
+
10_149 1-5*t+9*t^2-11*t^3+9*t^4-5*t^5+t^6
|
|
235
|
+
10_150 1-4*t+6*t^2-7*t^3+6*t^4-4*t^5+t^6
|
|
236
|
+
10_151 1-4*t+10*t^2-13*t^3+10*t^4-4*t^5+t^6
|
|
237
|
+
10_152 1-t-t^2+4*t^3-5*t^4+4*t^5-t^6-t^7+t^8
|
|
238
|
+
10_153 1-t-t^2+3*t^3-t^4-t^5+t^6
|
|
239
|
+
10_154 1-4*t^2+7*t^3-4*t^4+t^6
|
|
240
|
+
10_155 1-3*t+5*t^2-7*t^3+5*t^4-3*t^5+t^6
|
|
241
|
+
10_156 1-4*t+8*t^2-9*t^3+8*t^4-4*t^5+t^6
|
|
242
|
+
10_157 1-6*t+11*t^2-13*t^3+11*t^4-6*t^5+t^6
|
|
243
|
+
10_158 1-4*t+10*t^2-15*t^3+10*t^4-4*t^5+t^6
|
|
244
|
+
10_159 1-4*t+9*t^2-11*t^3+9*t^4-4*t^5+t^6
|
|
245
|
+
10_160 1-4*t+4*t^2-3*t^3+4*t^4-4*t^5+t^6
|
|
246
|
+
10_161 1-2*t^2+3*t^3-2*t^4+t^6
|
|
247
|
+
10_162 3-9*t+11*t^2-9*t^3+3*t^4
|
|
248
|
+
10_163 1-5*t+12*t^2-15*t^3+12*t^4-5*t^5+t^6
|
|
249
|
+
10_164 3-11*t+17*t^2-11*t^3+3*t^4
|
|
250
|
+
10_165 2-10*t+15*t^2-10*t^3+2*t^4
|
|
251
|
+
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import numpy as np
|
|
2
|
+
|
|
3
|
+
# design for generating knot configurations for diffrent simulation software
|
|
4
|
+
# lammps read_data, gromacs gmx editconf, openmm pdb
|
|
5
|
+
# get the coordinates of the knot, then write to the corresponding file
|
|
6
|
+
class KnotGenerator:
|
|
7
|
+
def __init__(self, knot):
|
|
8
|
+
""" knot should be a numpy array with shape (N_atoms, 3)"""
|
|
9
|
+
self.knot = knot
|
|
10
|
+
|
|
11
|
+
def write_lammps_data(self, filename):
|
|
12
|
+
pass
|
|
13
|
+
|
|
14
|
+
def write_gromacs_gro(self, filename):
|
|
15
|
+
pass
|
|
16
|
+
|
|
17
|
+
def write_openmm_pdb(self, filename):
|
|
18
|
+
pass
|
|
19
|
+
|
|
20
|
+
def write_xyz(self, filename):
|
|
21
|
+
pass
|
|
22
|
+
|
|
@@ -17,4 +17,15 @@ def read_xyz(file):
|
|
|
17
17
|
coords[i,j,2] = float(line[3])
|
|
18
18
|
lines = lines[N_atoms:]
|
|
19
19
|
|
|
20
|
-
return coords
|
|
20
|
+
return coords
|
|
21
|
+
|
|
22
|
+
def write_xyz(file, coords):
|
|
23
|
+
"""Write xyz file with coords, coords is a N_frames*N_atoms*3 np array, all the frames have same number of atoms"""
|
|
24
|
+
N_atoms = coords.shape[1]
|
|
25
|
+
N_frames = coords.shape[0]
|
|
26
|
+
with open(file, 'w') as f:
|
|
27
|
+
for i in range(N_frames):
|
|
28
|
+
f.write(str(N_atoms)+'\n')
|
|
29
|
+
f.write('frame '+str(i)+'\n')
|
|
30
|
+
for j in range(N_atoms):
|
|
31
|
+
f.write('1 '+str(coords[i,j,0])+' '+str(coords[i,j,1])+' '+str(coords[i,j,2])+'\n')
|
|
@@ -1,12 +1,17 @@
|
|
|
1
|
-
Metadata-Version: 2.
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
2
|
Name: pythonknot
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.2.0
|
|
4
4
|
Summary: pythonknot for knot theory calculation
|
|
5
5
|
Home-page:
|
|
6
6
|
Author: yjianzhu
|
|
7
7
|
Author-email: yjianzhu@mail.ustc.edu.cn
|
|
8
|
-
|
|
9
|
-
|
|
8
|
+
Requires-Dist: numpy
|
|
9
|
+
Requires-Dist: scipy
|
|
10
|
+
Requires-Dist: rmsd
|
|
11
|
+
Dynamic: author
|
|
12
|
+
Dynamic: author-email
|
|
13
|
+
Dynamic: description
|
|
14
|
+
Dynamic: requires-dist
|
|
15
|
+
Dynamic: summary
|
|
10
16
|
|
|
11
17
|
Python Knot is a Python package for creating and manipulating knots and links, calculating knot invariants, and more.
|
|
12
|
-
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
MANIFEST.in
|
|
2
|
+
README.md
|
|
3
|
+
setup.py
|
|
4
|
+
src/pythonknot/__init__.py
|
|
5
|
+
src/pythonknot/knot_generator.py
|
|
6
|
+
src/pythonknot/polymer.py
|
|
7
|
+
src/pythonknot/rmsd.py
|
|
8
|
+
src/pythonknot/xyz.py
|
|
9
|
+
src/pythonknot.egg-info/PKG-INFO
|
|
10
|
+
src/pythonknot.egg-info/SOURCES.txt
|
|
11
|
+
src/pythonknot.egg-info/dependency_links.txt
|
|
12
|
+
src/pythonknot.egg-info/not-zip-safe
|
|
13
|
+
src/pythonknot.egg-info/requires.txt
|
|
14
|
+
src/pythonknot.egg-info/top_level.txt
|
|
15
|
+
src/pythonknot/data/__init__.py
|
|
16
|
+
src/pythonknot/data/table_knot_Alexander_polynomial.txt
|
|
17
|
+
vendor/rust_knot/Cargo.lock
|
|
18
|
+
vendor/rust_knot/Cargo.toml
|
|
19
|
+
vendor/rust_knot/src/alexander_table.rs
|
|
20
|
+
vendor/rust_knot/src/batch.rs
|
|
21
|
+
vendor/rust_knot/src/config.rs
|
|
22
|
+
vendor/rust_knot/src/error.rs
|
|
23
|
+
vendor/rust_knot/src/geometry.rs
|
|
24
|
+
vendor/rust_knot/src/hull.rs
|
|
25
|
+
vendor/rust_knot/src/io.rs
|
|
26
|
+
vendor/rust_knot/src/kmt.rs
|
|
27
|
+
vendor/rust_knot/src/knotsize.rs
|
|
28
|
+
vendor/rust_knot/src/knottype.rs
|
|
29
|
+
vendor/rust_knot/src/lib.rs
|
|
30
|
+
vendor/rust_knot/src/main.rs
|
|
31
|
+
vendor/rust_knot/src/point.rs
|
|
32
|
+
vendor/rust_knot/src/polynomial.rs
|
|
33
|
+
vendor/rust_knot/src/python_module.rs
|