pycauset 0.6.2.dev15__tar.gz → 0.6.2.dev16__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.
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/.gitignore +1 -1
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/CMakeLists.txt +5 -2
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/PKG-INFO +24 -1
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/README.md +19 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/documentation/docs/functions/pycauset.cuda.is_available.md +12 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/documentation/internals/plans/TODO.md +9 -2
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/documentation/project/plans/R2_ROADMAP.md +1 -1
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/pyproject.toml +14 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/python/pycauset/__init__.py +19 -0
- pycauset-0.6.2.dev16/python/pycauset/_internal/gpu_hint.py +61 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/python/pycauset/_version.py +3 -3
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/src/compute/ComputeContext.cpp +7 -2
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/src/core/MemoryGovernor.cpp +7 -2
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/src/core/OpRegistration.cpp +4 -2
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/src/core/ParallelUtils.cpp +5 -2
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/.github/workflows/asan.yml +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/.github/workflows/ci.yml +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/.github/workflows/docs.yml +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/.github/workflows/publish.yml +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/BENCHMARKS.md +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/CHANGELOG.md +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/LICENSE +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/THIRD_PARTY_NOTICES.md +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/benchmarks/bench.py +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/benchmarks/bench_coverage.py +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/benchmarks/bench_ram.py +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/benchmarks/bench_structures.py +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/benchmarks/benchmark_io_smoke.py +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/benchmarks/benchmark_numpy_parity.py +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/benchmarks/large_n_check.py +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/benchmarks/plot.py +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/benchmarks/r2_continuum_limit.py +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/benchmarks/r2_parity.py +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/benchmarks/scenario_benchmarks.py +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/build_openblas.ps1 +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/documentation/dev/Bindings & Dispatch.md +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/documentation/dev/Build System.md +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/documentation/dev/Codebase Structure.md +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/documentation/dev/FINDINGS_EVERYDAY_SCENARIOS.md +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/documentation/dev/ONBOARDING_DTYPE_DEEP_DIVE.md +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/documentation/dev/PyCauset Container Format.md +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/documentation/dev/Python Internals.md +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/documentation/dev/R2_PERF_FINDINGS.md +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/documentation/dev/R2_QA_AUDIT.md +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/documentation/dev/Repository Hygiene.md +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/documentation/dev/Restructure Plan.md +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/documentation/dev/Square-only Assumptions.md +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/documentation/dev/Storage Semantics.md +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/documentation/dev/Testing & Benchmarks.md +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/documentation/dev/Warnings & Exceptions.md +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/documentation/dev/index.md +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/documentation/dev/performance_optimizations.md +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/documentation/docs/assets/benchmarks/speedup_by_op.png +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/documentation/docs/assets/benchmarks/time_eigen_svd.png +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/documentation/docs/assets/benchmarks/time_elem_dot.png +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/documentation/docs/assets/benchmarks/time_matmul_fact.png +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/documentation/docs/assets/gallery/cylinder_embedding.png +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/documentation/docs/assets/gallery/diamond_embedding.png +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/documentation/docs/assets/gallery/diamond_hasse.png +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/documentation/docs/assets/logo/favicon.png +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/documentation/docs/assets/logo/favicon_old.png +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/documentation/docs/assets/logo/logo-text-colour.png +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/documentation/docs/assets/logo/logo-text-colour.xcf +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/documentation/docs/assets/logo/logo-text-monochrome.png +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/documentation/docs/assets/logo/logo.pdn +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/documentation/docs/assets/logo/logo.png +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/documentation/docs/assets/logo/logo.xcf +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/documentation/docs/assets/logo/logo_old.png +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/documentation/docs/classes/AntiSymmetricMatrix.md +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/documentation/docs/classes/SymmetricMatrix.md +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/documentation/docs/classes/core/index.md +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/documentation/docs/classes/core/pycauset.PersistentObject.md +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/documentation/docs/classes/field/index.md +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/documentation/docs/classes/field/pycauset.field.ContinuumCorrelatedField.md +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/documentation/docs/classes/field/pycauset.field.CorrelatedField.md +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/documentation/docs/classes/field/pycauset.field.Field.md +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/documentation/docs/classes/field/pycauset.field.ScalarField.md +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/documentation/docs/classes/field/pycauset.field.State.md +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/documentation/docs/classes/index.md +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/documentation/docs/classes/matrix/index.md +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/documentation/docs/classes/matrix/pycauset.AntiSymmetricMatrix.md +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/documentation/docs/classes/matrix/pycauset.ComplexFloat16Matrix.md +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/documentation/docs/classes/matrix/pycauset.ComplexFloat32Matrix.md +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/documentation/docs/classes/matrix/pycauset.ComplexFloat64Matrix.md +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/documentation/docs/classes/matrix/pycauset.DenseBitMatrix.md +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/documentation/docs/classes/matrix/pycauset.DiagonalMatrix.md +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/documentation/docs/classes/matrix/pycauset.Float16Matrix.md +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/documentation/docs/classes/matrix/pycauset.Float32Matrix.md +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/documentation/docs/classes/matrix/pycauset.FloatMatrix.md +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/documentation/docs/classes/matrix/pycauset.IdentityMatrix.md +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/documentation/docs/classes/matrix/pycauset.Int16Matrix.md +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/documentation/docs/classes/matrix/pycauset.Int64Matrix.md +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/documentation/docs/classes/matrix/pycauset.Int8Matrix.md +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/documentation/docs/classes/matrix/pycauset.IntegerMatrix.md +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/documentation/docs/classes/matrix/pycauset.MatrixBase.md +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/documentation/docs/classes/matrix/pycauset.SymmetricMatrix.md +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/documentation/docs/classes/matrix/pycauset.TriangularBitMatrix.md +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/documentation/docs/classes/matrix/pycauset.TriangularFloatMatrix.md +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/documentation/docs/classes/matrix/pycauset.TriangularIntegerMatrix.md +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/documentation/docs/classes/matrix/pycauset.TriangularMatrix.md +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/documentation/docs/classes/matrix/pycauset.UInt16Matrix.md +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/documentation/docs/classes/matrix/pycauset.UInt32Matrix.md +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/documentation/docs/classes/matrix/pycauset.UInt64Matrix.md +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/documentation/docs/classes/matrix/pycauset.UInt8Matrix.md +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/documentation/docs/classes/spacetime/index.md +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/documentation/docs/classes/spacetime/pycauset.CausalSet.md +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/documentation/docs/classes/spacetime/pycauset.CausalSpacetime.md +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/documentation/docs/classes/spacetime/pycauset.spacetime.AntiDeSitter.md +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/documentation/docs/classes/spacetime/pycauset.spacetime.ConformalSpacetime.md +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/documentation/docs/classes/spacetime/pycauset.spacetime.DeSitter.md +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/documentation/docs/classes/spacetime/pycauset.spacetime.FLRW.md +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/documentation/docs/classes/spacetime/pycauset.spacetime.MinkowskiBox.md +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/documentation/docs/classes/spacetime/pycauset.spacetime.MinkowskiCylinder.md +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/documentation/docs/classes/spacetime/pycauset.spacetime.MinkowskiDiamond.md +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/documentation/docs/classes/spacetime/pycauset.spacetime.PeriodicSpacetime.md +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/documentation/docs/classes/spacetime/pycauset.spacetime.RestrictedSpacetime.md +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/documentation/docs/classes/spacetime/pycauset.spacetime.Schwarzschild.md +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/documentation/docs/classes/spacetime/pycauset.spacetime.Spacetime.md +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/documentation/docs/classes/spacetime/pycauset.spacetime.TransformedSpacetime.md +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/documentation/docs/classes/spacetime/pycauset.spacetime.md +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/documentation/docs/classes/vector/index.md +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/documentation/docs/classes/vector/pycauset.BitVector.md +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/documentation/docs/classes/vector/pycauset.ComplexFloat16Vector.md +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/documentation/docs/classes/vector/pycauset.ComplexFloat32Vector.md +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/documentation/docs/classes/vector/pycauset.ComplexFloat64Vector.md +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/documentation/docs/classes/vector/pycauset.Float16Vector.md +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/documentation/docs/classes/vector/pycauset.Float32Vector.md +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/documentation/docs/classes/vector/pycauset.FloatVector.md +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/documentation/docs/classes/vector/pycauset.Int16Vector.md +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/documentation/docs/classes/vector/pycauset.Int64Vector.md +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/documentation/docs/classes/vector/pycauset.Int8Vector.md +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/documentation/docs/classes/vector/pycauset.IntegerVector.md +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/documentation/docs/classes/vector/pycauset.UInt16Vector.md +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/documentation/docs/classes/vector/pycauset.UInt32Vector.md +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/documentation/docs/classes/vector/pycauset.UInt64Vector.md +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/documentation/docs/classes/vector/pycauset.UInt8Vector.md +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/documentation/docs/classes/vector/pycauset.UnitVector.md +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/documentation/docs/classes/vector/pycauset.VectorBase.md +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/documentation/docs/functions/index.md +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/documentation/docs/functions/pycauset.I.md +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/documentation/docs/functions/pycauset.antisymmetric.md +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/documentation/docs/functions/pycauset.asarray.md +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/documentation/docs/functions/pycauset.bitwise_and.md +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/documentation/docs/functions/pycauset.bitwise_nand.md +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/documentation/docs/functions/pycauset.bitwise_nor.md +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/documentation/docs/functions/pycauset.bitwise_not.md +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/documentation/docs/functions/pycauset.bitwise_or.md +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/documentation/docs/functions/pycauset.bitwise_xnor.md +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/documentation/docs/functions/pycauset.bitwise_xor.md +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/documentation/docs/functions/pycauset.causal_matrix.md +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/documentation/docs/functions/pycauset.causet.md +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/documentation/docs/functions/pycauset.cholesky.md +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/documentation/docs/functions/pycauset.compute_k.md +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/documentation/docs/functions/pycauset.compute_k_matrix.md +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/documentation/docs/functions/pycauset.cond.md +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/documentation/docs/functions/pycauset.convert_file.md +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/documentation/docs/functions/pycauset.cross.md +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/documentation/docs/functions/pycauset.cuda.benchmark.md +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/documentation/docs/functions/pycauset.cuda.current_device.md +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/documentation/docs/functions/pycauset.cuda.disable.md +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/documentation/docs/functions/pycauset.cuda.enable.md +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/documentation/docs/functions/pycauset.cuda.force_backend.md +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/documentation/docs/functions/pycauset.cuda.set_pinning_budget.md +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/documentation/docs/functions/pycauset.det.md +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/documentation/docs/functions/pycauset.determinant.md +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/documentation/docs/functions/pycauset.diagonal.md +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/documentation/docs/functions/pycauset.divide.md +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/documentation/docs/functions/pycauset.dot.md +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/documentation/docs/functions/pycauset.eig.md +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/documentation/docs/functions/pycauset.eigh.md +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/documentation/docs/functions/pycauset.eigvals.md +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/documentation/docs/functions/pycauset.eigvals_arnoldi.md +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/documentation/docs/functions/pycauset.eigvals_skew.md +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/documentation/docs/functions/pycauset.eigvalsh.md +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/documentation/docs/functions/pycauset.empty.md +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/documentation/docs/functions/pycauset.field.md +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/documentation/docs/functions/pycauset.get_memory_threshold.md +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/documentation/docs/functions/pycauset.get_num_threads.md +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/documentation/docs/functions/pycauset.get_precision_mode.md +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/documentation/docs/functions/pycauset.identity.md +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/documentation/docs/functions/pycauset.invert.md +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/documentation/docs/functions/pycauset.load.md +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/documentation/docs/functions/pycauset.load_matrix.md +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/documentation/docs/functions/pycauset.load_npy.md +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/documentation/docs/functions/pycauset.load_npz.md +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/documentation/docs/functions/pycauset.lstsq.md +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/documentation/docs/functions/pycauset.lu.md +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/documentation/docs/functions/pycauset.matmul.md +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/documentation/docs/functions/pycauset.matrix.md +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/documentation/docs/functions/pycauset.matrix_power.md +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/documentation/docs/functions/pycauset.matrix_rank.md +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/documentation/docs/functions/pycauset.norm.md +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/documentation/docs/functions/pycauset.ones.md +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/documentation/docs/functions/pycauset.outer.md +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/documentation/docs/functions/pycauset.pinv.md +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/documentation/docs/functions/pycauset.precision_mode.md +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/documentation/docs/functions/pycauset.qr.md +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/documentation/docs/functions/pycauset.rank.md +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/documentation/docs/functions/pycauset.save.md +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/documentation/docs/functions/pycauset.save_npy.md +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/documentation/docs/functions/pycauset.save_npz.md +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/documentation/docs/functions/pycauset.set_backing_dir.md +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/documentation/docs/functions/pycauset.set_export_max_bytes.md +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/documentation/docs/functions/pycauset.set_memory_threshold.md +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/documentation/docs/functions/pycauset.set_num_threads.md +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/documentation/docs/functions/pycauset.set_precision_mode.md +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/documentation/docs/functions/pycauset.show.md +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/documentation/docs/functions/pycauset.slogdet.md +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/documentation/docs/functions/pycauset.solve.md +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/documentation/docs/functions/pycauset.solve_triangular.md +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/documentation/docs/functions/pycauset.spacetime.create.md +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/documentation/docs/functions/pycauset.spacetime.export_python.md +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/documentation/docs/functions/pycauset.spacetime.get_registry.md +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/documentation/docs/functions/pycauset.spacetime.register.md +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/documentation/docs/functions/pycauset.sum.md +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/documentation/docs/functions/pycauset.svd.md +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/documentation/docs/functions/pycauset.svdvals.md +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/documentation/docs/functions/pycauset.symmetric.md +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/documentation/docs/functions/pycauset.synthetic.md +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/documentation/docs/functions/pycauset.to_numpy.md +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/documentation/docs/functions/pycauset.trace.md +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/documentation/docs/functions/pycauset.vecdot.md +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/documentation/docs/functions/pycauset.vector.md +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/documentation/docs/functions/pycauset.zeros.md +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/documentation/docs/index.md +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/documentation/docs/parameters/index.md +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/documentation/docs/parameters/pycauset.keep_temp_files.md +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/documentation/docs/parameters/pycauset.pinning_budget.md +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/documentation/docs/parameters/pycauset.seed.md +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/documentation/docs/pycauset.vis/index.md +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/documentation/docs/pycauset.vis/plot_causal_matrix.md +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/documentation/docs/pycauset.vis/plot_embedding.md +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/documentation/docs/pycauset.vis/plot_hasse.md +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/documentation/guides/Advanced Usage.md +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/documentation/guides/Causal Sets.md +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/documentation/guides/Field Theory.md +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/documentation/guides/Installation.md +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/documentation/guides/Linear Algebra Operations.md +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/documentation/guides/Matrix Guide.md +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/documentation/guides/Numpy Integration.md +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/documentation/guides/NxM Support.md +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/documentation/guides/Performance Guide.md +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/documentation/guides/R2 Feature Menu.md +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/documentation/guides/Spacetime.md +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/documentation/guides/Storage and Memory.md +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/documentation/guides/User Guide.md +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/documentation/guides/Vector Guide.md +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/documentation/guides/Visualization.md +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/documentation/guides/index.md +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/documentation/guides/release1/dtypes.md +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/documentation/guides/release1/index.md +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/documentation/guides/release1/linalg.md +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/documentation/guides/release1/properties.md +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/documentation/guides/release1/shapes.md +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/documentation/guides/release1/storage.md +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/documentation/index.md +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/documentation/internals/Algorithms.md +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/documentation/internals/Block Matrices.md +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/documentation/internals/Compute Architecture.md +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/documentation/internals/CooperativeArchitecture.md +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/documentation/internals/DType System.md +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/documentation/internals/LazyEvaluation.md +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/documentation/internals/Memory and Data.md +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/documentation/internals/MemoryArchitecture.md +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/documentation/internals/Streaming Manager.md +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/documentation/internals/index.md +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/documentation/internals/plans/OPTIMIZATION_STATUS.md +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/documentation/internals/plans/R1_EXECUTION.md +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/documentation/internals/plans/SRP2_CATALOG.md +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/documentation/internals/plans/SUPPORT_READINESS_FRAMEWORK.md +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/documentation/internals/plans/archive/BLAS_INTEGRATION_PLAN.md +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/documentation/internals/plans/archive/DTYPE_COMPLEX_OVERFLOW_PLAN.md +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/documentation/internals/plans/archive/R1_BLOCKMATRIX_PLAN.md +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/documentation/internals/plans/archive/R1_CPU_PLAN.md +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/documentation/internals/plans/archive/R1_GPU_PLAN.md +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/documentation/internals/plans/archive/R1_IO_PLAN.md +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/documentation/internals/plans/archive/R1_LAZY.md +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/documentation/internals/plans/archive/R1_LINALG_PLAN.md +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/documentation/internals/plans/archive/R1_NUMPY_PLAN.md +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/documentation/internals/plans/archive/R1_PERF.md +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/documentation/internals/plans/archive/R1_POLISH.md +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/documentation/internals/plans/archive/R1_PROPERTIES_PLAN.md +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/documentation/internals/plans/archive/R1_SAFETY.md +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/documentation/internals/plans/archive/R1_SHAPES_PLAN.md +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/documentation/internals/plans/archive/R1_STORAGE_PLAN.md +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/documentation/internals/plans/archive/Restructure Plan.md +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/documentation/internals/plans/archive/index.md +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/documentation/internals/plans/archive/phase1_inventory.md +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/documentation/project/Contributing.md +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/documentation/project/Philosophy.md +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/documentation/project/Public API Contract.md +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/documentation/project/index.md +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/documentation/project/plans/R2_API_DESIGN.md +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/documentation/project/plans/R2_FIELDS_PHYSICS.md +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/documentation/project/plans/R2_PLAN_MAP.md +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/documentation/project/plans/R2_SPACETIME_CREATION.md +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/documentation/project/plans/R2_SPACETIME_LIBRARY.md +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/documentation/project/plans/index.md +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/documentation/project/protocols/Adding Operations.md +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/documentation/project/protocols/Adding Types.md +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/documentation/project/protocols/Documentation Protocol.md +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/documentation/project/protocols/NumPy Alignment Protocol.md +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/documentation/project/protocols/Pre-alpha Policy.md +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/documentation/project/protocols/Release Process.md +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/documentation/project/protocols/Testing and Bug Tracking.md +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/documentation/project/protocols/index.md +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/Eigen/Cholesky +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/Eigen/CholmodSupport +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/Eigen/Core +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/Eigen/Dense +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/Eigen/Eigen +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/Eigen/Eigenvalues +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/Eigen/Geometry +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/Eigen/Householder +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/Eigen/IterativeLinearSolvers +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/Eigen/Jacobi +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/Eigen/KLUSupport +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/Eigen/LU +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/Eigen/MetisSupport +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/Eigen/OrderingMethods +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/Eigen/PaStiXSupport +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/Eigen/PardisoSupport +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/Eigen/QR +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/Eigen/QtAlignedMalloc +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/Eigen/SPQRSupport +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/Eigen/SVD +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/Eigen/Sparse +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/Eigen/SparseCholesky +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/Eigen/SparseCore +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/Eigen/SparseLU +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/Eigen/SparseQR +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/Eigen/StdDeque +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/Eigen/StdList +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/Eigen/StdVector +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/Eigen/SuperLUSupport +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/Eigen/UmfPackSupport +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/Eigen/src/Cholesky/LDLT.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/Eigen/src/Cholesky/LLT.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/Eigen/src/Cholesky/LLT_LAPACKE.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/Eigen/src/CholmodSupport/CholmodSupport.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/Eigen/src/Core/ArithmeticSequence.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/Eigen/src/Core/Array.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/Eigen/src/Core/ArrayBase.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/Eigen/src/Core/ArrayWrapper.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/Eigen/src/Core/Assign.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/Eigen/src/Core/AssignEvaluator.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/Eigen/src/Core/Assign_MKL.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/Eigen/src/Core/BandMatrix.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/Eigen/src/Core/Block.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/Eigen/src/Core/BooleanRedux.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/Eigen/src/Core/CommaInitializer.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/Eigen/src/Core/ConditionEstimator.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/Eigen/src/Core/CoreEvaluators.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/Eigen/src/Core/CoreIterators.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/Eigen/src/Core/CwiseBinaryOp.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/Eigen/src/Core/CwiseNullaryOp.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/Eigen/src/Core/CwiseTernaryOp.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/Eigen/src/Core/CwiseUnaryOp.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/Eigen/src/Core/CwiseUnaryView.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/Eigen/src/Core/DenseBase.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/Eigen/src/Core/DenseCoeffsBase.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/Eigen/src/Core/DenseStorage.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/Eigen/src/Core/Diagonal.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/Eigen/src/Core/DiagonalMatrix.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/Eigen/src/Core/DiagonalProduct.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/Eigen/src/Core/Dot.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/Eigen/src/Core/EigenBase.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/Eigen/src/Core/ForceAlignedAccess.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/Eigen/src/Core/Fuzzy.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/Eigen/src/Core/GeneralProduct.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/Eigen/src/Core/GenericPacketMath.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/Eigen/src/Core/GlobalFunctions.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/Eigen/src/Core/IO.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/Eigen/src/Core/IndexedView.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/Eigen/src/Core/Inverse.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/Eigen/src/Core/Map.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/Eigen/src/Core/MapBase.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/Eigen/src/Core/MathFunctions.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/Eigen/src/Core/MathFunctionsImpl.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/Eigen/src/Core/Matrix.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/Eigen/src/Core/MatrixBase.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/Eigen/src/Core/NestByValue.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/Eigen/src/Core/NoAlias.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/Eigen/src/Core/NumTraits.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/Eigen/src/Core/PartialReduxEvaluator.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/Eigen/src/Core/PermutationMatrix.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/Eigen/src/Core/PlainObjectBase.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/Eigen/src/Core/Product.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/Eigen/src/Core/ProductEvaluators.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/Eigen/src/Core/Random.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/Eigen/src/Core/Redux.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/Eigen/src/Core/Ref.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/Eigen/src/Core/Replicate.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/Eigen/src/Core/Reshaped.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/Eigen/src/Core/ReturnByValue.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/Eigen/src/Core/Reverse.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/Eigen/src/Core/Select.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/Eigen/src/Core/SelfAdjointView.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/Eigen/src/Core/SelfCwiseBinaryOp.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/Eigen/src/Core/Solve.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/Eigen/src/Core/SolveTriangular.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/Eigen/src/Core/SolverBase.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/Eigen/src/Core/StableNorm.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/Eigen/src/Core/StlIterators.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/Eigen/src/Core/Stride.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/Eigen/src/Core/Swap.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/Eigen/src/Core/Transpose.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/Eigen/src/Core/Transpositions.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/Eigen/src/Core/TriangularMatrix.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/Eigen/src/Core/VectorBlock.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/Eigen/src/Core/VectorwiseOp.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/Eigen/src/Core/Visitor.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/Eigen/src/Core/arch/AVX/Complex.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/Eigen/src/Core/arch/AVX/MathFunctions.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/Eigen/src/Core/arch/AVX/PacketMath.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/Eigen/src/Core/arch/AVX/TypeCasting.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/Eigen/src/Core/arch/AVX512/Complex.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/Eigen/src/Core/arch/AVX512/MathFunctions.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/Eigen/src/Core/arch/AVX512/PacketMath.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/Eigen/src/Core/arch/AVX512/TypeCasting.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/Eigen/src/Core/arch/AltiVec/Complex.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/Eigen/src/Core/arch/AltiVec/MathFunctions.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/Eigen/src/Core/arch/AltiVec/MatrixProduct.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/Eigen/src/Core/arch/AltiVec/MatrixProductCommon.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/Eigen/src/Core/arch/AltiVec/MatrixProductMMA.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/Eigen/src/Core/arch/AltiVec/PacketMath.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/Eigen/src/Core/arch/CUDA/Complex.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/Eigen/src/Core/arch/Default/BFloat16.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/Eigen/src/Core/arch/Default/ConjHelper.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/Eigen/src/Core/arch/Default/GenericPacketMathFunctions.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/Eigen/src/Core/arch/Default/GenericPacketMathFunctionsFwd.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/Eigen/src/Core/arch/Default/Half.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/Eigen/src/Core/arch/Default/Settings.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/Eigen/src/Core/arch/Default/TypeCasting.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/Eigen/src/Core/arch/GPU/MathFunctions.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/Eigen/src/Core/arch/GPU/PacketMath.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/Eigen/src/Core/arch/GPU/TypeCasting.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/Eigen/src/Core/arch/HIP/hcc/math_constants.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/Eigen/src/Core/arch/MSA/Complex.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/Eigen/src/Core/arch/MSA/MathFunctions.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/Eigen/src/Core/arch/MSA/PacketMath.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/Eigen/src/Core/arch/NEON/Complex.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/Eigen/src/Core/arch/NEON/GeneralBlockPanelKernel.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/Eigen/src/Core/arch/NEON/MathFunctions.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/Eigen/src/Core/arch/NEON/PacketMath.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/Eigen/src/Core/arch/NEON/TypeCasting.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/Eigen/src/Core/arch/SSE/Complex.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/Eigen/src/Core/arch/SSE/MathFunctions.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/Eigen/src/Core/arch/SSE/PacketMath.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/Eigen/src/Core/arch/SSE/TypeCasting.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/Eigen/src/Core/arch/SVE/MathFunctions.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/Eigen/src/Core/arch/SVE/PacketMath.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/Eigen/src/Core/arch/SVE/TypeCasting.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/Eigen/src/Core/arch/SYCL/InteropHeaders.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/Eigen/src/Core/arch/SYCL/MathFunctions.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/Eigen/src/Core/arch/SYCL/PacketMath.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/Eigen/src/Core/arch/SYCL/SyclMemoryModel.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/Eigen/src/Core/arch/SYCL/TypeCasting.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/Eigen/src/Core/arch/ZVector/Complex.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/Eigen/src/Core/arch/ZVector/MathFunctions.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/Eigen/src/Core/arch/ZVector/PacketMath.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/Eigen/src/Core/functors/AssignmentFunctors.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/Eigen/src/Core/functors/BinaryFunctors.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/Eigen/src/Core/functors/NullaryFunctors.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/Eigen/src/Core/functors/StlFunctors.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/Eigen/src/Core/functors/TernaryFunctors.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/Eigen/src/Core/functors/UnaryFunctors.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/Eigen/src/Core/products/GeneralBlockPanelKernel.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/Eigen/src/Core/products/GeneralMatrixMatrix.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/Eigen/src/Core/products/GeneralMatrixMatrixTriangular.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/Eigen/src/Core/products/GeneralMatrixMatrixTriangular_BLAS.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/Eigen/src/Core/products/GeneralMatrixMatrix_BLAS.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/Eigen/src/Core/products/GeneralMatrixVector.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/Eigen/src/Core/products/GeneralMatrixVector_BLAS.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/Eigen/src/Core/products/Parallelizer.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/Eigen/src/Core/products/SelfadjointMatrixMatrix.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/Eigen/src/Core/products/SelfadjointMatrixMatrix_BLAS.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/Eigen/src/Core/products/SelfadjointMatrixVector.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/Eigen/src/Core/products/SelfadjointMatrixVector_BLAS.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/Eigen/src/Core/products/SelfadjointProduct.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/Eigen/src/Core/products/SelfadjointRank2Update.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/Eigen/src/Core/products/TriangularMatrixMatrix.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/Eigen/src/Core/products/TriangularMatrixMatrix_BLAS.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/Eigen/src/Core/products/TriangularMatrixVector.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/Eigen/src/Core/products/TriangularMatrixVector_BLAS.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/Eigen/src/Core/products/TriangularSolverMatrix.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/Eigen/src/Core/products/TriangularSolverMatrix_BLAS.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/Eigen/src/Core/products/TriangularSolverVector.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/Eigen/src/Core/util/BlasUtil.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/Eigen/src/Core/util/ConfigureVectorization.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/Eigen/src/Core/util/Constants.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/Eigen/src/Core/util/DisableStupidWarnings.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/Eigen/src/Core/util/ForwardDeclarations.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/Eigen/src/Core/util/IndexedViewHelper.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/Eigen/src/Core/util/IntegralConstant.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/Eigen/src/Core/util/MKL_support.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/Eigen/src/Core/util/Macros.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/Eigen/src/Core/util/Memory.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/Eigen/src/Core/util/Meta.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/Eigen/src/Core/util/NonMPL2.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/Eigen/src/Core/util/ReenableStupidWarnings.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/Eigen/src/Core/util/ReshapedHelper.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/Eigen/src/Core/util/StaticAssert.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/Eigen/src/Core/util/SymbolicIndex.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/Eigen/src/Core/util/XprHelper.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/Eigen/src/Eigenvalues/ComplexEigenSolver.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/Eigen/src/Eigenvalues/ComplexSchur.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/Eigen/src/Eigenvalues/ComplexSchur_LAPACKE.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/Eigen/src/Eigenvalues/EigenSolver.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/Eigen/src/Eigenvalues/GeneralizedEigenSolver.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/Eigen/src/Eigenvalues/GeneralizedSelfAdjointEigenSolver.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/Eigen/src/Eigenvalues/HessenbergDecomposition.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/Eigen/src/Eigenvalues/MatrixBaseEigenvalues.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/Eigen/src/Eigenvalues/RealQZ.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/Eigen/src/Eigenvalues/RealSchur.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/Eigen/src/Eigenvalues/RealSchur_LAPACKE.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/Eigen/src/Eigenvalues/SelfAdjointEigenSolver_LAPACKE.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/Eigen/src/Eigenvalues/Tridiagonalization.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/Eigen/src/Geometry/AlignedBox.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/Eigen/src/Geometry/AngleAxis.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/Eigen/src/Geometry/EulerAngles.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/Eigen/src/Geometry/Homogeneous.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/Eigen/src/Geometry/Hyperplane.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/Eigen/src/Geometry/OrthoMethods.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/Eigen/src/Geometry/ParametrizedLine.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/Eigen/src/Geometry/Quaternion.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/Eigen/src/Geometry/Rotation2D.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/Eigen/src/Geometry/RotationBase.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/Eigen/src/Geometry/Scaling.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/Eigen/src/Geometry/Transform.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/Eigen/src/Geometry/Translation.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/Eigen/src/Geometry/Umeyama.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/Eigen/src/Geometry/arch/Geometry_SIMD.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/Eigen/src/Householder/BlockHouseholder.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/Eigen/src/Householder/Householder.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/Eigen/src/Householder/HouseholderSequence.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/Eigen/src/IterativeLinearSolvers/BasicPreconditioners.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/Eigen/src/IterativeLinearSolvers/BiCGSTAB.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/Eigen/src/IterativeLinearSolvers/ConjugateGradient.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/Eigen/src/IterativeLinearSolvers/IncompleteCholesky.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/Eigen/src/IterativeLinearSolvers/IncompleteLUT.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/Eigen/src/IterativeLinearSolvers/IterativeSolverBase.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/Eigen/src/IterativeLinearSolvers/LeastSquareConjugateGradient.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/Eigen/src/IterativeLinearSolvers/SolveWithGuess.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/Eigen/src/Jacobi/Jacobi.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/Eigen/src/KLUSupport/KLUSupport.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/Eigen/src/LU/Determinant.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/Eigen/src/LU/FullPivLU.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/Eigen/src/LU/InverseImpl.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/Eigen/src/LU/PartialPivLU.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/Eigen/src/LU/PartialPivLU_LAPACKE.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/Eigen/src/LU/arch/InverseSize4.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/Eigen/src/MetisSupport/MetisSupport.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/Eigen/src/OrderingMethods/Amd.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/Eigen/src/OrderingMethods/Eigen_Colamd.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/Eigen/src/OrderingMethods/Ordering.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/Eigen/src/PaStiXSupport/PaStiXSupport.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/Eigen/src/PardisoSupport/PardisoSupport.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/Eigen/src/QR/ColPivHouseholderQR.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/Eigen/src/QR/ColPivHouseholderQR_LAPACKE.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/Eigen/src/QR/CompleteOrthogonalDecomposition.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/Eigen/src/QR/FullPivHouseholderQR.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/Eigen/src/QR/HouseholderQR.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/Eigen/src/QR/HouseholderQR_LAPACKE.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/Eigen/src/SPQRSupport/SuiteSparseQRSupport.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/Eigen/src/SVD/BDCSVD.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/Eigen/src/SVD/JacobiSVD.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/Eigen/src/SVD/JacobiSVD_LAPACKE.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/Eigen/src/SVD/SVDBase.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/Eigen/src/SVD/UpperBidiagonalization.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/Eigen/src/SparseCholesky/SimplicialCholesky.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/Eigen/src/SparseCholesky/SimplicialCholesky_impl.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/Eigen/src/SparseCore/AmbiVector.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/Eigen/src/SparseCore/CompressedStorage.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/Eigen/src/SparseCore/ConservativeSparseSparseProduct.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/Eigen/src/SparseCore/MappedSparseMatrix.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/Eigen/src/SparseCore/SparseAssign.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/Eigen/src/SparseCore/SparseBlock.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/Eigen/src/SparseCore/SparseColEtree.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/Eigen/src/SparseCore/SparseCompressedBase.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/Eigen/src/SparseCore/SparseCwiseBinaryOp.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/Eigen/src/SparseCore/SparseCwiseUnaryOp.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/Eigen/src/SparseCore/SparseDenseProduct.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/Eigen/src/SparseCore/SparseDiagonalProduct.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/Eigen/src/SparseCore/SparseDot.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/Eigen/src/SparseCore/SparseFuzzy.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/Eigen/src/SparseCore/SparseMap.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/Eigen/src/SparseCore/SparseMatrix.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/Eigen/src/SparseCore/SparseMatrixBase.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/Eigen/src/SparseCore/SparsePermutation.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/Eigen/src/SparseCore/SparseProduct.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/Eigen/src/SparseCore/SparseRedux.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/Eigen/src/SparseCore/SparseRef.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/Eigen/src/SparseCore/SparseSelfAdjointView.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/Eigen/src/SparseCore/SparseSolverBase.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/Eigen/src/SparseCore/SparseSparseProductWithPruning.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/Eigen/src/SparseCore/SparseTranspose.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/Eigen/src/SparseCore/SparseTriangularView.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/Eigen/src/SparseCore/SparseUtil.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/Eigen/src/SparseCore/SparseVector.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/Eigen/src/SparseCore/SparseView.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/Eigen/src/SparseCore/TriangularSolver.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/Eigen/src/SparseLU/SparseLU.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/Eigen/src/SparseLU/SparseLUImpl.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/Eigen/src/SparseLU/SparseLU_Memory.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/Eigen/src/SparseLU/SparseLU_Structs.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/Eigen/src/SparseLU/SparseLU_SupernodalMatrix.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/Eigen/src/SparseLU/SparseLU_Utils.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/Eigen/src/SparseLU/SparseLU_column_bmod.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/Eigen/src/SparseLU/SparseLU_column_dfs.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/Eigen/src/SparseLU/SparseLU_copy_to_ucol.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/Eigen/src/SparseLU/SparseLU_gemm_kernel.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/Eigen/src/SparseLU/SparseLU_heap_relax_snode.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/Eigen/src/SparseLU/SparseLU_kernel_bmod.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/Eigen/src/SparseLU/SparseLU_panel_bmod.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/Eigen/src/SparseLU/SparseLU_panel_dfs.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/Eigen/src/SparseLU/SparseLU_pivotL.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/Eigen/src/SparseLU/SparseLU_pruneL.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/Eigen/src/SparseLU/SparseLU_relax_snode.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/Eigen/src/SparseQR/SparseQR.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/Eigen/src/StlSupport/StdDeque.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/Eigen/src/StlSupport/StdList.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/Eigen/src/StlSupport/StdVector.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/Eigen/src/StlSupport/details.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/Eigen/src/SuperLUSupport/SuperLUSupport.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/Eigen/src/UmfPackSupport/UmfPackSupport.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/Eigen/src/misc/Image.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/Eigen/src/misc/Kernel.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/Eigen/src/misc/RealSvd2x2.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/Eigen/src/misc/blas.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/Eigen/src/misc/lapack.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/Eigen/src/misc/lapacke.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/Eigen/src/misc/lapacke_mangling.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/Eigen/src/plugins/ArrayCwiseBinaryOps.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/Eigen/src/plugins/ArrayCwiseUnaryOps.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/Eigen/src/plugins/BlockMethods.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/Eigen/src/plugins/CommonCwiseBinaryOps.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/Eigen/src/plugins/CommonCwiseUnaryOps.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/Eigen/src/plugins/IndexedViewMethods.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/Eigen/src/plugins/MatrixCwiseBinaryOps.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/Eigen/src/plugins/MatrixCwiseUnaryOps.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/Eigen/src/plugins/ReshapedMethods.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/signature_of_eigen3_matrix_library +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/unsupported/Eigen/AdolcForward +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/unsupported/Eigen/AlignedVector3 +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/unsupported/Eigen/ArpackSupport +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/unsupported/Eigen/AutoDiff +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/unsupported/Eigen/BVH +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/unsupported/Eigen/CXX11/Tensor +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/unsupported/Eigen/CXX11/TensorSymmetry +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/unsupported/Eigen/CXX11/ThreadPool +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/Tensor.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorArgMax.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorAssign.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorBase.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorBlock.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorBroadcasting.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorChipping.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorConcatenation.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorContraction.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorContractionBlocking.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorContractionCuda.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorContractionGpu.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorContractionMapper.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorContractionSycl.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorContractionThreadPool.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorConversion.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorConvolution.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorConvolutionSycl.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorCostModel.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorCustomOp.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorDevice.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorDeviceCuda.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorDeviceDefault.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorDeviceGpu.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorDeviceSycl.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorDeviceThreadPool.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorDimensionList.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorDimensions.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorEvalTo.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorEvaluator.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorExecutor.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorExpr.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorFFT.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorFixedSize.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorForcedEval.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorForwardDeclarations.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorFunctors.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorGenerator.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorGlobalFunctions.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorGpuHipCudaDefines.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorGpuHipCudaUndefines.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorIO.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorImagePatch.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorIndexList.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorInflation.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorInitializer.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorIntDiv.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorLayoutSwap.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorMacros.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorMap.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorMeta.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorMorphing.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorPadding.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorPatch.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorRandom.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorReduction.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorReductionCuda.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorReductionGpu.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorReductionSycl.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorRef.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorReverse.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorScan.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorScanSycl.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorShuffling.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorStorage.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorStriding.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorTrace.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorTraits.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorUInt128.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/unsupported/Eigen/CXX11/src/Tensor/TensorVolumePatch.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/unsupported/Eigen/CXX11/src/TensorSymmetry/DynamicSymmetry.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/unsupported/Eigen/CXX11/src/TensorSymmetry/StaticSymmetry.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/unsupported/Eigen/CXX11/src/TensorSymmetry/Symmetry.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/unsupported/Eigen/CXX11/src/TensorSymmetry/util/TemplateGroupTheory.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/unsupported/Eigen/CXX11/src/ThreadPool/Barrier.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/unsupported/Eigen/CXX11/src/ThreadPool/EventCount.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/unsupported/Eigen/CXX11/src/ThreadPool/NonBlockingThreadPool.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/unsupported/Eigen/CXX11/src/ThreadPool/RunQueue.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/unsupported/Eigen/CXX11/src/ThreadPool/ThreadCancel.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/unsupported/Eigen/CXX11/src/ThreadPool/ThreadEnvironment.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/unsupported/Eigen/CXX11/src/ThreadPool/ThreadLocal.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/unsupported/Eigen/CXX11/src/ThreadPool/ThreadPoolInterface.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/unsupported/Eigen/CXX11/src/ThreadPool/ThreadYield.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/unsupported/Eigen/CXX11/src/util/CXX11Meta.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/unsupported/Eigen/CXX11/src/util/CXX11Workarounds.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/unsupported/Eigen/CXX11/src/util/EmulateArray.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/unsupported/Eigen/CXX11/src/util/MaxSizeVector.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/unsupported/Eigen/EulerAngles +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/unsupported/Eigen/FFT +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/unsupported/Eigen/IterativeSolvers +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/unsupported/Eigen/KroneckerProduct +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/unsupported/Eigen/LevenbergMarquardt +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/unsupported/Eigen/MPRealSupport +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/unsupported/Eigen/MatrixFunctions +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/unsupported/Eigen/MoreVectorization +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/unsupported/Eigen/NonLinearOptimization +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/unsupported/Eigen/NumericalDiff +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/unsupported/Eigen/OpenGLSupport +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/unsupported/Eigen/Polynomials +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/unsupported/Eigen/Skyline +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/unsupported/Eigen/SparseExtra +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/unsupported/Eigen/SpecialFunctions +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/unsupported/Eigen/Splines +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/unsupported/Eigen/src/AutoDiff/AutoDiffJacobian.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/unsupported/Eigen/src/AutoDiff/AutoDiffScalar.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/unsupported/Eigen/src/AutoDiff/AutoDiffVector.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/unsupported/Eigen/src/BVH/BVAlgorithms.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/unsupported/Eigen/src/BVH/KdBVH.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/unsupported/Eigen/src/Eigenvalues/ArpackSelfAdjointEigenSolver.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/unsupported/Eigen/src/EulerAngles/EulerAngles.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/unsupported/Eigen/src/EulerAngles/EulerSystem.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/unsupported/Eigen/src/FFT/ei_fftw_impl.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/unsupported/Eigen/src/FFT/ei_kissfft_impl.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/unsupported/Eigen/src/IterativeSolvers/ConstrainedConjGrad.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/unsupported/Eigen/src/IterativeSolvers/DGMRES.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/unsupported/Eigen/src/IterativeSolvers/GMRES.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/unsupported/Eigen/src/IterativeSolvers/IDRS.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/unsupported/Eigen/src/IterativeSolvers/IncompleteLU.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/unsupported/Eigen/src/IterativeSolvers/IterationController.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/unsupported/Eigen/src/IterativeSolvers/MINRES.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/unsupported/Eigen/src/IterativeSolvers/Scaling.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/unsupported/Eigen/src/KroneckerProduct/KroneckerTensorProduct.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/unsupported/Eigen/src/LevenbergMarquardt/LMcovar.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/unsupported/Eigen/src/LevenbergMarquardt/LMonestep.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/unsupported/Eigen/src/LevenbergMarquardt/LMpar.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/unsupported/Eigen/src/LevenbergMarquardt/LMqrsolv.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/unsupported/Eigen/src/LevenbergMarquardt/LevenbergMarquardt.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/unsupported/Eigen/src/MatrixFunctions/MatrixExponential.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/unsupported/Eigen/src/MatrixFunctions/MatrixFunction.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/unsupported/Eigen/src/MatrixFunctions/MatrixLogarithm.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/unsupported/Eigen/src/MatrixFunctions/MatrixPower.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/unsupported/Eigen/src/MatrixFunctions/MatrixSquareRoot.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/unsupported/Eigen/src/MatrixFunctions/StemFunction.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/unsupported/Eigen/src/MoreVectorization/MathFunctions.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/unsupported/Eigen/src/NonLinearOptimization/HybridNonLinearSolver.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/unsupported/Eigen/src/NonLinearOptimization/LevenbergMarquardt.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/unsupported/Eigen/src/NonLinearOptimization/chkder.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/unsupported/Eigen/src/NonLinearOptimization/covar.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/unsupported/Eigen/src/NonLinearOptimization/dogleg.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/unsupported/Eigen/src/NonLinearOptimization/fdjac1.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/unsupported/Eigen/src/NonLinearOptimization/lmpar.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/unsupported/Eigen/src/NonLinearOptimization/qrsolv.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/unsupported/Eigen/src/NonLinearOptimization/r1mpyq.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/unsupported/Eigen/src/NonLinearOptimization/r1updt.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/unsupported/Eigen/src/NonLinearOptimization/rwupdt.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/unsupported/Eigen/src/NumericalDiff/NumericalDiff.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/unsupported/Eigen/src/Polynomials/Companion.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/unsupported/Eigen/src/Polynomials/PolynomialSolver.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/unsupported/Eigen/src/Polynomials/PolynomialUtils.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/unsupported/Eigen/src/Skyline/SkylineInplaceLU.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/unsupported/Eigen/src/Skyline/SkylineMatrix.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/unsupported/Eigen/src/Skyline/SkylineMatrixBase.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/unsupported/Eigen/src/Skyline/SkylineProduct.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/unsupported/Eigen/src/Skyline/SkylineStorage.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/unsupported/Eigen/src/Skyline/SkylineUtil.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/unsupported/Eigen/src/SparseExtra/BlockOfDynamicSparseMatrix.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/unsupported/Eigen/src/SparseExtra/BlockSparseMatrix.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/unsupported/Eigen/src/SparseExtra/DynamicSparseMatrix.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/unsupported/Eigen/src/SparseExtra/MarketIO.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/unsupported/Eigen/src/SparseExtra/MatrixMarketIterator.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/unsupported/Eigen/src/SparseExtra/RandomSetter.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/unsupported/Eigen/src/SpecialFunctions/BesselFunctionsArrayAPI.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/unsupported/Eigen/src/SpecialFunctions/BesselFunctionsBFloat16.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/unsupported/Eigen/src/SpecialFunctions/BesselFunctionsFunctors.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/unsupported/Eigen/src/SpecialFunctions/BesselFunctionsHalf.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/unsupported/Eigen/src/SpecialFunctions/BesselFunctionsImpl.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/unsupported/Eigen/src/SpecialFunctions/BesselFunctionsPacketMath.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/unsupported/Eigen/src/SpecialFunctions/HipVectorCompatibility.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/unsupported/Eigen/src/SpecialFunctions/SpecialFunctionsArrayAPI.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/unsupported/Eigen/src/SpecialFunctions/SpecialFunctionsBFloat16.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/unsupported/Eigen/src/SpecialFunctions/SpecialFunctionsFunctors.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/unsupported/Eigen/src/SpecialFunctions/SpecialFunctionsHalf.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/unsupported/Eigen/src/SpecialFunctions/SpecialFunctionsImpl.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/unsupported/Eigen/src/SpecialFunctions/SpecialFunctionsPacketMath.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/unsupported/Eigen/src/SpecialFunctions/arch/AVX/BesselFunctions.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/unsupported/Eigen/src/SpecialFunctions/arch/AVX/SpecialFunctions.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/unsupported/Eigen/src/SpecialFunctions/arch/AVX512/BesselFunctions.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/unsupported/Eigen/src/SpecialFunctions/arch/AVX512/SpecialFunctions.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/unsupported/Eigen/src/SpecialFunctions/arch/GPU/SpecialFunctions.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/unsupported/Eigen/src/SpecialFunctions/arch/NEON/BesselFunctions.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/unsupported/Eigen/src/SpecialFunctions/arch/NEON/SpecialFunctions.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/unsupported/Eigen/src/Splines/Spline.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/unsupported/Eigen/src/Splines/SplineFitting.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/eigen3/unsupported/Eigen/src/Splines/SplineFwd.h +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/pycauset/causet/Spacetime.hpp +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/pycauset/causet/Sprinkler.hpp +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/pycauset/compute/AcceleratorConfig.hpp +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/pycauset/compute/AutoSolver.hpp +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/pycauset/compute/ComputeContext.hpp +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/pycauset/compute/ComputeDevice.hpp +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/pycauset/compute/ComputeWorker.hpp +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/pycauset/compute/ComputeWorkerExtensionTemplate.hpp +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/pycauset/compute/HardwareProfile.hpp +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/pycauset/compute/MatrixPropertyTraits.hpp +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/pycauset/compute/StreamingManager.hpp +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/pycauset/compute/WorkloadPartitioner.hpp +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/pycauset/compute/cpu/CpuComputeWorker.hpp +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/pycauset/compute/cpu/CpuDevice.hpp +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/pycauset/compute/cpu/CpuSolver.hpp +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/pycauset/core/DebugTrace.hpp +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/pycauset/core/Float16.hpp +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/pycauset/core/IOAccelerator.hpp +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/pycauset/core/MatrixTraits.hpp +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/pycauset/core/MatrixTypeResolver.hpp +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/pycauset/core/MemoryGovernor.hpp +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/pycauset/core/MemoryHints.hpp +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/pycauset/core/MemoryMapper.hpp +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/pycauset/core/Nvtx.hpp +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/pycauset/core/ObjectFactory.hpp +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/pycauset/core/OpRegistry.hpp +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/pycauset/core/ParallelUtils.hpp +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/pycauset/core/PersistentObject.hpp +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/pycauset/core/PromotionResolver.hpp +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/pycauset/core/PropertyFlags.hpp +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/pycauset/core/ScalarUtils.hpp +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/pycauset/core/StorageUtils.hpp +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/pycauset/core/StructureResolver.hpp +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/pycauset/core/SystemUtils.hpp +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/pycauset/core/Types.hpp +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/pycauset/math/Eigen.hpp +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/pycauset/math/LinearAlgebra.hpp +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/pycauset/matrix/ComplexFloat16Matrix.hpp +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/pycauset/matrix/DenseBitMatrix.hpp +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/pycauset/matrix/DenseMatrix.hpp +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/pycauset/matrix/DiagonalMatrix.hpp +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/pycauset/matrix/IdentityMatrix.hpp +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/pycauset/matrix/MatrixBase.hpp +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/pycauset/matrix/MatrixOps.hpp +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/pycauset/matrix/SymmetricMatrix.hpp +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/pycauset/matrix/TriangularBitMatrix.hpp +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/pycauset/matrix/TriangularMatrix.hpp +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/pycauset/matrix/expression/BinaryExpression.hpp +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/pycauset/matrix/expression/Functors.hpp +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/pycauset/matrix/expression/MatrixExpression.hpp +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/pycauset/matrix/expression/MatrixExpressionWrapper.hpp +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/pycauset/matrix/expression/MatrixRefExpression.hpp +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/pycauset/matrix/expression/README.md +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/pycauset/matrix/expression/ScalarExpression.hpp +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/pycauset/matrix/expression/UnaryExpression.hpp +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/pycauset/vector/ComplexFloat16Vector.hpp +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/pycauset/vector/DenseVector.hpp +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/pycauset/vector/UnitVector.hpp +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/include/pycauset/vector/VectorBase.hpp +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/mkdocs.yml +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/mockups/spacetime_studio_mockup.html +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/overrides/main.html +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/overrides/partials/copyright.html +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/overrides/partials/header.html +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/python/pycauset/__init__.pyi +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/python/pycauset/_internal/__init__.py +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/python/pycauset/_internal/big_blob_cache.py +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/python/pycauset/_internal/blockmatrix.py +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/python/pycauset/_internal/coercion.py +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/python/pycauset/_internal/dense_python.py +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/python/pycauset/_internal/dtypes.py +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/python/pycauset/_internal/export_guard.py +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/python/pycauset/_internal/factories.py +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/python/pycauset/_internal/formatting.py +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/python/pycauset/_internal/interop.py +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/python/pycauset/_internal/io_observability.py +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/python/pycauset/_internal/lazy_allocation.py +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/python/pycauset/_internal/lazy_ufunc.py +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/python/pycauset/_internal/linalg_cache.py +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/python/pycauset/_internal/matrix_api.py +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/python/pycauset/_internal/native.py +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/python/pycauset/_internal/native_threshold.py +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/python/pycauset/_internal/ops.py +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/python/pycauset/_internal/patching.py +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/python/pycauset/_internal/persistence.py +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/python/pycauset/_internal/properties.py +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/python/pycauset/_internal/runtime.py +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/python/pycauset/_internal/storage_debug.py +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/python/pycauset/_internal/streaming_manager.py +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/python/pycauset/_internal/submatrix_view.py +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/python/pycauset/_internal/support_matrix.py +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/python/pycauset/_internal/thunks.py +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/python/pycauset/_internal/warnings.py +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/python/pycauset/_storage.py +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/python/pycauset/causet.py +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/python/pycauset/cuda.py +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/python/pycauset/field.py +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/python/pycauset/spacetime.py +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/python/pycauset/synthetic.py +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/python/pycauset/vis.py +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/requirements-docs.txt +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/scripts/make_r1_gallery.py +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/share/eigen3/cmake/Eigen3Config.cmake +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/share/eigen3/cmake/Eigen3ConfigVersion.cmake +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/share/eigen3/cmake/Eigen3Targets.cmake +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/share/eigen3/cmake/UseEigen3.cmake +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/src/accelerators/cuda/ArnoldiDriver.cu +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/src/accelerators/cuda/ArnoldiDriver.hpp +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/src/accelerators/cuda/AsyncStreamer.hpp +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/src/accelerators/cuda/CholeskyDriver.cu +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/src/accelerators/cuda/CholeskyDriver.hpp +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/src/accelerators/cuda/CudaDevice.cu +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/src/accelerators/cuda/CudaDevice.hpp +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/src/accelerators/cuda/CudaFuture.hpp +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/src/accelerators/cuda/CudaSolver.cu +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/src/accelerators/cuda/CudaSolver.hpp +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/src/accelerators/cuda/MatmulDriver.cu +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/src/accelerators/cuda/MatmulDriver.hpp +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/src/accelerators/cuda/ScopedPinner.hpp +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/src/bindings/bind_causet.cpp +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/src/bindings/bind_complex.cpp +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/src/bindings/bind_core.cpp +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/src/bindings/bind_cuda.cpp +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/src/bindings/bind_expression.cpp +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/src/bindings/bind_math.cpp +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/src/bindings/bind_matrix.cpp +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/src/bindings/bind_op_registry.cpp +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/src/bindings/bind_vector.cpp +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/src/bindings/binding_warnings.cpp +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/src/bindings/binding_warnings.hpp +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/src/bindings/bindings_common.hpp +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/src/bindings/numpy_export_guard.hpp +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/src/bindings.cpp +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/src/causet/Sprinkler.cpp +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/src/compute/AutoSolver.cpp +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/src/compute/StreamingManager.cpp +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/src/compute/WorkloadPartitioner.cpp +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/src/compute/cpu/CpuComputeWorker.cpp +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/src/compute/cpu/CpuDevice.cpp +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/src/compute/cpu/CpuSolver.cpp +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/src/core/DebugTrace.cpp +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/src/core/IOAccelerator.cpp +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/src/core/MemoryMapper.cpp +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/src/core/ObjectFactory.cpp +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/src/core/PersistentObject.cpp +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/src/core/PromotionResolver.cpp +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/src/core/StorageUtils.cpp +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/src/core/SystemUtils.cpp +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/src/main.cpp +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/src/math/Eigen.cpp +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/src/math/LinearAlgebra.cpp +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/src/matrix/DenseBitMatrix.cpp +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/src/matrix/MatrixBase.cpp +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/src/matrix/MatrixOps.cpp +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/src/matrix/TriangularBitMatrix.cpp +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/src/matrix/TriangularMatrix.cpp +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/src/vector/DenseVector.cpp +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/src/vector/VectorBase.cpp +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/tests/BUG_LOG.md +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/tests/manual/interface_check.py +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/tests/manual/test_new_vis.py +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/tests/manual/test_spacetimes.py +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/tests/python/__init__.py +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/tests/python/debug_load.py +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/tests/python/phase3_4_verification.py +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/tests/python/test_arnoldi.py +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/tests/python/test_backing_dir_api.py +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/tests/python/test_batch_r2.py +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/tests/python/test_behaviour.py +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/tests/python/test_bh_r2.py +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/tests/python/test_bit_mixed_fastpaths.py +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/tests/python/test_blockmatrix_phase_b.py +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/tests/python/test_blockmatrix_phase_c_refine.py +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/tests/python/test_blockmatrix_phase_c_views.py +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/tests/python/test_blockmatrix_phase_d_elementwise.py +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/tests/python/test_blockmatrix_phase_d_thunks.py +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/tests/python/test_blockmatrix_phase_e_persistence.py +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/tests/python/test_blockmatrix_phase_f_integration.py +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/tests/python/test_blockmatrix_phase_h_hardening.py +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/tests/python/test_caching.py +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/tests/python/test_causet_r2_sprinkle_validate.py +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/tests/python/test_complex_float_dtypes.py +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/tests/python/test_complex_scalar.py +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/tests/python/test_complex_vector_dtypes.py +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/tests/python/test_conjugation.py +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/tests/python/test_conv_continuum_r2.py +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/tests/python/test_convert_file.py +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/tests/python/test_coordinates.py +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/tests/python/test_create_r2.py +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/tests/python/test_cuda_hardware_profile_mock.py +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/tests/python/test_curved_r2.py +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/tests/python/test_dim_r2.py +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/tests/python/test_dtype_deep_dive.py +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/tests/python/test_edge_cases_core.py +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/tests/python/test_eig_general_cpu.py +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/tests/python/test_eigen_block_matrix.py +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/tests/python/test_eigen_caching.py +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/tests/python/test_eigen_cpu.py +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/tests/python/test_eigen_op_contract.py +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/tests/python/test_eigen_streaming.py +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/tests/python/test_elementwise_r2.py +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/tests/python/test_ent_r2.py +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/tests/python/test_everyday_scenarios.py +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/tests/python/test_factories_scalar_rejection.py +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/tests/python/test_factorizations.py +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/tests/python/test_field.py +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/tests/python/test_field_r2.py +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/tests/python/test_float_types.py +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/tests/python/test_float_underpromotion_warning.py +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/tests/python/test_gpu.py +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/tests/python/test_gpu_features.py +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/tests/python/test_hybrid_correctness_suite.py +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/tests/python/test_hybrid_matmul.py +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/tests/python/test_identity.py +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/tests/python/test_inner_product_types.py +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/tests/python/test_integer_matmul_overflow_risk_warning.py +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/tests/python/test_integer_matmul_overflow_warning.py +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/tests/python/test_interface.py +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/tests/python/test_interop_extensive.py +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/tests/python/test_inverse_correctness.py +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/tests/python/test_inverse_cpu.py +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/tests/python/test_inverse_cpu_block.py +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/tests/python/test_inverse_extensive.py +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/tests/python/test_io_consistency.py +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/tests/python/test_io_observability.py +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/tests/python/test_k_matrix.py +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/tests/python/test_known_bugs.py +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/tests/python/test_lazy_evaluation.py +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/tests/python/test_lazy_ops_comprehensive.py +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/tests/python/test_linalg_phase_g_endpoints.py +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/tests/python/test_matmul_transpose.py +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/tests/python/test_matrix_hierarchy.py +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/tests/python/test_matrix_transpose.py +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/tests/python/test_minkowski_r2.py +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/tests/python/test_norm.py +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/tests/python/test_numpy_conversion_policy.py +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/tests/python/test_numpy_import_max_in_ram_bytes.py +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/tests/python/test_numpy_integration.py +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/tests/python/test_numpy_interop.py +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/tests/python/test_numpy_interop_ergonomics.py +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/tests/python/test_numpy_vector_complex_import.py +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/tests/python/test_operations.py +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/tests/python/test_operations_extensive.py +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/tests/python/test_outofcore_general.py +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/tests/python/test_outofcore_lu.py +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/tests/python/test_phase1_inventory.py +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/tests/python/test_phase7_op_contract.py +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/tests/python/test_promotion_resolver.py +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/tests/python/test_properties_compatibility.py +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/tests/python/test_properties_dispatch.py +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/tests/python/test_properties_effect_summary_mutations.py +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/tests/python/test_properties_effective_structure.py +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/tests/python/test_properties_mutation_invalidation.py +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/tests/python/test_properties_operator_wiring.py +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/tests/python/test_properties_persistence.py +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/tests/python/test_properties_propagation.py +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/tests/python/test_public_api.py +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/tests/python/test_r1_safety_comprehensive.py +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/tests/python/test_ram_storage.py +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/tests/python/test_registry_binding.py +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/tests/python/test_scalar_optimization.py +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/tests/python/test_scale_first_bit_guard.py +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/tests/python/test_skew.py +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/tests/python/test_skew_comprehensive.py +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/tests/python/test_snapshot_phase1_roundtrip.py +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/tests/python/test_snapshot_phase2_metadata_stability.py +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/tests/python/test_spacetime.py +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/tests/python/test_spacetime_extensive.py +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/tests/python/test_spacetime_r2_abc.py +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/tests/python/test_state_r2.py +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/tests/python/test_storage.py +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/tests/python/test_storage_crash_consistency.py +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/tests/python/test_storage_debug_tool.py +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/tests/python/test_storage_extensive.py +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/tests/python/test_storage_hard_break.py +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/tests/python/test_streaming_manager.py +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/tests/python/test_struct_r2.py +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/tests/python/test_sum.py +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/tests/python/test_support_matrix.py +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/tests/python/test_symmetric.py +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/tests/python/test_synth_r2.py +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/tests/python/test_temp_storage_lifecycle.py +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/tests/python/test_transposed_vectors.py +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/tests/python/test_typed_numpy_constructors.py +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/tests/python/test_types_extensive.py +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/tests/python/test_unit_vector.py +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/tests/python/test_vector.py +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/tests/python/test_vectors_advanced.py +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/tests/python/test_vis.py +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/tests/python/test_viz_r2.py +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/tests/stability/comprehensive_stability.py +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/tests/test_cow.cpp +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/tests/test_cpu_worker_contract.cpp +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/tests/test_io_accelerator.cpp +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/tests/test_lazy_comprehensive.cpp +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/tests/test_lazy_evaluation.cpp +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/tests/test_memory_governor.cpp +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/tests/test_op_registry.cpp +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/tests/test_parallel_utils.cpp +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/tests/test_symmetric_matrix.cpp +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/tools/build.ps1 +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/tools/check_native_exports.py +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/tools/check_support_matrix.py +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/tools/install_cuda12.ps1 +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/tools/release.ps1 +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/tools/run_python_tests.ps1 +0 -0
- {pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/tools/stress_100gb_matrix.py +0 -0
|
@@ -486,8 +486,11 @@ if(ENABLE_CUDA)
|
|
|
486
486
|
check_language(CUDA)
|
|
487
487
|
|
|
488
488
|
if(CMAKE_CUDA_COMPILER)
|
|
489
|
-
#
|
|
490
|
-
|
|
489
|
+
# Default to the build machine's GPU ("native"), but allow distribution
|
|
490
|
+
# builds (CI) to override with a list of target compute capabilities
|
|
491
|
+
# (e.g. "61;70;75;80;86;89") so the wheel runs on a range of GPUs and
|
|
492
|
+
# does not require a GPU on the builder.
|
|
493
|
+
set(CMAKE_CUDA_ARCHITECTURES "native" CACHE STRING "CUDA compute capabilities to target")
|
|
491
494
|
enable_language(CUDA)
|
|
492
495
|
find_package(CUDAToolkit REQUIRED)
|
|
493
496
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.2
|
|
2
2
|
Name: pycauset
|
|
3
|
-
Version: 0.6.2.
|
|
3
|
+
Version: 0.6.2.dev16
|
|
4
4
|
Summary: High-performance Causal Set matrix operations using memory-mapped files
|
|
5
5
|
Author: Bror Hjemgaard
|
|
6
6
|
License: MIT
|
|
@@ -25,6 +25,10 @@ Requires-Dist: ruff; extra == "dev"
|
|
|
25
25
|
Requires-Dist: mypy; extra == "dev"
|
|
26
26
|
Requires-Dist: pytest; extra == "dev"
|
|
27
27
|
Requires-Dist: psutil; extra == "dev"
|
|
28
|
+
Provides-Extra: gpu
|
|
29
|
+
Requires-Dist: nvidia-cuda-runtime-cu12>=12.6; extra == "gpu"
|
|
30
|
+
Requires-Dist: nvidia-cublas-cu12>=12.6; extra == "gpu"
|
|
31
|
+
Requires-Dist: nvidia-cusolver-cu12>=12.6; extra == "gpu"
|
|
28
32
|
Description-Content-Type: text/markdown
|
|
29
33
|
|
|
30
34
|
<div align="center">
|
|
@@ -137,6 +141,25 @@ cd pycauset
|
|
|
137
141
|
pip install .
|
|
138
142
|
```
|
|
139
143
|
|
|
144
|
+
### GPU acceleration (optional)
|
|
145
|
+
|
|
146
|
+
PyCauset ships **CPU-only by default** to keep the install small. The GPU backend is a
|
|
147
|
+
one-command opt-in:
|
|
148
|
+
|
|
149
|
+
```bash
|
|
150
|
+
pip install "pycauset[gpu]"
|
|
151
|
+
```
|
|
152
|
+
|
|
153
|
+
That pulls the CUDA runtime (~500 MB) and enables the `pycauset_cuda` backend. Requirements:
|
|
154
|
+
|
|
155
|
+
- NVIDIA GPU, Compute Capability 6.0+ (Pascal or newer)
|
|
156
|
+
- Linux or Windows (macOS has no NVIDIA CUDA)
|
|
157
|
+
|
|
158
|
+
If you run on a machine with an NVIDIA GPU but haven't installed the GPU backend, PyCauset
|
|
159
|
+
prints a one-line reminder at import telling you the exact command (silence it with
|
|
160
|
+
`PYCAUSET_GPU_HINT=0`). CPU remains the correct, fully-supported default — the GPU backend
|
|
161
|
+
is used automatically only when the cost model predicts it will be faster.
|
|
162
|
+
|
|
140
163
|
## Status
|
|
141
164
|
|
|
142
165
|
Pre-alpha. Release 1 (v0.6.1, the Foundation Release) shipped the numerical core — matrices, storage, and linear algebra — CPU-only (GPU parity is deferred). Release 2 (the Physics Release) adds the physics suite — arbitrary-dimension and curved spacetimes, fields, and the Sorkin-Johnston vacuum — and folds in the deferred optimization program. The current plan is tracked in the documentation.
|
|
@@ -108,6 +108,25 @@ cd pycauset
|
|
|
108
108
|
pip install .
|
|
109
109
|
```
|
|
110
110
|
|
|
111
|
+
### GPU acceleration (optional)
|
|
112
|
+
|
|
113
|
+
PyCauset ships **CPU-only by default** to keep the install small. The GPU backend is a
|
|
114
|
+
one-command opt-in:
|
|
115
|
+
|
|
116
|
+
```bash
|
|
117
|
+
pip install "pycauset[gpu]"
|
|
118
|
+
```
|
|
119
|
+
|
|
120
|
+
That pulls the CUDA runtime (~500 MB) and enables the `pycauset_cuda` backend. Requirements:
|
|
121
|
+
|
|
122
|
+
- NVIDIA GPU, Compute Capability 6.0+ (Pascal or newer)
|
|
123
|
+
- Linux or Windows (macOS has no NVIDIA CUDA)
|
|
124
|
+
|
|
125
|
+
If you run on a machine with an NVIDIA GPU but haven't installed the GPU backend, PyCauset
|
|
126
|
+
prints a one-line reminder at import telling you the exact command (silence it with
|
|
127
|
+
`PYCAUSET_GPU_HINT=0`). CPU remains the correct, fully-supported default — the GPU backend
|
|
128
|
+
is used automatically only when the cost model predicts it will be faster.
|
|
129
|
+
|
|
111
130
|
## Status
|
|
112
131
|
|
|
113
132
|
Pre-alpha. Release 1 (v0.6.1, the Foundation Release) shipped the numerical core — matrices, storage, and linear algebra — CPU-only (GPU parity is deferred). Release 2 (the Physics Release) adds the physics suite — arbitrary-dimension and curved spacetimes, fields, and the Sorkin-Johnston vacuum — and folds in the deferred optimization program. The current plan is tracked in the documentation.
|
|
@@ -10,6 +10,18 @@ This is **not** a hardware probe. It reports whether the CUDA backend is
|
|
|
10
10
|
currently active (plugin loaded + device created). If you need to attempt
|
|
11
11
|
activation, call `pycauset.cuda.enable()` first.
|
|
12
12
|
|
|
13
|
+
## Installing the GPU backend
|
|
14
|
+
|
|
15
|
+
The GPU backend is opt-in. The base install is CPU-only; add the CUDA runtime
|
|
16
|
+
(~500 MB) with:
|
|
17
|
+
|
|
18
|
+
```bash
|
|
19
|
+
pip install "pycauset[gpu]"
|
|
20
|
+
```
|
|
21
|
+
|
|
22
|
+
On a machine with an NVIDIA GPU but no GPU backend, `import pycauset` prints a
|
|
23
|
+
one-line reminder with this command (silence it with `PYCAUSET_GPU_HINT=0`).
|
|
24
|
+
|
|
13
25
|
## Returns
|
|
14
26
|
|
|
15
27
|
* **bool**: Whether the CUDA backend is active.
|
|
@@ -16,8 +16,15 @@ status lives in `R1_EXECUTION.md`.
|
|
|
16
16
|
- [ ] API lock: mark `_internal` as private (`__all__` is already curated)
|
|
17
17
|
|
|
18
18
|
### Known issues (bugs, fix post-R1, do not forget)
|
|
19
|
-
- **Teardown hang in `release_tracked_matrices()`**
|
|
20
|
-
|
|
19
|
+
- **Teardown hang in `release_tracked_matrices()`** — root-caused and fixed
|
|
20
|
+
(R2_HARDEN, 2026-08): the `MemoryGovernor`/`ComputeContext`/`ThreadPool`/
|
|
21
|
+
`OpRegistry` singletons were Meyers statics whose destruction order is undefined
|
|
22
|
+
during interpreter finalization, so `PersistentObject` destructors and `close()`
|
|
23
|
+
calling `instance()` could hang or crash. They are now heap singletons that are
|
|
24
|
+
intentionally never destroyed (destructors are empty or the OS reclaims the
|
|
25
|
+
resources at process exit), eliminating the whole class of teardown-ordering
|
|
26
|
+
hazards. The `release_tracked_matrices()` finalization skip is retained as
|
|
27
|
+
defense-in-depth (the OS reclaims mappings anyway).
|
|
21
28
|
- **Dead code / deprecated-feature sweep** — in progress (R2_HARDEN): removed the
|
|
22
29
|
import-time-skipped `test_pauli_jordan_spectrum.py` (referenced the removed
|
|
23
30
|
`.eigenvalues()` API) and the stale `*.dll.stale` build artifacts. `test_skew.py`
|
|
@@ -593,7 +593,7 @@ and recomputes; round-trip correctness pinned by test.
|
|
|
593
593
|
|
|
594
594
|
### R2_HARDEN — Robustness + Polish Backlog
|
|
595
595
|
|
|
596
|
-
Status: - [ ] (in progress: dead-code/deprecated-feature sweep started — removed the import-time-skipped `test_pauli_jordan_spectrum.py` (removed `.eigenvalues()` API) and stale `*.dll.stale` artifacts; `test_skew{,_comprehensive}.py` re-enabled after the R2_CATALOG skew eigensystem landed. Native concurrency thread-safety proven on Windows (`test_threaded_io_stress` re-enabled; 800+ concurrent construction/save/load/delete ops clean — the segfaults were the governor dangling-pointer bug, fixed). Ruff cleanup started — import-sorting (`I001`) auto-fixed across `python/pycauset`; remaining `E501`/`UP006`/`UP045` are mechanical follow-ups.
|
|
596
|
+
Status: - [ ] (in progress: dead-code/deprecated-feature sweep started — removed the import-time-skipped `test_pauli_jordan_spectrum.py` (removed `.eigenvalues()` API) and stale `*.dll.stale` artifacts; `test_skew{,_comprehensive}.py` re-enabled after the R2_CATALOG skew eigensystem landed. Native concurrency thread-safety proven on Windows (`test_threaded_io_stress` re-enabled; 800+ concurrent construction/save/load/delete ops clean — the segfaults were the governor dangling-pointer bug, fixed). Ruff cleanup started — import-sorting (`I001`) auto-fixed across `python/pycauset`; remaining `E501`/`UP006`/`UP045` are mechanical follow-ups. Teardown-hang root cause fixed (2026-08): the `MemoryGovernor`/`ComputeContext`/`ThreadPool`/`OpRegistry` singletons were Meyers statics with undefined destruction order during finalization; converted to intentionally-leaked heap singletons so object destructors can always reach them. Remaining: `__init__.py` slimming, CMake warning audit, macOS wheel portability)
|
|
597
597
|
|
|
598
598
|
Goal: close the post-R1 bug/polish backlog tracked in `documentation/internals/plans/TODO.md` so R2
|
|
599
599
|
ships professionally.
|
|
@@ -41,6 +41,20 @@ dev = [
|
|
|
41
41
|
"pytest",
|
|
42
42
|
"psutil",
|
|
43
43
|
]
|
|
44
|
+
# CUDA runtime for the optional GPU backend (`pycauset_cuda`).
|
|
45
|
+
# These are NVIDIA's official redistributable pip packages (the same mechanism
|
|
46
|
+
# PyTorch/TensorFlow use), so `pip install pycauset[gpu]` downloads the runtime
|
|
47
|
+
# DLLs automatically instead of requiring a full CUDA Toolkit install.
|
|
48
|
+
#
|
|
49
|
+
# The CUDA plugin links cudart/cublas/cusolver only (see
|
|
50
|
+
# CudaDevice.cu + CMakeLists.txt), hence exactly these three. Keep the floor at
|
|
51
|
+
# the CUDA minor the plugin is compiled against (12.6); the runtime is
|
|
52
|
+
# forward-compatible within the 12.x major.
|
|
53
|
+
gpu = [
|
|
54
|
+
"nvidia-cuda-runtime-cu12>=12.6",
|
|
55
|
+
"nvidia-cublas-cu12>=12.6",
|
|
56
|
+
"nvidia-cusolver-cu12>=12.6",
|
|
57
|
+
]
|
|
44
58
|
|
|
45
59
|
[project.urls]
|
|
46
60
|
Homepage = "https://github.com/BrorH/pycauset"
|
|
@@ -97,6 +97,25 @@ try:
|
|
|
97
97
|
except Exception:
|
|
98
98
|
pass
|
|
99
99
|
|
|
100
|
+
# One-time GPU install hint. PyCauset ships CPU-only by default; the GPU backend
|
|
101
|
+
# is opt-in via `pip install pycauset[gpu]`. On a machine with an NVIDIA GPU but
|
|
102
|
+
# no GPU backend, emit a single clear install hint (silence with
|
|
103
|
+
# PYCAUSET_GPU_HINT=0). Never blocks or breaks import.
|
|
104
|
+
try:
|
|
105
|
+
from ._internal.gpu_hint import emit_gpu_install_hint
|
|
106
|
+
|
|
107
|
+
def _gpu_backend_available() -> bool:
|
|
108
|
+
try:
|
|
109
|
+
from . import _pycauset_cuda as _cuda_mod
|
|
110
|
+
|
|
111
|
+
return bool(_cuda_mod.is_available())
|
|
112
|
+
except Exception:
|
|
113
|
+
return False
|
|
114
|
+
|
|
115
|
+
emit_gpu_install_hint(backend_available=_gpu_backend_available)
|
|
116
|
+
except Exception:
|
|
117
|
+
pass
|
|
118
|
+
|
|
100
119
|
# Import modules that depend on the native extension after it is loaded.
|
|
101
120
|
from . import field as field
|
|
102
121
|
from . import spacetime as spacetime
|
|
@@ -0,0 +1,61 @@
|
|
|
1
|
+
"""One-time GPU-install hint.
|
|
2
|
+
|
|
3
|
+
PyCauset ships CPU-only by default; the optional GPU backend (and its ~500 MB of
|
|
4
|
+
CUDA runtime) is installed separately via ``pip install pycauset[gpu]``.
|
|
5
|
+
|
|
6
|
+
To make the GPU backend *impossible to miss* without being annoying, we detect an
|
|
7
|
+
NVIDIA GPU through the *driver* API (``libcuda``/``nvcuda`` — present with any
|
|
8
|
+
NVIDIA GPU, no CUDA runtime required) and, when a GPU is present but the backend
|
|
9
|
+
is not installed, emit a single clear hint pointing at the one-command install.
|
|
10
|
+
"""
|
|
11
|
+
|
|
12
|
+
from __future__ import annotations
|
|
13
|
+
|
|
14
|
+
import ctypes
|
|
15
|
+
import os
|
|
16
|
+
import sys
|
|
17
|
+
from typing import Callable
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
def _driver_has_nvidia_gpu() -> bool:
|
|
21
|
+
"""True if an NVIDIA GPU is present, probed via the driver API (no CUDA runtime needed)."""
|
|
22
|
+
try:
|
|
23
|
+
if sys.platform == "win32":
|
|
24
|
+
lib = ctypes.WinDLL("nvcuda.dll")
|
|
25
|
+
else:
|
|
26
|
+
# Linux (macOS has no NVIDIA CUDA).
|
|
27
|
+
lib = ctypes.CDLL("libcuda.so.1")
|
|
28
|
+
lib.cuInit.argtypes = [ctypes.c_uint]
|
|
29
|
+
lib.cuInit.restype = ctypes.c_int
|
|
30
|
+
if lib.cuInit(0) != 0:
|
|
31
|
+
return False
|
|
32
|
+
count = ctypes.c_int(0)
|
|
33
|
+
lib.cuDeviceGetCount.argtypes = [ctypes.POINTER(ctypes.c_int)]
|
|
34
|
+
lib.cuDeviceGetCount.restype = ctypes.c_int
|
|
35
|
+
if lib.cuDeviceGetCount(ctypes.byref(count)) != 0:
|
|
36
|
+
return False
|
|
37
|
+
return count.value > 0
|
|
38
|
+
except Exception:
|
|
39
|
+
return False
|
|
40
|
+
|
|
41
|
+
|
|
42
|
+
def emit_gpu_install_hint(*, backend_available: Callable[[], bool]) -> None:
|
|
43
|
+
"""Emit a single install hint when a GPU is present but the backend is not installed."""
|
|
44
|
+
if os.environ.get("PYCAUSET_GPU_HINT", "1").strip() in ("0", "false", "False", "no"):
|
|
45
|
+
return
|
|
46
|
+
|
|
47
|
+
try:
|
|
48
|
+
if backend_available():
|
|
49
|
+
return # already installed — nothing to say
|
|
50
|
+
if not _driver_has_nvidia_gpu():
|
|
51
|
+
return # no NVIDIA GPU — stay quiet (CPU user)
|
|
52
|
+
except Exception:
|
|
53
|
+
return
|
|
54
|
+
|
|
55
|
+
print(
|
|
56
|
+
"[PyCauset] NVIDIA GPU detected, but the GPU backend is not installed "
|
|
57
|
+
"(running on CPU).\n"
|
|
58
|
+
" Install it with: pip install \"pycauset[gpu]\"\n"
|
|
59
|
+
" (adds ~500 MB of CUDA runtime; set PYCAUSET_GPU_HINT=0 to silence this message)",
|
|
60
|
+
file=sys.stderr,
|
|
61
|
+
)
|
|
@@ -18,7 +18,7 @@ version_tuple: tuple[int | str, ...]
|
|
|
18
18
|
commit_id: str | None
|
|
19
19
|
__commit_id__: str | None
|
|
20
20
|
|
|
21
|
-
__version__ = version = '0.6.2.
|
|
22
|
-
__version_tuple__ = version_tuple = (0, 6, 2, '
|
|
21
|
+
__version__ = version = '0.6.2.dev16'
|
|
22
|
+
__version_tuple__ = version_tuple = (0, 6, 2, 'dev16')
|
|
23
23
|
|
|
24
|
-
__commit_id__ = commit_id = '
|
|
24
|
+
__commit_id__ = commit_id = 'g402443570'
|
|
@@ -31,8 +31,13 @@ struct ConstructionScope {
|
|
|
31
31
|
};
|
|
32
32
|
|
|
33
33
|
ComputeContext& ComputeContext::instance() {
|
|
34
|
-
|
|
35
|
-
|
|
34
|
+
// Intentionally leaked: object teardown (MemoryMapper::close_file, CudaDevice
|
|
35
|
+
// destruction) can reach the context during interpreter finalization, where a
|
|
36
|
+
// Meyers singleton's destruction order is undefined. Leaking it also skips the
|
|
37
|
+
// CUDA handle teardown at exit (cublas/cusolver destroy), which the driver
|
|
38
|
+
// reclaims on process exit anyway — removing a second teardown-hang source.
|
|
39
|
+
static ComputeContext* ctx = new ComputeContext();
|
|
40
|
+
return *ctx;
|
|
36
41
|
}
|
|
37
42
|
|
|
38
43
|
bool compute_context_is_constructing() {
|
|
@@ -21,8 +21,13 @@ namespace pycauset {
|
|
|
21
21
|
namespace core {
|
|
22
22
|
|
|
23
23
|
MemoryGovernor& MemoryGovernor::instance() {
|
|
24
|
-
|
|
25
|
-
|
|
24
|
+
// Intentionally leaked: PersistentObject destructors and close() call back
|
|
25
|
+
// into the governor during interpreter finalization, where the static
|
|
26
|
+
// destruction order of a Meyers singleton is undefined. A heap singleton that
|
|
27
|
+
// is never destroyed removes that entire class of teardown hang/crash (the
|
|
28
|
+
// destructor is empty anyway; the OS reclaims the few bytes at process exit).
|
|
29
|
+
static MemoryGovernor* instance = new MemoryGovernor();
|
|
30
|
+
return *instance;
|
|
26
31
|
}
|
|
27
32
|
|
|
28
33
|
MemoryGovernor::MemoryGovernor() {
|
|
@@ -3,8 +3,10 @@
|
|
|
3
3
|
namespace pycauset {
|
|
4
4
|
|
|
5
5
|
OpRegistry& OpRegistry::instance() {
|
|
6
|
-
|
|
7
|
-
|
|
6
|
+
// Intentionally leaked (see the other ::instance() singletons): avoids any
|
|
7
|
+
// static-destruction-order hazard during interpreter finalization.
|
|
8
|
+
static OpRegistry* reg = new OpRegistry();
|
|
9
|
+
return *reg;
|
|
8
10
|
}
|
|
9
11
|
|
|
10
12
|
void OpRegistry::register_op(const OpContract& contract) {
|
|
@@ -14,8 +14,11 @@ size_t ThreadPool::get_num_threads() {
|
|
|
14
14
|
}
|
|
15
15
|
|
|
16
16
|
ThreadPool& ThreadPool::instance() {
|
|
17
|
-
|
|
18
|
-
|
|
17
|
+
// Intentionally leaked: the destructor joins workers, which can block during
|
|
18
|
+
// interpreter finalization (workers may be mid-task or blocked on I/O). Never
|
|
19
|
+
// destroying the pool avoids that teardown hang; OS reclaims the threads.
|
|
20
|
+
static ThreadPool* pool = new ThreadPool();
|
|
21
|
+
return *pool;
|
|
19
22
|
}
|
|
20
23
|
|
|
21
24
|
ThreadPool::ThreadPool(size_t threads) : stop(false) {
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/documentation/dev/FINDINGS_EVERYDAY_SCENARIOS.md
RENAMED
|
File without changes
|
{pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/documentation/dev/ONBOARDING_DTYPE_DEEP_DIVE.md
RENAMED
|
File without changes
|
{pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/documentation/dev/PyCauset Container Format.md
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/documentation/dev/performance_optimizations.md
RENAMED
|
File without changes
|
{pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/documentation/docs/assets/benchmarks/speedup_by_op.png
RENAMED
|
File without changes
|
|
File without changes
|
{pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/documentation/docs/assets/benchmarks/time_elem_dot.png
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/documentation/docs/assets/gallery/diamond_hasse.png
RENAMED
|
File without changes
|
|
File without changes
|
{pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/documentation/docs/assets/logo/favicon_old.png
RENAMED
|
File without changes
|
{pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/documentation/docs/assets/logo/logo-text-colour.png
RENAMED
|
File without changes
|
{pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/documentation/docs/assets/logo/logo-text-colour.xcf
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{pycauset-0.6.2.dev15 → pycauset-0.6.2.dev16}/documentation/docs/classes/AntiSymmetricMatrix.md
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|