Skip to main content

Damped Newton method to solve low-rank problems arising from KernelSOS and Sum-of-Squares relaxations

Project description

newton-sos

Damped Newton method to solve low-rank problems arising from KernelSOS and Sum-of-Squares relaxations

Installation

This project is implemented using both Rust and Python. The Python bindings are created using PyO3, and maturin as the build system.

maturin can be installed directly using pip:

pip install maturin

To build the Rust code and install it directly as a Python package in the current environment, run:

maturin develop --release --features python

This is equivalent to building the wheels and installing it in the current environment:

maturin build --release --out dist --features python
pip install dist/newton_sos-*.whl

Usage

Rust

An example is provided in examples/polynomial.rs. To run it, use:

cargo run --example polynomial --release

Solving an SDP using the library can be done in three steps. First, define a problem by constructing a Problem struct. Then, compute the kernel matrix using the Problem::initialize_native_kernel method with the desired kernel parameters. Finally, call the solve method on the Problem instance to solve the optimization problem:

let problem = Problem::new( ... ); // Define the problem
problem.initialize_native_kernel( ... ); // Compute the kernel matrix
let result = solve(problem, ... ); // Solve the optimization problem

Another function called solve_parallel is also provided to solve multiple problems in parallel.

Python

An example is provided in examples/polynomial.py. To run it, use:

python examples/polynomial.py

after installing the package as described above.

The steps to solve an SDP using the Python bindings are similar to the Rust version. First, define a problem by creating an instance of the Problem class. Then, compute the kernel matrix using the initialize_native_kernel method with the desired kernel parameters. Finally, call the solve method on the Problem instance to solve the optimization problem:

problem = Problem( ... )  # Define the problem
problem.initialize_native_kernel( ... )  # Compute the kernel matrix
result = problem.solve( ... )  # Solve the optimization problem

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

newton_sos-0.2.2.tar.gz (30.0 kB view details)

Uploaded Source

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

newton_sos-0.2.2-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.1 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

newton_sos-0.2.2-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (661.4 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

newton_sos-0.2.2-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (780.3 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

newton_sos-0.2.2-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (594.2 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

newton_sos-0.2.2-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (713.0 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

newton_sos-0.2.2-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (662.6 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

newton_sos-0.2.2-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (780.9 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

newton_sos-0.2.2-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (596.0 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

newton_sos-0.2.2-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (714.2 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

newton_sos-0.2.2-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (662.9 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

newton_sos-0.2.2-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (781.6 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

newton_sos-0.2.2-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (595.7 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

newton_sos-0.2.2-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (714.1 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

newton_sos-0.2.2-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl (659.2 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ s390x

newton_sos-0.2.2-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (775.1 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ppc64le

newton_sos-0.2.2-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (591.0 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARMv7l

newton_sos-0.2.2-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (709.2 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64

newton_sos-0.2.2-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

newton_sos-0.2.2-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl (660.8 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ s390x

newton_sos-0.2.2-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (780.5 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ppc64le

newton_sos-0.2.2-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (592.4 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARMv7l

newton_sos-0.2.2-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (710.5 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

newton_sos-0.2.2-cp314-cp314-macosx_11_0_arm64.whl (597.0 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

newton_sos-0.2.2-cp314-cp314-macosx_10_12_x86_64.whl (899.2 kB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

newton_sos-0.2.2-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl (659.6 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ s390x

newton_sos-0.2.2-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (775.3 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ppc64le

newton_sos-0.2.2-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (589.5 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARMv7l

newton_sos-0.2.2-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (709.2 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARM64

newton_sos-0.2.2-cp313-cp313-win_amd64.whl (786.7 kB view details)

Uploaded CPython 3.13Windows x86-64

newton_sos-0.2.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

newton_sos-0.2.2-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (661.0 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

newton_sos-0.2.2-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (780.6 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

newton_sos-0.2.2-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (592.1 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

newton_sos-0.2.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (711.1 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

newton_sos-0.2.2-cp313-cp313-macosx_11_0_arm64.whl (596.4 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

newton_sos-0.2.2-cp313-cp313-macosx_10_12_x86_64.whl (899.2 kB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

newton_sos-0.2.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

newton_sos-0.2.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (661.2 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

newton_sos-0.2.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (780.5 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

newton_sos-0.2.2-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (592.1 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

newton_sos-0.2.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (710.8 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

newton_sos-0.2.2-cp312-cp312-macosx_11_0_arm64.whl (596.4 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

newton_sos-0.2.2-cp312-cp312-macosx_10_12_x86_64.whl (900.1 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

newton_sos-0.2.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

newton_sos-0.2.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (659.6 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

newton_sos-0.2.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (780.0 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

newton_sos-0.2.2-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (593.5 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

newton_sos-0.2.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (710.7 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

newton_sos-0.2.2-cp311-cp311-macosx_11_0_arm64.whl (600.5 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

newton_sos-0.2.2-cp311-cp311-macosx_10_12_x86_64.whl (903.3 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

newton_sos-0.2.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

newton_sos-0.2.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (659.4 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

newton_sos-0.2.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (780.6 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

newton_sos-0.2.2-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (593.6 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

newton_sos-0.2.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (710.6 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

newton_sos-0.2.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

newton_sos-0.2.2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (662.1 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ s390x

newton_sos-0.2.2-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (782.0 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ppc64le

newton_sos-0.2.2-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (595.2 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARMv7l

newton_sos-0.2.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (712.3 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

newton_sos-0.2.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

newton_sos-0.2.2-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl (661.9 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ s390x

newton_sos-0.2.2-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (781.7 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ppc64le

newton_sos-0.2.2-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (595.4 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARMv7l

newton_sos-0.2.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (712.3 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

File details

Details for the file newton_sos-0.2.2.tar.gz.

File metadata

  • Download URL: newton_sos-0.2.2.tar.gz
  • Upload date:
  • Size: 30.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: maturin/1.10.2

File hashes

Hashes for newton_sos-0.2.2.tar.gz
Algorithm Hash digest
SHA256 812f27dfe9615be55706c5b197703801c649c9c68cdb637f92ea78a8af30794f
MD5 ae65e29ed45df793db2889556e021ce6
BLAKE2b-256 5e0e38ed897f025316807f8a24f0a12ae207b71402c6f5f34086273265792224

See more details on using hashes here.

File details

Details for the file newton_sos-0.2.2-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for newton_sos-0.2.2-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c52e33c6c15a715b96923f80cdde030c79243d8dd8cf0a8057cb9761760d0abc
MD5 f8da3ad745cb74a8810967f97ca4dee1
BLAKE2b-256 4429cc55da4039cb324e425dc688a61f3e42607df416b97b076280f0f5f8ec34

See more details on using hashes here.

File details

Details for the file newton_sos-0.2.2-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for newton_sos-0.2.2-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 ab32c8b353d677eabf010f3252d05dce47b444c068a899f0a7eff4ad7e0bffa7
MD5 4f9c2d625493ded93b31b118268e3d33
BLAKE2b-256 952d446f86a39b2bb2ff775fbfa60326c1228dee636ac85f97c601b849913a20

See more details on using hashes here.

File details

Details for the file newton_sos-0.2.2-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for newton_sos-0.2.2-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 d38cea1ad0a45c3b6bc0e0009cf568bb96f30e1387777f1387b0e93d3f3a2f42
MD5 2d0f6000739d54a14a7ad0571391997f
BLAKE2b-256 46b877eb7048d76c033d0617bf183d42261571e8daf9a2d29798792007ec6175

See more details on using hashes here.

File details

Details for the file newton_sos-0.2.2-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for newton_sos-0.2.2-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 65da796e575056247384de2191c39d110807d2092a3ea399bb01ec78c2ced0e0
MD5 90a4e967b4fb71ca355192ee72c433e3
BLAKE2b-256 02c64592946c44fbe24d45d84bd3361da7e0bcf7d31d8cdeaa216b8b150c08b2

See more details on using hashes here.

File details

Details for the file newton_sos-0.2.2-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for newton_sos-0.2.2-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a88df8358ddf0b0dfa018a0476710bb18e7820996bb54da6328fda1f11e9fc84
MD5 71661ed1c41c9d1d36b5ce10be6cf66a
BLAKE2b-256 5ac2777966dd6d0d1df2a1365ce984be388f7095403296c5b495d279bc887644

See more details on using hashes here.

File details

Details for the file newton_sos-0.2.2-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for newton_sos-0.2.2-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 16eed48af9c2c01bc4bf0fc7ad30c6c3edcd05ab835f478067028bad2e354754
MD5 3236a323473c57cda7582b6c6e2a7d4a
BLAKE2b-256 caf51f8f875267a051a373ffbe7bf28f28ad33ee77e5230f390fa240c171980e

See more details on using hashes here.

File details

Details for the file newton_sos-0.2.2-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for newton_sos-0.2.2-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 d2ef56633290fb1e0c9eb98491307007f4535ec3c65fb4bf5e99e5f29f367d97
MD5 4bfda382c5a65e3f8f3871871ac9032d
BLAKE2b-256 5d501849411707edc3e97f5a9473fb34f3e3ff9e818fb73322371e80143e9038

See more details on using hashes here.

File details

Details for the file newton_sos-0.2.2-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for newton_sos-0.2.2-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 8e5c3727b036b2435290bc2aca5783b0b3088ddfd3a035847fbf772dad3505f6
MD5 d79057e0019d5bdd52f21410e8d6a9fb
BLAKE2b-256 31766fb13ab85ab02842ed10d4aaefeb1f4269584919cfaf2e8060c5fe0346bc

See more details on using hashes here.

File details

Details for the file newton_sos-0.2.2-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for newton_sos-0.2.2-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 97e8a008d17c664df4689c1a38d90b2d58c4f4852f9c610ade860cd69c7e8c6d
MD5 bb4ce37628cc6cedce6e190e32fb4125
BLAKE2b-256 9880b3c002e8f35f2550f72854a0d5072fd55e7592aa34c57d61e72cf95aa375

See more details on using hashes here.

File details

Details for the file newton_sos-0.2.2-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for newton_sos-0.2.2-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 90c2609e7a5f087f8704e4a3dc16b0814ad41d9f4c39693b6f901149e8edb0fe
MD5 38349b350a0cbe6e5207183b2b5baec0
BLAKE2b-256 a9d90a547a375b7008781b695a48d0254e2fa385369689eb16d07be01feb1845

See more details on using hashes here.

File details

Details for the file newton_sos-0.2.2-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for newton_sos-0.2.2-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 5852803e100070e7af4eb634ed04546b4e0641c64d8d4674c21d47584f87daec
MD5 bb6e225bd612a58bfea4510acebb2ae6
BLAKE2b-256 8c431009f3c5dcaf9bfadbcd554016e6e29a1a0b6080ce9d96dfdb3415bc25b3

See more details on using hashes here.

File details

Details for the file newton_sos-0.2.2-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for newton_sos-0.2.2-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 2c0932e8866d3739a775d9845fa716b359aa92326abc57b8eec26a6d81059733
MD5 4ff346a0d33739512ff7994eaf399af4
BLAKE2b-256 2e5862b6e7532c4583d3a228e3d3f8470102f9156e09b9b4a45787d2d32e2e29

See more details on using hashes here.

File details

Details for the file newton_sos-0.2.2-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for newton_sos-0.2.2-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d2c7d452192a9d4c7f9d8f4fbcbd4639dd671a90295f6dd22aa05e737eef2d27
MD5 e503a084a0c0cadfe8cb1df57fe95aae
BLAKE2b-256 13b5330554a605e4ec2f303e54fa1985cec7496876cb56214ded51ed0ed2d966

See more details on using hashes here.

File details

Details for the file newton_sos-0.2.2-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for newton_sos-0.2.2-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 b3c3e6662b33936db853a40eadc2b3414f04dce045bed3d6343c2bcaa98c658f
MD5 a913dbe05453dfc4cec14b2c05ba8a38
BLAKE2b-256 fbefe68f7b5f67462fac4ec8c0a80eb54ed660b10d9f3a6bbeb2430a7761874f

See more details on using hashes here.

File details

Details for the file newton_sos-0.2.2-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for newton_sos-0.2.2-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 3ff3ecea536c2ccc7696da8a46f5d3d9ee3d16e96d9238453382b3543a9c38ea
MD5 97bbda4837d3660c4539f2c148db4225
BLAKE2b-256 f5cc9f94dc6839e6a82e96391a3bf2616dbb5174ae6d1394f8a44803ce2d98e2

See more details on using hashes here.

File details

Details for the file newton_sos-0.2.2-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for newton_sos-0.2.2-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 e2bfad022061ffeb208abb575d8705d28fc46bef8f08d66b6585b6e42363b1f5
MD5 f1d633ddf66185e9652e4cb05af658f4
BLAKE2b-256 350918722cec8ff2eba0a4e51fc8a228a9b112f206d6aca51e60e6ca412cd5ee

See more details on using hashes here.

File details

Details for the file newton_sos-0.2.2-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for newton_sos-0.2.2-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 58f86f271c38d22ce1a0433e104040b8258f18f770304334f84942d54e21b3bc
MD5 c5ec5b50d92822f4aaaf518ff9d19d4e
BLAKE2b-256 e711dae46b88a31bb0d9327272e23eb94f9e889a19802f81217ece5e76bcf68b

See more details on using hashes here.

File details

Details for the file newton_sos-0.2.2-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for newton_sos-0.2.2-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7454fdfadd8417581ce35b2371c717af5574b06171c3ffe292b3640fe5ee06d3
MD5 49cb6e50f0a815debb1c10ccedd10322
BLAKE2b-256 2735adb672de03596cf331b638a73c39f294e9f6e1c826f37da88b21d30080a5

See more details on using hashes here.

File details

Details for the file newton_sos-0.2.2-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for newton_sos-0.2.2-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 b3eb1b01f7fdbc507ab32d21023cef79bad747e82e36c89299b9ca1715a5f8f5
MD5 8127f9e905cd3cfaed326b0c68bdf79f
BLAKE2b-256 bf37cc149d806ac7a6aa50d35a9e28ca16ec0697b8fd4c45e66d3347dae71ef7

See more details on using hashes here.

File details

Details for the file newton_sos-0.2.2-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for newton_sos-0.2.2-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 4fbb04b659a470d22868851879e36290613661bf147d36e00dd6946cff2b7751
MD5 e4b75dc8c17421bd1aba1e70043049e1
BLAKE2b-256 edfbba4185e629570a57f9d8a1dcdb720e0338f187b952c77217c4a4c25ebf9c

See more details on using hashes here.

File details

Details for the file newton_sos-0.2.2-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for newton_sos-0.2.2-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 ea33160119e26c81a6c88d0bc0cbe06405d00eea9bcad234cf45db213076e933
MD5 baea2ac7d388a43546ba77d32194f82c
BLAKE2b-256 b19a078545b77d980badacb63f3bfa0d37aaeae224f13b87e19db12656ae9b03

See more details on using hashes here.

File details

Details for the file newton_sos-0.2.2-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for newton_sos-0.2.2-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 cfe88785c5582aa2d8fb807a3a815989178f4a71ee86660879ca40da4d82fb0b
MD5 12824b4bf55f3cf19dfc392be416fbd3
BLAKE2b-256 7280f89d44bd92066439feb5b1cd3ec28cada8ff663f10bf6d8e79c8cee0689d

See more details on using hashes here.

File details

Details for the file newton_sos-0.2.2-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for newton_sos-0.2.2-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f1799ee54af985f6ca2a071cb730cae70d558b6d989f2881e913c28f66756314
MD5 c221c63166c9433af837b132a918b70b
BLAKE2b-256 187b7ebbc796ea5ede41fc8c356a4474c2348973a534b9eefc18d7c46f65008d

See more details on using hashes here.

File details

Details for the file newton_sos-0.2.2-cp314-cp314-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for newton_sos-0.2.2-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 d93855ca6fef4bb82e87dd2e87d457e4a7e765ddada98ba880bb3b8a7f6bf581
MD5 0528200757c429d46feffc98a9cca057
BLAKE2b-256 5b96003dba7e10e002717d8dbfc08e70cc59f4e7dacc773862e0df4e172fc6a9

See more details on using hashes here.

File details

Details for the file newton_sos-0.2.2-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for newton_sos-0.2.2-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 3c6f87bb91f3c647565abdadb18a1d850ba8c552f5aade985eef67745214f775
MD5 269c11a52eed1a497cb976d1a9221689
BLAKE2b-256 57506177eb69b395674afd87e95438ce5657c4ae4b6568a0fbf2b4e924b3f630

See more details on using hashes here.

File details

Details for the file newton_sos-0.2.2-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for newton_sos-0.2.2-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 a8c0286cdd1fabc3273327152bd3bce60542b5a34f482a0317d32745bcaba730
MD5 9243fb4dfd88646fb521ed4e618938e7
BLAKE2b-256 5218a40882a524149236b0651a217b010dfb7491cfb816d98437735b50fa94b1

See more details on using hashes here.

File details

Details for the file newton_sos-0.2.2-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for newton_sos-0.2.2-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 9162b6c0ee7ddbe3cbb654ef21fb356b534cc018d5dce2213ae64f766292a9f4
MD5 c1ffd3874bb6108d1cb49a4b04b59aef
BLAKE2b-256 4f257cb6bb4722219c9a35537985cafed7b79d794961ca63a82ddcb3774aa7c1

See more details on using hashes here.

File details

Details for the file newton_sos-0.2.2-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for newton_sos-0.2.2-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 9306fa81d1d374f8c88c6a37dff678ced243de8b217877f9f57562f84e5e4e43
MD5 802d7d8bcaf07f5ae02a590c00cbe29a
BLAKE2b-256 304b1fa2f1be78777a365c04f40f583b3633bf14327b67085199e3100b5919ae

See more details on using hashes here.

File details

Details for the file newton_sos-0.2.2-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for newton_sos-0.2.2-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 ea6ab1356544ae06aeaaa800a37c549a7638764e9560e50e11d57ab2b8d6826d
MD5 0a268506917aa3e9fdac0626dce63d26
BLAKE2b-256 053b476c12168aa05f3215022b6327ff09fc4b2b153038dc28a6fbace198995b

See more details on using hashes here.

File details

Details for the file newton_sos-0.2.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for newton_sos-0.2.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 19350d9293f78a1d09ccf167c8d0f7891e6653f7136893b80e259b1860d293dc
MD5 657b942087db6cdcef0a8124f9bc4a09
BLAKE2b-256 55cadedca75e07d6e605a217b8181096604e8d322ba48cf7e85c512fca4ead33

See more details on using hashes here.

File details

Details for the file newton_sos-0.2.2-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for newton_sos-0.2.2-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 4bc76319bf69bfe0b5c46df30e53ef7573392ff4f05fd384ad6df8133ef6006a
MD5 3a302286894449078a9e54550c512372
BLAKE2b-256 f1b4b8f8249923195e9b1d8516e9d3b33e5392710e7a0e72fb4bcef0a91149a7

See more details on using hashes here.

File details

Details for the file newton_sos-0.2.2-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for newton_sos-0.2.2-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 cb850bd584b9cc2687a72f084e7721dafb520d81dd863f7908dbf8b378bdc935
MD5 d7685656bc53a67791726c37ce1ef21c
BLAKE2b-256 e8c24fcb500386c7db8367b33fd2f17fed79e992b43b2907c5c6bbd42d5b45c9

See more details on using hashes here.

File details

Details for the file newton_sos-0.2.2-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for newton_sos-0.2.2-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 31d3dcd8a404fcf2a70e92ada3f18cf446e87fd1d8c2922ca345cadc547333e8
MD5 22965f729dff088ce8ae077bab30bdf1
BLAKE2b-256 b7489dc287f198b00eccee989eeec64a9a20fefc6b61a43affa639ac29066af0

See more details on using hashes here.

File details

Details for the file newton_sos-0.2.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for newton_sos-0.2.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 33623a379ca69807b54bc603669dc5c9d1dceb0a048589f709736260c1df12de
MD5 48b53b766592f846d5b043fba8e1c4f1
BLAKE2b-256 09e78fb85fbe5d41c6b409bb21719207a0c1f1b7396afba29b5b78dd0cc93089

See more details on using hashes here.

File details

Details for the file newton_sos-0.2.2-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for newton_sos-0.2.2-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 21b1aaf6372c14f13119268085bdaef57321db564242c53fdb5cec99234f1923
MD5 252b2564c5d01ac864bb12a08febd8e8
BLAKE2b-256 93d5f24a2c274eacdd7c59217dc12f0ad80a591b1e84ccbbab73a5da54e97df2

See more details on using hashes here.

File details

Details for the file newton_sos-0.2.2-cp313-cp313-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for newton_sos-0.2.2-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 5be2fe1120c6a6c12ebd935e364bcecaed21417e0970970c70d0079da00383a7
MD5 98441601d1d5e3bdb50d6c76f73cc521
BLAKE2b-256 16fa96ef58f41e464710edc73238ff7f0f83e3fdba1eb7aff98b4ad664ff08c3

See more details on using hashes here.

File details

Details for the file newton_sos-0.2.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for newton_sos-0.2.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 01fec9d5d6b431b69762e31019006136f4494bada82cf97d451347c81bcb0ace
MD5 efcc969960f7be748c654b658ea643dc
BLAKE2b-256 c54f35589a083fc43a73aab7d0d1a08f3870f0ed242cf4ac8e8958447a498e55

See more details on using hashes here.

File details

Details for the file newton_sos-0.2.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for newton_sos-0.2.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 555fd7fff8bbfe0589d2a94bca55a2e2a562aebe1651cab9d459fea5575362ad
MD5 edc627bd8f7d2dd2dbd95159b50bd75f
BLAKE2b-256 1d74f8d214224d8af15dba370c2f83316744c2f191f1036f41aeb4c27ed3c69b

See more details on using hashes here.

File details

Details for the file newton_sos-0.2.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for newton_sos-0.2.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 6438bd3e60512b6d0d1f55b054b48205295ffb15adb96db6d40bab46a804608f
MD5 1d90f553ed5a9268f4995a586a8ca92f
BLAKE2b-256 92379b43971a7ff0a7dbbfee193c116ea7c0a10b1972310aa91e2e3e93ec82d5

See more details on using hashes here.

File details

Details for the file newton_sos-0.2.2-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for newton_sos-0.2.2-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 ce047502e2072e2646e64d12fed49cc822ec6269660ad27070d92478a025a4be
MD5 5d196a655e39808229e28eba1ad3a69b
BLAKE2b-256 af9aae05610ef524dd717200aed2936275a1f21ae63525f1c5aa4bc1631159c6

See more details on using hashes here.

File details

Details for the file newton_sos-0.2.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for newton_sos-0.2.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 cd08e1713dfcea6e153c3fbdd2d6f9665b71507a918fec411ce100a0f04f8b17
MD5 0d625a9fb8d0667872ed996a5f561692
BLAKE2b-256 aec8dff6233eef3182cbe7189a70c681704f779aed8bab682f9cc057a8eb0f36

See more details on using hashes here.

File details

Details for the file newton_sos-0.2.2-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for newton_sos-0.2.2-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3b69d25830521ff591db5c5e1365b11c575b79a0acc555b7753dbf953c68de64
MD5 98078eca2fddb3635d6418ffbca41351
BLAKE2b-256 b65b7b2e90ce408226f4694af026c58bd821cbffce06a39179cec0815127f64c

See more details on using hashes here.

File details

Details for the file newton_sos-0.2.2-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for newton_sos-0.2.2-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 c37bde37a28e05136fc883e9e2d9460a17a519e635527e1d8847e83aed25fdab
MD5 d1527bc6c36ff0a84e336b95c515eb5b
BLAKE2b-256 eda6221cc107f591af6de1857fc18b36685a3f0e1bd99d5d64f3c5a43d09ce60

See more details on using hashes here.

File details

Details for the file newton_sos-0.2.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for newton_sos-0.2.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a25ac8725151a377ba154f30ec4fa16aadf71bb7d3f77ca9cc710b543ef84d19
MD5 eda539f07c267ac6a88a16cc527d45b8
BLAKE2b-256 7976372d5e995a36b5ce65619bca432b8d636d9825e7c93acf6d1650d22fbcba

See more details on using hashes here.

File details

Details for the file newton_sos-0.2.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for newton_sos-0.2.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 80302ec856759fe7031dbca4ef8e46828aa3e22c7ad7bf95bf57c453f416bbb1
MD5 a9665d5170fa47bc25fbb7c44ed99bcd
BLAKE2b-256 433a757738b04d79d260e8fe5160a937fa9220c66756c0040de41364bab0ba55

See more details on using hashes here.

File details

Details for the file newton_sos-0.2.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for newton_sos-0.2.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 a0d316824794c9b0111335d12c95520ffd912269e422dcf9b62d26e8828ebeeb
MD5 4a9dede1911b522683a050ea1f9311ae
BLAKE2b-256 78cf70eac8c8bc85dbc360fad7f760ca49544473e6946226e27c2f3c191e9f6d

See more details on using hashes here.

File details

Details for the file newton_sos-0.2.2-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for newton_sos-0.2.2-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 dd79ab9d613ebd95b3906741a0a60883ad5d11abdf3656aa11c59400e8ac95d8
MD5 0062174fbbfe72f4d195a5dff19a408c
BLAKE2b-256 b0a14981813917dda03e0b7cf4f511e4a8f42705e06eefb4419d454aab7d595d

See more details on using hashes here.

File details

Details for the file newton_sos-0.2.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for newton_sos-0.2.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f510eb1f3018b8072f701de50aa08469e3ad7779bd91d0eb5c05a1e9710d8e53
MD5 0ea592803ddbc1551e4fc1ae278095f6
BLAKE2b-256 40af2900e7167e3b5d94b7df3d6472a32b1d5b6c88a1223c4efaf613d212abbd

See more details on using hashes here.

File details

Details for the file newton_sos-0.2.2-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for newton_sos-0.2.2-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ad9e72c03ed1cbaf9e3eaa10037c7f72787d63edb9c8cc8b64dd3aeae5bf208c
MD5 63a6cb0d9e2f2bcfb78f7950c5f1d870
BLAKE2b-256 7404491b7588613f9c3e23572ee67cfac7f767f395c9617bcfa6bf46f79e90c8

See more details on using hashes here.

File details

Details for the file newton_sos-0.2.2-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for newton_sos-0.2.2-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 38e2de37c5dbbdf4420796bcb2f76c6f12ab296fd0c05a268ff3024b81b9232d
MD5 496790346ea92501bbd70024e97ca5a9
BLAKE2b-256 ea7a56b6236b537f3cfee0f2b4aa776c4e3fce36c643fef41071e5872137c1b3

See more details on using hashes here.

File details

Details for the file newton_sos-0.2.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for newton_sos-0.2.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d7cb9c94b3c22c22f6d98a8f3d08127384c53296cd889b6337b33f9f8caae2db
MD5 41a53328b3060b9e2d73c6218b58fb8d
BLAKE2b-256 95795cda832ae4bc47c478c826834ec2445c722c8bf911d66e652381cef65e8c

See more details on using hashes here.

File details

Details for the file newton_sos-0.2.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for newton_sos-0.2.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 b53a0f6328bcee33819533d5713e707915132b1f61089337fac018c545b792fc
MD5 1be26b68e4db6303abd75a3b6f4c359f
BLAKE2b-256 bb2d3261c7cdc08c12df711b5f3b83ad7124012a0b3aa9fe483da93592f7a9c6

See more details on using hashes here.

File details

Details for the file newton_sos-0.2.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for newton_sos-0.2.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 17289fb9d1f009721224e5f34e3f5519e57d18c3fba21154407a9cdc46c8fc93
MD5 a8ed8f39a1095fb79ec0426df3f264c2
BLAKE2b-256 5d263bf72ac56e46a42cb441c1b59e57a42646a14c4b09d716f195a9a7f75bd3

See more details on using hashes here.

File details

Details for the file newton_sos-0.2.2-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for newton_sos-0.2.2-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 aa2b04839a33f84ee15a0bddd24e938ce1a7a380384a09144dd2a693c96c6631
MD5 d1267d52bb06aa5c2092791c8d5f2400
BLAKE2b-256 8ccc2e6fe71f9442d471eab7ccb23dc065619d894d1e17b5064094991904aa0c

See more details on using hashes here.

File details

Details for the file newton_sos-0.2.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for newton_sos-0.2.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 dadec0f3ed868d773e393d666d598a3e32892df80778cf609ec71cca15b19aa8
MD5 85f3daf827c22962fdf443fe65c71505
BLAKE2b-256 4271ece3bd892c2121d6064e3bf00a4468740845c9e8288e98b8c57b2ae42e66

See more details on using hashes here.

File details

Details for the file newton_sos-0.2.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for newton_sos-0.2.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 66c1e0d3dedc8e9f8e567f44e836d04a96c0a19c7d2fdf1708c30429ce4dd251
MD5 d3bac53744026dc1404b561484e46f7d
BLAKE2b-256 7719947aaf83872ade0a61deb4a8b0d11e6cd4ab28d4d718be8acb2db01d534c

See more details on using hashes here.

File details

Details for the file newton_sos-0.2.2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for newton_sos-0.2.2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 9c8e3697c410b609b3f6087530fde19cff160fcd38b6a31a5764792a2b35564c
MD5 c81663635b9e860519214a047231d054
BLAKE2b-256 805290af7ec7949a3aede8073fc36079e7f7afd82f8bfd0f390393654104e1a6

See more details on using hashes here.

File details

Details for the file newton_sos-0.2.2-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for newton_sos-0.2.2-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 73f8ae03e51d1b87eb2b2d57a5b8b2fb67c0250644445967d3da4e161720e62c
MD5 eb0f32af395738ded65e28aeb884ec8a
BLAKE2b-256 a94f6fbff391f03484b1170fdd12cdb9dee5658ff0a7234efb99075efa587c99

See more details on using hashes here.

File details

Details for the file newton_sos-0.2.2-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for newton_sos-0.2.2-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 52dbb3475782f67a78f380db497f31ef8dad5738c017fa2c5402fec29eed9117
MD5 e7098ffc9751c985c1bbcee7fa26c1a1
BLAKE2b-256 eaa6d876a07c89f96f823ea78de3473294debb0cdbe8f99fda75b3b2cfeaf455

See more details on using hashes here.

File details

Details for the file newton_sos-0.2.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for newton_sos-0.2.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b81fca1506fec3fb384b31875a079f85a6e24cbe79739a14eed3977d36e06d8c
MD5 0c10a62d9edeef99890bf6ae5b4d04ae
BLAKE2b-256 31bfd3909be47792f570f24fcd481c3286eccea7735987ba058c5f9e6fb17917

See more details on using hashes here.

File details

Details for the file newton_sos-0.2.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for newton_sos-0.2.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b087e410c38bd7a31d3a97074a4d962baeef174df93c34331b0a0944dbf4bb02
MD5 1552ce5920b88d88c229fad9e2a2a22d
BLAKE2b-256 d5214db138675b14d306ff114c024840e92b91a7feceb71422b8907ece2adfb8

See more details on using hashes here.

File details

Details for the file newton_sos-0.2.2-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for newton_sos-0.2.2-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 4046e6440b307dbf7e7956d5dbe02d93e45b054b38cad911764f79c321689f28
MD5 bcedd2ac0ce74d1a6d5e1de1595600d8
BLAKE2b-256 a5772e570ec55d48a20cc4411c81afd59f23c2a9f35d5576845388aaebd40d3e

See more details on using hashes here.

File details

Details for the file newton_sos-0.2.2-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for newton_sos-0.2.2-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 77d50d200362fe6aba6c0137fa87d91ee51fc6dc57318a95455691253b1f7171
MD5 d0c64feeb3a563c338c0afd3ede3e336
BLAKE2b-256 e6cfaedbd1a16538c1822d9fa6b890aa6a73bc32819c2ccac056d29efa429775

See more details on using hashes here.

File details

Details for the file newton_sos-0.2.2-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for newton_sos-0.2.2-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 ccf03fe3a10ecc7bc467b4cdab5b351204d05101d03f55f4a887cf0f31d87b78
MD5 b3900344b3e43fa1453de400d6517cfe
BLAKE2b-256 624983bd06520111735eb2623ddb3f0ed05fcc668ea4ecba08993fbb612c2cae

See more details on using hashes here.

File details

Details for the file newton_sos-0.2.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for newton_sos-0.2.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 450252eb09ebe9f4832ee05705c587a44d944383bffa493f33da7e1130b2bd9a
MD5 d8aab68bba2ab03ca7709b9adcf65bfd
BLAKE2b-256 a4c8131fb83c6147fc43f7b6cfe6ab81f8660529f4ad85db0ee03e99c1208903

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page