mirror of
https://github.com/TheAlgorithms/Python.git
synced 2024-11-27 15:01:08 +00:00
[pre-commit.ci] pre-commit autoupdate (#8177)
* [pre-commit.ci] pre-commit autoupdate updates: - [github.com/charliermarsh/ruff-pre-commit: v0.0.254 → v0.0.255](https://github.com/charliermarsh/ruff-pre-commit/compare/v0.0.254...v0.0.255) - [github.com/pre-commit/mirrors-mypy: v1.0.1 → v1.1.1](https://github.com/pre-commit/mirrors-mypy/compare/v1.0.1...v1.1.1) - [github.com/codespell-project/codespell: v2.2.2 → v2.2.4](https://github.com/codespell-project/codespell/compare/v2.2.2...v2.2.4) * updating DIRECTORY.md * Fixes for new version of codespell --------- Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com> Co-authored-by: github-actions <${GITHUB_ACTOR}@users.noreply.github.com> Co-authored-by: Christian Clauss <cclauss@me.com>
This commit is contained in:
parent
f9cc25221c
commit
8959211100
|
@ -44,7 +44,7 @@ repos:
|
||||||
- --py311-plus
|
- --py311-plus
|
||||||
|
|
||||||
- repo: https://github.com/charliermarsh/ruff-pre-commit
|
- repo: https://github.com/charliermarsh/ruff-pre-commit
|
||||||
rev: v0.0.254
|
rev: v0.0.255
|
||||||
hooks:
|
hooks:
|
||||||
- id: ruff
|
- id: ruff
|
||||||
args:
|
args:
|
||||||
|
@ -69,7 +69,7 @@ repos:
|
||||||
*flake8-plugins
|
*flake8-plugins
|
||||||
|
|
||||||
- repo: https://github.com/pre-commit/mirrors-mypy
|
- repo: https://github.com/pre-commit/mirrors-mypy
|
||||||
rev: v1.0.1
|
rev: v1.1.1
|
||||||
hooks:
|
hooks:
|
||||||
- id: mypy
|
- id: mypy
|
||||||
args:
|
args:
|
||||||
|
@ -79,11 +79,11 @@ repos:
|
||||||
additional_dependencies: [types-requests]
|
additional_dependencies: [types-requests]
|
||||||
|
|
||||||
- repo: https://github.com/codespell-project/codespell
|
- repo: https://github.com/codespell-project/codespell
|
||||||
rev: v2.2.2
|
rev: v2.2.4
|
||||||
hooks:
|
hooks:
|
||||||
- id: codespell
|
- id: codespell
|
||||||
args:
|
args:
|
||||||
- --ignore-words-list=ans,crate,damon,fo,followings,hist,iff,mater,secant,som,sur,tim,zar
|
- --ignore-words-list=3rt,ans,crate,damon,fo,followings,hist,iff,kwanza,mater,secant,som,sur,tim,zar
|
||||||
exclude: |
|
exclude: |
|
||||||
(?x)^(
|
(?x)^(
|
||||||
ciphers/prehistoric_men.txt |
|
ciphers/prehistoric_men.txt |
|
||||||
|
|
|
@ -334,6 +334,7 @@
|
||||||
## Electronics
|
## Electronics
|
||||||
* [Builtin Voltage](electronics/builtin_voltage.py)
|
* [Builtin Voltage](electronics/builtin_voltage.py)
|
||||||
* [Carrier Concentration](electronics/carrier_concentration.py)
|
* [Carrier Concentration](electronics/carrier_concentration.py)
|
||||||
|
* [Circular Convolution](electronics/circular_convolution.py)
|
||||||
* [Coulombs Law](electronics/coulombs_law.py)
|
* [Coulombs Law](electronics/coulombs_law.py)
|
||||||
* [Electric Conductivity](electronics/electric_conductivity.py)
|
* [Electric Conductivity](electronics/electric_conductivity.py)
|
||||||
* [Electric Power](electronics/electric_power.py)
|
* [Electric Power](electronics/electric_power.py)
|
||||||
|
|
|
@ -569,7 +569,7 @@ def plot_partition_boundary(
|
||||||
"""
|
"""
|
||||||
We can not get the optimum w of our kernel svm model which is different from linear
|
We can not get the optimum w of our kernel svm model which is different from linear
|
||||||
svm. For this reason, we generate randomly distributed points with high desity and
|
svm. For this reason, we generate randomly distributed points with high desity and
|
||||||
prediced values of these points are calculated by using our tained model. Then we
|
prediced values of these points are calculated by using our trained model. Then we
|
||||||
could use this prediced values to draw contour map.
|
could use this prediced values to draw contour map.
|
||||||
And this contour map can represent svm's partition boundary.
|
And this contour map can represent svm's partition boundary.
|
||||||
"""
|
"""
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
Lorentz transformations describe the transition between two inertial reference
|
Lorentz transformations describe the transition between two inertial reference
|
||||||
frames F and F', each of which is moving in some direction with respect to the
|
frames F and F', each of which is moving in some direction with respect to the
|
||||||
other. This code only calculates Lorentz transformations for movement in the x
|
other. This code only calculates Lorentz transformations for movement in the x
|
||||||
direction with no spacial rotation (i.e., a Lorentz boost in the x direction).
|
direction with no spatial rotation (i.e., a Lorentz boost in the x direction).
|
||||||
The Lorentz transformations are calculated here as linear transformations of
|
The Lorentz transformations are calculated here as linear transformations of
|
||||||
four-vectors [ct, x, y, z] described by Minkowski space. Note that t (time) is
|
four-vectors [ct, x, y, z] described by Minkowski space. Note that t (time) is
|
||||||
multiplied by c (the speed of light) in the first entry of each four-vector.
|
multiplied by c (the speed of light) in the first entry of each four-vector.
|
||||||
|
|
Loading…
Reference in New Issue
Block a user