cyclomatic
Cyclomatic complexity, often referred to simply as cyclomatic, is a software metric that quantifies the complexity of a program's control flow. Introduced by Thomas J. McCabe in 1976, the metric captures the number of linearly independent paths through a program's source code and is commonly interpreted as an indicator of testability, maintainability, and risk.
Calculation can be done from a control flow graph (CFG) or by simple counting of decision points.
Interpretation: Lower values suggest simpler, more maintainable code and easier testing; higher values imply more paths
Limitations: The metric focuses on control flow and not on data complexity, readability, or runtime performance.