FindAFactor 4.4.0__tar.gz → 4.5.0__tar.gz
Sign up to get free protection for your applications and to get access to all the features.
- {findafactor-4.4.0 → findafactor-4.5.0}/FindAFactor/find_a_factor.py +1 -1
- {findafactor-4.4.0 → findafactor-4.5.0}/FindAFactor.egg-info/PKG-INFO +1 -1
- {findafactor-4.4.0 → findafactor-4.5.0}/PKG-INFO +1 -1
- {findafactor-4.4.0 → findafactor-4.5.0}/pyproject.toml +1 -1
- {findafactor-4.4.0 → findafactor-4.5.0}/setup.py +1 -1
- {findafactor-4.4.0 → findafactor-4.5.0}/FindAFactor/__init__.py +0 -0
- {findafactor-4.4.0 → findafactor-4.5.0}/FindAFactor.egg-info/SOURCES.txt +0 -0
- {findafactor-4.4.0 → findafactor-4.5.0}/FindAFactor.egg-info/dependency_links.txt +0 -0
- {findafactor-4.4.0 → findafactor-4.5.0}/FindAFactor.egg-info/not-zip-safe +0 -0
- {findafactor-4.4.0 → findafactor-4.5.0}/FindAFactor.egg-info/top_level.txt +0 -0
- {findafactor-4.4.0 → findafactor-4.5.0}/LICENSE +0 -0
- {findafactor-4.4.0 → findafactor-4.5.0}/README.md +0 -0
- {findafactor-4.4.0 → findafactor-4.5.0}/setup.cfg +0 -0
@@ -17,7 +17,7 @@ def find_a_factor(n,
|
|
17
17
|
gear_factorization_level=int(os.environ.get('FINDAFACTOR_GEAR_FACTORIZATION_LEVEL')) if os.environ.get('FINDAFACTOR_GEAR_FACTORIZATION_LEVEL') else 11,
|
18
18
|
wheel_factorization_level=int(os.environ.get('FINDAFACTOR_WHEEL_FACTORIZATION_LEVEL')) if os.environ.get('FINDAFACTOR_WHEEL_FACTORIZATION_LEVEL') else 11,
|
19
19
|
smoothness_bound_multiplier=float(os.environ.get('FINDAFACTOR_SMOOTHNESS_BOUND_MULTIPLIER')) if os.environ.get('FINDAFACTOR_SMOOTHNESS_BOUND_MULTIPLIER') else 1.0,
|
20
|
-
batch_size_multiplier=float(os.environ.get('FINDAFACTOR_BATCH_SIZE_MULTIPLIER')) if os.environ.get('FINDAFACTOR_BATCH_SIZE_MULTIPLIER') else
|
20
|
+
batch_size_multiplier=float(os.environ.get('FINDAFACTOR_BATCH_SIZE_MULTIPLIER')) if os.environ.get('FINDAFACTOR_BATCH_SIZE_MULTIPLIER') else 4.0):
|
21
21
|
return int(_find_a_factor._find_a_factor(str(n),
|
22
22
|
int(method),
|
23
23
|
node_count, node_id,
|
@@ -8,7 +8,7 @@ build-backend = "setuptools.build_meta"
|
|
8
8
|
|
9
9
|
[project]
|
10
10
|
name = "FindAFactor"
|
11
|
-
version = "4.
|
11
|
+
version = "4.5.0"
|
12
12
|
requires-python = ">=3.8"
|
13
13
|
description = "Find any nontrivial factor of a number"
|
14
14
|
readme = {file = "README.txt", content-type = "text/markdown"}
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|