MCPcopy Create free account
hub / github.com/TheAlgorithms/Python / bisection.py

File bisection.py

maths/numerical_analysis/bisection.py:None–None  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1from collections.abc import Callable
2
3
4def bisection(function: Callable[[float], float], a: float, b: float) -> float:

Callers

nothing calls this directly

Calls 1

bisectionFunction · 0.70

Tested by

no test coverage detected