Test functions for optimization algorithms
Project description
argmin-testfunctions-py
Website | Book | Docs (latest release) | Docs (main branch)
This Python module makes the test functions of the argmin_testfunctions
Rust crate available in Python.
For each test function the derivative and Hessian are available as well.
While most functions are two-dimensional, some allow an arbitrary number of parameters.
For some functions additional optional parameters are accessible, which can be used to modify the shape of the test function.
For details on the individual test functions please consult the docs of the Rust library, either for the
latest release or the
current main branch.
Examples
from argmin_testfunctions_py import *
# Ackley (arbitrary number of parameters)
c = ackley([0.1, 0.2, 0.3, 0.4])
g = ackley_derivative([0.1, 0.2, 0.3, 0.4])
h = ackley_hessian([0.1, 0.2, 0.3, 0.4])
# Ackley with custom (optional) parameters a, b, and c.
c = ackley([0.1, 0.2, 0.3, 0.4], a = 10.0, b = 0.3, c = 3.14)
g = ackley_derivative([0.1, 0.2, 0.3, 0.4], a = 10.0, b = 0.3, c = 3.14)
h = ackley_hessian([0.1, 0.2, 0.3, 0.4], a = 10.0, b = 0.3, c = 3.14)
# Beale
c = beale([0.1, 0.2])
g = beale_derivative([0.1, 0.2])
h = beale_hessian([0.1, 0.2])
# Booth
c = booth([0.1, 0.2])
g = booth_derivative([0.1, 0.2])
h = booth_hessian([0.1, 0.2])
# Bukin No. 6
c = bukin_n6([0.1, 0.2])
g = bukin_n6_derivative([0.1, 0.2])
h = bukin_n6_hessian([0.1, 0.2])
# Cross-in-tray
c = cross_in_tray([0.1, 0.2])
g = cross_in_tray_derivative([0.1, 0.2])
h = cross_in_tray_hessian([0.1, 0.2])
# Easom
c = easom([0.1, 0.2])
g = easom_derivative([0.1, 0.2])
h = easom_hessian([0.1, 0.2])
# Eggholder
c = eggholder([0.1, 0.2])
g = eggholder_derivative([0.1, 0.2])
h = eggholder_hessian([0.1, 0.2])
# Goldstein-Price
c = goldsteinprice([0.1, 0.2])
g = goldsteinprice_derivative([0.1, 0.2])
h = goldsteinprice_hessian([0.1, 0.2])
# Himmelblau
c = himmelblau([0.1, 0.2])
g = himmelblau_derivative([0.1, 0.2])
h = himmelblau_hessian([0.1, 0.2])
# Holder-Table
c = holder_table([0.1, 0.2])
g = holder_table_derivative([0.1, 0.2])
h = holder_table_hessian([0.1, 0.2])
# Levy (arbitrary number of parameters)
c = levy([0.1, 0.2, 0.3, 0.4])
g = levy_derivative([0.1, 0.2, 0.3, 0.4])
h = levy_hessian([0.1, 0.2, 0.3, 0.4])
# Levy No. 13
c = levy_n13([0.1, 0.2])
g = levy_n13_derivative([0.1, 0.2])
h = levy_n13_hessian([0.1, 0.2])
# Matyas
c = matyas([0.1, 0.2])
g = matyas_derivative([0.1, 0.2])
h = matyas_hessian([0.1, 0.2])
# McCorminck
c = mccorminck([0.1, 0.2])
g = mccorminck_derivative([0.1, 0.2])
h = mccorminck_hessian([0.1, 0.2])
# Picheny
c = picheny([0.1, 0.2])
g = picheny_derivative([0.1, 0.2])
h = picheny_hessian([0.1, 0.2])
# Rastrigin (with arbitrary number of parameters)
c = rastrigin([0.1, 0.2, 0.3, 0.4])
g = rastrigin_derivative([0.1, 0.2, 0.3, 0.4])
h = rastrigin_hessian([0.1, 0.2, 0.3, 0.4])
# Rastrigin with custom (optional) parameter a.
c = rastrigin([0.1, 0.2, 0.3, 0.4], a = 5.0)
g = rastrigin_derivative([0.1, 0.2, 0.3, 0.4], a = 5.0)
h = rastrigin_hessian([0.1, 0.2, 0.3, 0.4], a = 5.0)
# Rosenbrock (with arbitrary number of parameters)
c = rosenbrock([0.1, 0.2, 0.3, 0.4])
g = rosenbrock_derivative([0.1, 0.2, 0.3, 0.4])
h = rosenbrock_hessian([0.1, 0.2, 0.3, 0.4])
# Rosenbrock with custom (optional) parameters a and b.
c = rosenbrock([0.1, 0.2, 0.3, 0.4], a = 5.0, b = 200.0)
g = rosenbrock_derivative([0.1, 0.2, 0.3, 0.4], a = 5.0, b = 200.0)
h = rosenbrock_hessian([0.1, 0.2, 0.3, 0.4], a = 5.0, b = 200.0)
# Schaffer No. 2
c = schaffer_n2([0.1, 0.2])
g = schaffer_n2_derivative([0.1, 0.2])
h = schaffer_n2_hessian([0.1, 0.2])
# Schaffer No. 4
c = schaffer_n4([0.1, 0.2])
g = schaffer_n4_derivative([0.1, 0.2])
h = schaffer_n4_hessian([0.1, 0.2])
# Sphere (with arbitrary number of parameters)
c = sphere([0.1, 0.2, 0.3, 0.4])
g = sphere_derivative([0.1, 0.2, 0.3, 0.4])
h = sphere_hessian([0.1, 0.2, 0.3, 0.4])
# Styblinski-Tang
c = styblinski_tang([0.1, 0.2])
g = styblinski_tang_derivative([0.1, 0.2])
h = styblinski_tang_hessian([0.1, 0.2])
# Three-hump-camel
c = threehumpcamel([0.1, 0.2])
g = threehumpcamel_derivative([0.1, 0.2])
h = threehumpcamel_hessian([0.1, 0.2])
License
Licensed under either of
- Apache License, Version 2.0, (LICENSE-APACHE or http://www.apache.org/licenses/LICENSE-2.0)
- MIT License (LICENSE-MIT or http://opensource.org/licenses/MIT)
at your option.
Contribution
Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distributions
File details
Details for the file argmin_testfunctions_py-0.0.1.tar.gz
.
File metadata
- Download URL: argmin_testfunctions_py-0.0.1.tar.gz
- Upload date:
- Size: 81.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.4.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 1add1b8c0cb4dc452e2790baed6a6537c815773ce9e2f00a0700ba91988346f7 |
|
MD5 | fb8f43c020c44daafd73dffcbdfa544d |
|
BLAKE2b-256 | 7b34cfc3b19b4522e0485781042cf245f1e5d7ed9ae01c4c8758b6db5f1644eb |
File details
Details for the file argmin_testfunctions_py-0.0.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
.
File metadata
- Download URL: argmin_testfunctions_py-0.0.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 1.0 MB
- Tags: PyPy, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.4.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | cd74b77b53b2016781ec1582f93e10b7c355b2f8e25f70b66def3d97ab1aa635 |
|
MD5 | 6ccaa76617a25f063cd30e45741becc6 |
|
BLAKE2b-256 | 0f6020ebe3313508ac138ab6eabaf0a34b5a69c471c4e9c792630183a6b72e9d |
File details
Details for the file argmin_testfunctions_py-0.0.1-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
.
File metadata
- Download URL: argmin_testfunctions_py-0.0.1-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 1.2 MB
- Tags: PyPy, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.4.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 9532ffe8dc2c9810b05a00449b51f6b42204e9498c243f1275d68934b6de6595 |
|
MD5 | 6ebacd1f9855e876a14f189c23479072 |
|
BLAKE2b-256 | 8c28c9fb17d717c62a0cb25df33f58414023a7b46f578fb2549cdb38dfedd3c5 |
File details
Details for the file argmin_testfunctions_py-0.0.1-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
.
File metadata
- Download URL: argmin_testfunctions_py-0.0.1-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 1.1 MB
- Tags: PyPy, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.4.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 9223b1421344ed080c4affcb1aaa35da1efc43b6ca3fe496af3c3b95d90aab1d |
|
MD5 | b6480d0fe5b57a8bb5ceb19d0859a06f |
|
BLAKE2b-256 | 290fe11ccc128591b3578b4dfa608e003418d83bab071187d266b4ef4bbd3fa8 |
File details
Details for the file argmin_testfunctions_py-0.0.1-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
.
File metadata
- Download URL: argmin_testfunctions_py-0.0.1-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 1.0 MB
- Tags: PyPy, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.4.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | ebd5de8d46d9ca959c39308fa7101b5d4dde7c968529ad73f948341708c8a67e |
|
MD5 | a42b73d5dcc0e7686cc224ae9661f1c4 |
|
BLAKE2b-256 | bf5e47d8152dd9e7961044b376cd529ce557ce29d9c51b5156c41668ffbabb30 |
File details
Details for the file argmin_testfunctions_py-0.0.1-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
.
File metadata
- Download URL: argmin_testfunctions_py-0.0.1-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 1.0 MB
- Tags: PyPy, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.4.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 850efe96cfce278a4bc7b85dc33d42dbc2b9672b544cf651c1f5341b78059c6f |
|
MD5 | 95fc9871375dbde456b8c08d00a388d9 |
|
BLAKE2b-256 | 27b4f31eccf3abbe9f187326ae07df67a786c23d047d051287475016f425ff56 |
File details
Details for the file argmin_testfunctions_py-0.0.1-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl
.
File metadata
- Download URL: argmin_testfunctions_py-0.0.1-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl
- Upload date:
- Size: 1.1 MB
- Tags: PyPy, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.4.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 5495e34e040d89a3338a0412403e0cef56af5d22c710eb2b3c1cf2c91814b495 |
|
MD5 | a0f7aa8910fa7264a17c68da63554b84 |
|
BLAKE2b-256 | c851aa85a251d54956855e26462f4de5094669959bef487a2bd2f1bf4155d858 |
File details
Details for the file argmin_testfunctions_py-0.0.1-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
.
File metadata
- Download URL: argmin_testfunctions_py-0.0.1-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 1.0 MB
- Tags: PyPy, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.4.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | e6f61d799a3e79c77fa91decddce0842226e1e4f11f443e70f2ad9da17e8c191 |
|
MD5 | 3dbcaa0fe27765248e2517d5a515bd39 |
|
BLAKE2b-256 | 8703e14bc72c33399a585180c8416f0e5045de3c6f0c8ce418ea8044c0f66568 |
File details
Details for the file argmin_testfunctions_py-0.0.1-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
.
File metadata
- Download URL: argmin_testfunctions_py-0.0.1-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 1.2 MB
- Tags: PyPy, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.4.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | ed79801f7f02875f621203fc986ac96ef7162eb3969223574eddc43dd55536eb |
|
MD5 | 3c3caec2809f4bcbf7c81d6141663fa0 |
|
BLAKE2b-256 | a94f0442fbfb6d654c193a98a1a5c2610ff6526ea22d39fa63ccf2f87aac0403 |
File details
Details for the file argmin_testfunctions_py-0.0.1-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
.
File metadata
- Download URL: argmin_testfunctions_py-0.0.1-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 1.1 MB
- Tags: PyPy, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.4.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 0c46de36e7f8fbedc415b0a606f5c605d39424f6fc97b11f546c659e67857128 |
|
MD5 | 79637a2f8503bffca8f3f4acb96f7b04 |
|
BLAKE2b-256 | c74dd02d5c4c44e7c6f5f1eb5a1896c89559d50a3088a297c87e7152c655b628 |
File details
Details for the file argmin_testfunctions_py-0.0.1-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
.
File metadata
- Download URL: argmin_testfunctions_py-0.0.1-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 1.0 MB
- Tags: PyPy, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.4.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 53071e329cbe3eccb41f573ae8d33a5e3e3cc7b4d2b4eac8841c802ed0ef81ca |
|
MD5 | f3a71d1b21430106cc1f5fd1645299c3 |
|
BLAKE2b-256 | 91b43aabbf75402589ef6a65748ba586b497cd1d967d098d6c86c0b07e9ed9c8 |
File details
Details for the file argmin_testfunctions_py-0.0.1-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
.
File metadata
- Download URL: argmin_testfunctions_py-0.0.1-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 1.0 MB
- Tags: PyPy, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.4.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 32df64a3d4ed1389261e946c3bf2d1f7bb4658bc677f1449ca6914ff9661518f |
|
MD5 | 012dadbcf427751fc14d4416cbb56a22 |
|
BLAKE2b-256 | 70360b3d72813a1661dbcd3f4a69584abb509e0ab65d1ed8fea3c1054a715f69 |
File details
Details for the file argmin_testfunctions_py-0.0.1-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl
.
File metadata
- Download URL: argmin_testfunctions_py-0.0.1-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl
- Upload date:
- Size: 1.1 MB
- Tags: PyPy, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.4.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 936730fa9f30043a3cf132bbcde95e3fd9cb5b820145255ed4a72c2f65763ee8 |
|
MD5 | 795854c98aef9c20b6f50bfa23e12e4d |
|
BLAKE2b-256 | b898d7faf061a34ab52b8f193aaef184be6852db04ad5d254a28be97048c458a |
File details
Details for the file argmin_testfunctions_py-0.0.1-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
.
File metadata
- Download URL: argmin_testfunctions_py-0.0.1-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 1.0 MB
- Tags: PyPy, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.4.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 2072beb287bbb0b9e7e7a17fbd514a92413d9bf01b257cb2e96976fe4bff1276 |
|
MD5 | d7cc3794f1bce6fc776a40fbaa2950b4 |
|
BLAKE2b-256 | f8dc6eac64b01a794f86a25ed55bb1131e745cdedaa5e69462451980bd1f0d34 |
File details
Details for the file argmin_testfunctions_py-0.0.1-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
.
File metadata
- Download URL: argmin_testfunctions_py-0.0.1-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 1.2 MB
- Tags: PyPy, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.4.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 2156a0122dccc512fdf01f25bc56b495a485d15dde05fb4da3adefb3710b2fbc |
|
MD5 | 12b564811d35c75875799bdff005df04 |
|
BLAKE2b-256 | e2cad4828164ad308f1a177a403dd69414b66f3ca0df39ef10208d7f6e14dae1 |
File details
Details for the file argmin_testfunctions_py-0.0.1-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
.
File metadata
- Download URL: argmin_testfunctions_py-0.0.1-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 1.1 MB
- Tags: PyPy, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.4.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | c4caee9f0abfffb89c2f1d611be4c19d4b66eb00319dfb9d6915123c2b4ce0b4 |
|
MD5 | 6890a041b369ddedb7df4364d1028d35 |
|
BLAKE2b-256 | a30b56e69f07d4bb56c94bc835d193881fa3937bfc50c159ce47ceb66deab728 |
File details
Details for the file argmin_testfunctions_py-0.0.1-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
.
File metadata
- Download URL: argmin_testfunctions_py-0.0.1-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 1.0 MB
- Tags: PyPy, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.4.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 839d5de455869c7d7770aabb5171f1c44b3b3377f34d5c33e84ae94f94f35dca |
|
MD5 | 9c9c8266cd801ac16ec9048222b92cde |
|
BLAKE2b-256 | 65f39e672b1b0712812c8224ce0cfec883148468b02a278fc14e1fa8dbf0d287 |
File details
Details for the file argmin_testfunctions_py-0.0.1-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
.
File metadata
- Download URL: argmin_testfunctions_py-0.0.1-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 1.0 MB
- Tags: PyPy, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.4.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | dd79da7dc9de1231d2fb8900a23b27cd5edb97f2ce488816f6bb09ed014b682b |
|
MD5 | 3b5ceb031f12237cd79d612453a8df17 |
|
BLAKE2b-256 | 4a51d2536dfad0ba8c7a4e0bd1481571447053d7c2404a67bdf06278aaae3f93 |
File details
Details for the file argmin_testfunctions_py-0.0.1-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.whl
.
File metadata
- Download URL: argmin_testfunctions_py-0.0.1-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.whl
- Upload date:
- Size: 1.1 MB
- Tags: PyPy, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.4.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 420ccb065d78695c43aa70ebc0836af3233749df93915890f55456418fff02f4 |
|
MD5 | cee3b0ac4eb70559675e53d0fb05d3db |
|
BLAKE2b-256 | ff34b0a8172564315ab6c3b3acacb284ecf1f37939f7ac0123841573a2b00733 |
File details
Details for the file argmin_testfunctions_py-0.0.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
.
File metadata
- Download URL: argmin_testfunctions_py-0.0.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 1.2 MB
- Tags: CPython 3.13, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.4.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | fafafd2af25f934fc9dd9f87b9f8347126ea6ff6dd40d587a8a9cbfe9afbc6d1 |
|
MD5 | f4d81b83cbef4c5bd419baca5398d147 |
|
BLAKE2b-256 | c9d6080bde1388552b1fa31cb3ddca76d96d6840871b7feba30138b62e269189 |
File details
Details for the file argmin_testfunctions_py-0.0.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
.
File metadata
- Download URL: argmin_testfunctions_py-0.0.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 1.2 MB
- Tags: CPython 3.13, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.4.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | a1dd56c637574b0d786f2e34b842f14805b2044677422c10a897e2273b75fa0b |
|
MD5 | d2279cd8a52034a1c2ba5c58af9f1264 |
|
BLAKE2b-256 | a6c54f0de581531fcc3a610d2e2ba2135bf44893ed6a7281b38ab1112586238b |
File details
Details for the file argmin_testfunctions_py-0.0.1-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
.
File metadata
- Download URL: argmin_testfunctions_py-0.0.1-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 1.0 MB
- Tags: CPython 3.13, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.4.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | fbabae8ac6487a5e14ba334524432ee14f168bff88463c9558c6e483424bfe49 |
|
MD5 | 117136f74200a4f645e48974e950eba2 |
|
BLAKE2b-256 | 179fe2d64bb5c3c102ad4ca46374454e4091dbf48d6cdbf066a143c1167262e4 |
File details
Details for the file argmin_testfunctions_py-0.0.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
.
File metadata
- Download URL: argmin_testfunctions_py-0.0.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 1.0 MB
- Tags: CPython 3.13, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.4.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | e69bc321a4d3b5da268a91f47db084816e237bb47d5721ae028738b9b495bafe |
|
MD5 | 3e19d73a9f015e4d3814c116e89c2dfb |
|
BLAKE2b-256 | 2a91ee1dedc1532964058ca25d4ade87803d0260c62d60f7f3eccfff21cb8667 |
File details
Details for the file argmin_testfunctions_py-0.0.1-cp312-none-win_amd64.whl
.
File metadata
- Download URL: argmin_testfunctions_py-0.0.1-cp312-none-win_amd64.whl
- Upload date:
- Size: 153.2 kB
- Tags: CPython 3.12, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.4.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | ca45a6fbd671068ecec1b882556d243430395b3fbbeed9d77a281dec82d53bca |
|
MD5 | 4611cbda7f7b4df02709cff57fd5bff9 |
|
BLAKE2b-256 | d212ae51439ac47776e8c7a35a2f8e368340b40b90c04940e0e0d89037e81e82 |
File details
Details for the file argmin_testfunctions_py-0.0.1-cp312-none-win32.whl
.
File metadata
- Download URL: argmin_testfunctions_py-0.0.1-cp312-none-win32.whl
- Upload date:
- Size: 146.0 kB
- Tags: CPython 3.12, Windows x86
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.4.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 24d3b66257e42f4edfb71c7026c18b3a0a3be6c6010eb8de55807119cb281a01 |
|
MD5 | a217f9bd0cf4deaf52025310a1740195 |
|
BLAKE2b-256 | 83b883c07a58eef2101050f5025a7281f806ff702747db6da8bba61d3e8f48cb |
File details
Details for the file argmin_testfunctions_py-0.0.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
.
File metadata
- Download URL: argmin_testfunctions_py-0.0.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 1.0 MB
- Tags: CPython 3.12, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.4.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 0e79279bc95abe9c031dcb9dbb2546ab4dacfbcf3a92ce850b350edf5aef0944 |
|
MD5 | 19fabcd1898f0e5f6dc1dbdd06b6b8a1 |
|
BLAKE2b-256 | 7eac144bba3f0b8e4ccb173cedd28d9a3a95639e80a0746918369cb645159a00 |
File details
Details for the file argmin_testfunctions_py-0.0.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
.
File metadata
- Download URL: argmin_testfunctions_py-0.0.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 1.2 MB
- Tags: CPython 3.12, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.4.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 1abf49e70070d321a7684d03e692c9dace7c37e99c22a3e8d5d9e982a99473df |
|
MD5 | ccc206c8c5e84c77696c4673da0b4e6b |
|
BLAKE2b-256 | 63f54f2ab7096a39ab8fc056df2dff91862894d0588beef722b88fa98812956e |
File details
Details for the file argmin_testfunctions_py-0.0.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
.
File metadata
- Download URL: argmin_testfunctions_py-0.0.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 1.2 MB
- Tags: CPython 3.12, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.4.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | f930720f7b076fe9f3402c53482d93a65cc7bc420c8731e50d618603b4952ac6 |
|
MD5 | 573971d0d67f6a741c73c08c44e5aaaf |
|
BLAKE2b-256 | ff5281b6458fc896f1baaebeff20a3091285abe9d30d64a1915c11a65cf41b6c |
File details
Details for the file argmin_testfunctions_py-0.0.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
.
File metadata
- Download URL: argmin_testfunctions_py-0.0.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 1.0 MB
- Tags: CPython 3.12, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.4.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | f6438ee2085c4edea95a7ae3afa5dab1a9ec539a79b063df5e9fcc3f1f9f707f |
|
MD5 | 46b3c293ce368f19906ce508453fd7d1 |
|
BLAKE2b-256 | 3a4525e001d9fd46eeeff5d0fb4c85d5adba9193affb4ed15cde02c0479db3f6 |
File details
Details for the file argmin_testfunctions_py-0.0.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
.
File metadata
- Download URL: argmin_testfunctions_py-0.0.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 1.0 MB
- Tags: CPython 3.12, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.4.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | fcd77803f8f2fbae396d94ca073bd3468bcd22aea03e1a08582d400bc3531478 |
|
MD5 | 7b167769a202e9f4ddc8775723410a64 |
|
BLAKE2b-256 | 046578aa5b1e70de722e8334c3d7d371e5fea5bfc54f4eeb0fd235b3b739bbb3 |
File details
Details for the file argmin_testfunctions_py-0.0.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
.
File metadata
- Download URL: argmin_testfunctions_py-0.0.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
- Upload date:
- Size: 1.1 MB
- Tags: CPython 3.12, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.4.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | dfaf287d1380eacda3d2952bb113e58469b643d237f8b891f8f373e72368607c |
|
MD5 | 665cf45e44c4a4b43f16c9e711277613 |
|
BLAKE2b-256 | 996cf1e1724681609475aa5230e2fca8159618e05a3a742401e11811772ea0c0 |
File details
Details for the file argmin_testfunctions_py-0.0.1-cp312-cp312-macosx_11_0_arm64.whl
.
File metadata
- Download URL: argmin_testfunctions_py-0.0.1-cp312-cp312-macosx_11_0_arm64.whl
- Upload date:
- Size: 260.6 kB
- Tags: CPython 3.12, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.4.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | a274063795caea5e414a213da841d88aef598c0845cf09c53f83cb7f51d279fb |
|
MD5 | 0b80873a67c90be8b83f57a2ecacbc70 |
|
BLAKE2b-256 | 4efb4d8731bdc15540b35c60a169f41a688f327fde895100680b626ef793a4da |
File details
Details for the file argmin_testfunctions_py-0.0.1-cp312-cp312-macosx_10_12_x86_64.whl
.
File metadata
- Download URL: argmin_testfunctions_py-0.0.1-cp312-cp312-macosx_10_12_x86_64.whl
- Upload date:
- Size: 282.6 kB
- Tags: CPython 3.12, macOS 10.12+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.4.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 042edefacd0f8a4ab9910e764d7eee3cb8658568e80ccf424e4ea385443966f4 |
|
MD5 | c8820583c6424dd9d9029b61447b8ef6 |
|
BLAKE2b-256 | 5ac7fc3f534e5af25211101b71de56143752692887681ea4256307d0be8e661c |
File details
Details for the file argmin_testfunctions_py-0.0.1-cp311-none-win_amd64.whl
.
File metadata
- Download URL: argmin_testfunctions_py-0.0.1-cp311-none-win_amd64.whl
- Upload date:
- Size: 152.9 kB
- Tags: CPython 3.11, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.4.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 9e44cc5955423e12b67d7c3a7ad06fa6466a77d06d25a1ad5ee2939321cf6fee |
|
MD5 | 917e331de90df9d17a8c0c9e8de720c2 |
|
BLAKE2b-256 | f3a03931e8a0d60301aec7dfcbe01a531fa69531fee6fc3468c5219f0338f8cf |
File details
Details for the file argmin_testfunctions_py-0.0.1-cp311-none-win32.whl
.
File metadata
- Download URL: argmin_testfunctions_py-0.0.1-cp311-none-win32.whl
- Upload date:
- Size: 146.5 kB
- Tags: CPython 3.11, Windows x86
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.4.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | a3b74dcb8f01b97c3908918ff43c19f609c020538f66797e96d7f4f7db4e0763 |
|
MD5 | 71a9de1ed74d60d6858500bd61ee88b5 |
|
BLAKE2b-256 | 7ffb7590f56b66e2b830e0ce45cb1c576e9aa03f85340298dba0c870cb7eab92 |
File details
Details for the file argmin_testfunctions_py-0.0.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
.
File metadata
- Download URL: argmin_testfunctions_py-0.0.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 1.0 MB
- Tags: CPython 3.11, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.4.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | c91b7aa0f7f99448f28801c78066776dd4d2e0515b9f18c676bdb5bf23f2f862 |
|
MD5 | 8b6041177bc8681b35fe5644df518eeb |
|
BLAKE2b-256 | 384136905f86ac8dd0592f011e6d40b7274f8082b8f9f38f78892575a60eb9c3 |
File details
Details for the file argmin_testfunctions_py-0.0.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
.
File metadata
- Download URL: argmin_testfunctions_py-0.0.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 1.2 MB
- Tags: CPython 3.11, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.4.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 379f90510c408edf39533e5b4ffa2f89281c32a67ac0c8ef32520d26dbd5f75e |
|
MD5 | 9c3947e25a2871966aeb3a1d9a660ca1 |
|
BLAKE2b-256 | 4fa96772b17e0ec5acd4032f65521894ca2da04af24b5a0bc06a782b93acb06a |
File details
Details for the file argmin_testfunctions_py-0.0.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
.
File metadata
- Download URL: argmin_testfunctions_py-0.0.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 1.1 MB
- Tags: CPython 3.11, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.4.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 6c5fde653db209594a6543e3f08574fc24328230223f2a0d5b0703542672fdc0 |
|
MD5 | 85668028f307693b081814a3f6d6b424 |
|
BLAKE2b-256 | 56aa43215321eaf02590cd84caeef5e04c5a13809cec752c3a73de98d5d89d40 |
File details
Details for the file argmin_testfunctions_py-0.0.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
.
File metadata
- Download URL: argmin_testfunctions_py-0.0.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 1.0 MB
- Tags: CPython 3.11, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.4.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | df2c8ee7a361afc60214a506d0e0d79812271355c73f034a632dccc983e4b012 |
|
MD5 | 19a0a9433e8e0428c6f88a8fac385f5d |
|
BLAKE2b-256 | fb53bfa3c67b67c687ef54988f656523036d585a86f659dde94f739e578851eb |
File details
Details for the file argmin_testfunctions_py-0.0.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
.
File metadata
- Download URL: argmin_testfunctions_py-0.0.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 1.0 MB
- Tags: CPython 3.11, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.4.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 47b8b738c3743618752694ba2bb02f3a6fd2256f6aef9a43bf605edbc944d955 |
|
MD5 | 053821b3dad6a985305557aa7fe8e0d5 |
|
BLAKE2b-256 | 4d0d8ad93e6e52f808a9d06c70c0a1239e9bc7dbfd74a996951070c884a320b8 |
File details
Details for the file argmin_testfunctions_py-0.0.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
.
File metadata
- Download URL: argmin_testfunctions_py-0.0.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
- Upload date:
- Size: 1.1 MB
- Tags: CPython 3.11, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.4.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | d8517d5cf1f7df36f90c8a5e6e75c07c29b4bfe48188e2cab662152243045026 |
|
MD5 | c867cad5ca7c1d9cb0624fb049e84482 |
|
BLAKE2b-256 | 6f02e7b853738b39c56a42b8821400d6e54b762d1dfd964a81dcd8d3c634616d |
File details
Details for the file argmin_testfunctions_py-0.0.1-cp311-cp311-macosx_11_0_arm64.whl
.
File metadata
- Download URL: argmin_testfunctions_py-0.0.1-cp311-cp311-macosx_11_0_arm64.whl
- Upload date:
- Size: 261.1 kB
- Tags: CPython 3.11, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.4.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | eaecc03f6d9368927b07e4dd7b6ead2f43f004eff42660c36eb7c74fdfae805c |
|
MD5 | cda15599c55ff6b08f0560dd149fcd1a |
|
BLAKE2b-256 | 9f102d32c3b9282eb5531ac65516857dc09aa6257f081ccf39cf068a0e8e314d |
File details
Details for the file argmin_testfunctions_py-0.0.1-cp311-cp311-macosx_10_12_x86_64.whl
.
File metadata
- Download URL: argmin_testfunctions_py-0.0.1-cp311-cp311-macosx_10_12_x86_64.whl
- Upload date:
- Size: 283.2 kB
- Tags: CPython 3.11, macOS 10.12+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.4.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 6fb65204c8a5e26e1bd929d4d596378a4eae919ffd1a0161afc52bc7804033ad |
|
MD5 | c092d2958453d954b8ee09cf25353a55 |
|
BLAKE2b-256 | 6df71d6d5d7b05c20e4ba5c7e8cd8f332a343f5ef81ade0dd6e216dcf06f354a |
File details
Details for the file argmin_testfunctions_py-0.0.1-cp310-none-win_amd64.whl
.
File metadata
- Download URL: argmin_testfunctions_py-0.0.1-cp310-none-win_amd64.whl
- Upload date:
- Size: 152.9 kB
- Tags: CPython 3.10, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.4.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 132ae02a27c50472edb6836f9842a9a4d40b79482251aa99bcb71329e54bdc5c |
|
MD5 | 785c9b05ed5fd9c70e4d7eff9558a365 |
|
BLAKE2b-256 | d52484a915ee46b161ccd12a8e1bee052bffa2f8994da13a6767c18b8d18fa00 |
File details
Details for the file argmin_testfunctions_py-0.0.1-cp310-none-win32.whl
.
File metadata
- Download URL: argmin_testfunctions_py-0.0.1-cp310-none-win32.whl
- Upload date:
- Size: 146.5 kB
- Tags: CPython 3.10, Windows x86
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.4.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 760fcf0424d224c64bf9d6cc1ca6721472b0de50e4774f94ea5fd2781da70aa8 |
|
MD5 | 30f2f556c985361f039feb332b52b2c7 |
|
BLAKE2b-256 | b20ab0780b023d428358772bd3a98a8f4caca84ec69668f80ad63c9cdce8a28a |
File details
Details for the file argmin_testfunctions_py-0.0.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
.
File metadata
- Download URL: argmin_testfunctions_py-0.0.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 1.0 MB
- Tags: CPython 3.10, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.4.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | b796f5e77e8bf9363403ce0545056d2039a59720737e19bb15d591275bb060c4 |
|
MD5 | 1ca663f78b0533c90bf7cd4043275e26 |
|
BLAKE2b-256 | 4a7ec27c0bcd2832fa4382f524f5f633ea55b28bbbd1fc639b9891345da88fa2 |
File details
Details for the file argmin_testfunctions_py-0.0.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
.
File metadata
- Download URL: argmin_testfunctions_py-0.0.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 1.2 MB
- Tags: CPython 3.10, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.4.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | bbbcef15cdcc5d14691988dd5a237d4d916eee961fff85f64587f6b83352ce8d |
|
MD5 | 3683bd4ecf6779f930f1a31d58ad1067 |
|
BLAKE2b-256 | be61b06be45e7f84562be63824d4cdc6350cf44fb3576a6932131f0903a4f9ca |
File details
Details for the file argmin_testfunctions_py-0.0.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
.
File metadata
- Download URL: argmin_testfunctions_py-0.0.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 1.1 MB
- Tags: CPython 3.10, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.4.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 4d51f33e29179ceeb710d063737adbfdf76cc61c000b3d321f522a90fd915e7f |
|
MD5 | 6bc1ece03f594290e59bc39b7a5506c6 |
|
BLAKE2b-256 | d35ab86ae1255e0fe72ac165bd85d760ea6b53e391cdeb7268f2b6854e13aafb |
File details
Details for the file argmin_testfunctions_py-0.0.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
.
File metadata
- Download URL: argmin_testfunctions_py-0.0.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 1.0 MB
- Tags: CPython 3.10, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.4.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 9278266456169ef0494015e7b17c802f64f6cb318575dc3caf27d3a635a9ae3e |
|
MD5 | aa869de4439a5df13d6adeaa258d674b |
|
BLAKE2b-256 | 18786811a2fb2a51268529760870505682e2c9c756d1fa0fbe35dc80089d4aa6 |
File details
Details for the file argmin_testfunctions_py-0.0.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
.
File metadata
- Download URL: argmin_testfunctions_py-0.0.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 1.0 MB
- Tags: CPython 3.10, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.4.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 041ecc0e9e57fda9e52420748c9aa9d05ffdcd066eacc70c365f8594caeb3357 |
|
MD5 | 25793e0eb2f131dba95dc281e374c52d |
|
BLAKE2b-256 | e3c7ef4996e3b6378d9b587d4421240fcf6c68948c546478dc2c37301d79a2c8 |
File details
Details for the file argmin_testfunctions_py-0.0.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
.
File metadata
- Download URL: argmin_testfunctions_py-0.0.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
- Upload date:
- Size: 1.1 MB
- Tags: CPython 3.10, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.4.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 84eeec7fe5da87326c0cef8365910da18d9894ca5e2b85ed875f7d4de7622215 |
|
MD5 | befa6a5c3d0f569cc444fd69ee23a4ce |
|
BLAKE2b-256 | d28370cfa91633cef1f41a7fd6c166506cb842d456651a63bc36cd39a22a5280 |
File details
Details for the file argmin_testfunctions_py-0.0.1-cp310-cp310-macosx_11_0_arm64.whl
.
File metadata
- Download URL: argmin_testfunctions_py-0.0.1-cp310-cp310-macosx_11_0_arm64.whl
- Upload date:
- Size: 261.1 kB
- Tags: CPython 3.10, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.4.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | ed0859e7a31233a2b4e90477a2281578dbe13731b4eb50a394ed2464d9f2cc51 |
|
MD5 | 8c98f7dbbdfe066993e699a033e3b9b6 |
|
BLAKE2b-256 | 52ba809079edc17b601cca5de6a9a4f5683ef8bb4b3a6c389a7d849051d05f46 |
File details
Details for the file argmin_testfunctions_py-0.0.1-cp310-cp310-macosx_10_12_x86_64.whl
.
File metadata
- Download URL: argmin_testfunctions_py-0.0.1-cp310-cp310-macosx_10_12_x86_64.whl
- Upload date:
- Size: 283.3 kB
- Tags: CPython 3.10, macOS 10.12+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.4.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | b9bdf9c46d3df592027480948c82cc21c5d34c574cff7c94fcb306a828818cc8 |
|
MD5 | 583129499b1452db6c9f081ea14d08a6 |
|
BLAKE2b-256 | b82c675b50bb0a07706eba1d41a67cc2087eff0237c0f98f49fa44abe7b7017e |
File details
Details for the file argmin_testfunctions_py-0.0.1-cp39-none-win_amd64.whl
.
File metadata
- Download URL: argmin_testfunctions_py-0.0.1-cp39-none-win_amd64.whl
- Upload date:
- Size: 152.9 kB
- Tags: CPython 3.9, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.4.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 361e14ed38d0e6e65dba71d4076c2e9df983f5b7038faf6748a414f856e063f3 |
|
MD5 | 6bc36b790286dff8270144682ec43be8 |
|
BLAKE2b-256 | 7c27eac35075a2295e65444cf02e9a202ee3810101f7fdf132aa929e81ea7a89 |
File details
Details for the file argmin_testfunctions_py-0.0.1-cp39-none-win32.whl
.
File metadata
- Download URL: argmin_testfunctions_py-0.0.1-cp39-none-win32.whl
- Upload date:
- Size: 146.5 kB
- Tags: CPython 3.9, Windows x86
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.4.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 1ae0cc1f7b0b3ac63e598cea4883219ab95dc5c3456265507f343a6c5104d1f6 |
|
MD5 | de93f1a8259177415c51d755ab912bfb |
|
BLAKE2b-256 | 82e5bba743adad50b909998ce1266429cacf51d5d93ba91d092303fc369ad1cb |
File details
Details for the file argmin_testfunctions_py-0.0.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
.
File metadata
- Download URL: argmin_testfunctions_py-0.0.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 1.0 MB
- Tags: CPython 3.9, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.4.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 98e696c83f0070a4a66da078d3cc8a9f377e824fd799f74165ce379033192fad |
|
MD5 | 836210941af20560afafc3c66cbd22eb |
|
BLAKE2b-256 | 17b8a88159d8449044512d64c9756aba6dcab522dbddc282f11a00984302da1f |
File details
Details for the file argmin_testfunctions_py-0.0.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
.
File metadata
- Download URL: argmin_testfunctions_py-0.0.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 1.2 MB
- Tags: CPython 3.9, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.4.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 5b56cb9138d5e2ee9fa6addd035dfbf65caa518d5a5e712f8659fa82218c754f |
|
MD5 | 24ec7c6e525c355f5cf995d7a0115b9b |
|
BLAKE2b-256 | 3015d20c6866e6e914c3a7ebb9d285d14448cfb61606144ba322b3660017a6f2 |
File details
Details for the file argmin_testfunctions_py-0.0.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
.
File metadata
- Download URL: argmin_testfunctions_py-0.0.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 1.1 MB
- Tags: CPython 3.9, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.4.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 049b08974a7c73af890def09af14e35d8f7f6144107ad26135f36c270be70e84 |
|
MD5 | 31c1642146935dbb666887dfd8f6ca34 |
|
BLAKE2b-256 | f7cbc2ce68a4c9fa91c1658eced49f395ab664a573aa98372a0f49047331a16f |
File details
Details for the file argmin_testfunctions_py-0.0.1-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
.
File metadata
- Download URL: argmin_testfunctions_py-0.0.1-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 1.0 MB
- Tags: CPython 3.9, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.4.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 3ad080b251ced9a5c738c260b4942a808c7b63f7cbdfc2adbdbc300665a8639c |
|
MD5 | 078f8d84189eebafcc38a1a79f9510d2 |
|
BLAKE2b-256 | 0d4d748f6cd1d72bbfd7a35effb66603b4305793f2de188f2fac094469ea8146 |
File details
Details for the file argmin_testfunctions_py-0.0.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
.
File metadata
- Download URL: argmin_testfunctions_py-0.0.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 1.0 MB
- Tags: CPython 3.9, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.4.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 4d342814aac06d3eafc5e818387891f7a2da8611e8e38a00fb768a790e4cae7a |
|
MD5 | 3464dc7f733196a61c1caa78bd601c0d |
|
BLAKE2b-256 | 594a210489c2e9a85e3f90bc91b3ff62f5c91e924d4708a2f12f3d1c61128cde |
File details
Details for the file argmin_testfunctions_py-0.0.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
.
File metadata
- Download URL: argmin_testfunctions_py-0.0.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
- Upload date:
- Size: 1.1 MB
- Tags: CPython 3.9, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.4.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | ea9fc8b84aaa3ae525a61a61421995926cc07f197982610ab62c7138b61bcdd2 |
|
MD5 | 4933ccde62242f1a0b6c0a10c4ad809b |
|
BLAKE2b-256 | 93f7f88972b6bb5bfed6153abea72526f82011175a3db36c23ca20ff990a6eab |
File details
Details for the file argmin_testfunctions_py-0.0.1-cp38-none-win_amd64.whl
.
File metadata
- Download URL: argmin_testfunctions_py-0.0.1-cp38-none-win_amd64.whl
- Upload date:
- Size: 152.7 kB
- Tags: CPython 3.8, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.4.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 4c80cd5d4783ee36e12ef3eb14b106316252eaf437497a7a370630c1caba8598 |
|
MD5 | c9f3d38ac0b32a1231391493be4f613d |
|
BLAKE2b-256 | e56d6c01f240198a7c22d677c4cab7f96505caee0ff488f228350daf228f179f |
File details
Details for the file argmin_testfunctions_py-0.0.1-cp38-none-win32.whl
.
File metadata
- Download URL: argmin_testfunctions_py-0.0.1-cp38-none-win32.whl
- Upload date:
- Size: 146.6 kB
- Tags: CPython 3.8, Windows x86
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.4.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | fdb5d404b3d8a850f592d58971bedf7af1686e3244382bc6b3b1628f417c938b |
|
MD5 | bfac2fc680a4867f5c990dcc4d3b2a6f |
|
BLAKE2b-256 | 12bc893ae8baa650b5e783c89fc3af53728feceae1aafed54619c29350bafd20 |
File details
Details for the file argmin_testfunctions_py-0.0.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
.
File metadata
- Download URL: argmin_testfunctions_py-0.0.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 1.0 MB
- Tags: CPython 3.8, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.4.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | fdbbeb2bf4797cc7a375858ea18cce29837d5e0a2223ae466c3459970c0b01ac |
|
MD5 | d4a809d627b9284d0c6409a71dbb4ba9 |
|
BLAKE2b-256 | edddd8a07f77f12124ee236c8a9b39e067e33f738d9ca3385be133474a446a06 |
File details
Details for the file argmin_testfunctions_py-0.0.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
.
File metadata
- Download URL: argmin_testfunctions_py-0.0.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 1.2 MB
- Tags: CPython 3.8, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.4.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 2beaf200158663663f3d2b33eee8b2abce648b2a6e406cf2e583229247f24646 |
|
MD5 | fa1c2f40194ca89ebe95684179ffaf70 |
|
BLAKE2b-256 | e5725320020b8c555eea67743053fb993031e2bf1822daa72539180a10e86eab |
File details
Details for the file argmin_testfunctions_py-0.0.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
.
File metadata
- Download URL: argmin_testfunctions_py-0.0.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 1.1 MB
- Tags: CPython 3.8, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.4.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 412a9fbb1cbf4763dd64da04e45ba39d62e7fe2ad061e9a181097563f3262a77 |
|
MD5 | 3bf8705a6d17c1b320735ec7169233da |
|
BLAKE2b-256 | 4236cadab90ead5bd61ada0ac31f6336c30ba2b1795f845a710d9a8fcef508d0 |
File details
Details for the file argmin_testfunctions_py-0.0.1-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
.
File metadata
- Download URL: argmin_testfunctions_py-0.0.1-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 1.0 MB
- Tags: CPython 3.8, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.4.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | a4cf86c1f8752b2c478311e3ee14ae863c19eb1745c08355a75a78a830a73257 |
|
MD5 | 3183d080737c38ec24a2ea5393813967 |
|
BLAKE2b-256 | a2b91fed90d0ba7121f8d2cb08d4d1847d3bb4056020395ad2ac9d54361984b5 |
File details
Details for the file argmin_testfunctions_py-0.0.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
.
File metadata
- Download URL: argmin_testfunctions_py-0.0.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 1.0 MB
- Tags: CPython 3.8, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.4.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 36f1f80e908605aab5b38d6b633069f3687025b83ffff5adf6977ea4e4c64102 |
|
MD5 | 5201ac8bd077aa143cf919cd65974163 |
|
BLAKE2b-256 | ca92b432711528f2354d83c1e4543b03692472f1ff810a25bc3edd129f5191ae |
File details
Details for the file argmin_testfunctions_py-0.0.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl
.
File metadata
- Download URL: argmin_testfunctions_py-0.0.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl
- Upload date:
- Size: 1.1 MB
- Tags: CPython 3.8, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.4.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | c9547918a5158f68d70dbf0cfdacadb741f615c0497fd9b34fd03d813f34e49d |
|
MD5 | 24cbf1b5c1fcbe768d94cb767f55687a |
|
BLAKE2b-256 | ced3bf5132b3e6bc59358eea680d5ae8824c008084f56367fc8b3d1c2a62745f |