code cleanup

parent fa4d8ac8
...@@ -20,7 +20,6 @@ ...@@ -20,7 +20,6 @@
- Метод правых прямоугольников - Метод правых прямоугольников
- Метод трапеций - Метод трапеций
- Метод парабол - Метод парабол
- Метод цифра за цифрой (CORDIC)
- Метод двойного пересчета - Метод двойного пересчета
- Метод Рунге-Кутты - Метод Рунге-Кутты
- Метод Эйлера - Метод Эйлера
......
import typing as tp import typing as tp
# TODO Метод цифра за цифрой
def cordic_method(fx: tp.Callable[[float], float], a: float, b: float) -> float:
"""Метод цифра за цифрой (CORDIC)"""
pass
def double_recalculate_method( def double_recalculate_method(
fx: tp.Callable[[float], float], a: float, b: float, steps: int = 1000, perc: float = 0.0001 fx: tp.Callable[[float], float], a: float, b: float, steps: int = 1000, perc: float = 0.0001
) -> float: ) -> float:
......
...@@ -12,7 +12,6 @@ STATIC_METHODS = [ ...@@ -12,7 +12,6 @@ STATIC_METHODS = [
static_solvers.parabola_method, static_solvers.parabola_method,
] ]
DYNAMIC_METHODS = [ DYNAMIC_METHODS = [
dynamic_solvers.cordic_method,
dynamic_solvers.double_recalculate_method, dynamic_solvers.double_recalculate_method,
dynamic_solvers.runge_kutty_method, dynamic_solvers.runge_kutty_method,
dynamic_solvers.euler_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