code cleanup

parent fa4d8ac8
......@@ -20,7 +20,6 @@
- Метод правых прямоугольников
- Метод трапеций
- Метод парабол
- Метод цифра за цифрой (CORDIC)
- Метод двойного пересчета
- Метод Рунге-Кутты
- Метод Эйлера
......
import typing as tp
# TODO Метод цифра за цифрой
def cordic_method(fx: tp.Callable[[float], float], a: float, b: float) -> float:
"""Метод цифра за цифрой (CORDIC)"""
pass
def double_recalculate_method(
fx: tp.Callable[[float], float], a: float, b: float, steps: int = 1000, perc: float = 0.0001
) -> float:
......
......@@ -12,7 +12,6 @@ STATIC_METHODS = [
static_solvers.parabola_method,
]
DYNAMIC_METHODS = [
dynamic_solvers.cordic_method,
dynamic_solvers.double_recalculate_method,
dynamic_solvers.runge_kutty_method,
dynamic_solvers.euler_method,
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment