Sum Essential Complexity is one of the source-code metrics Understand computes across 17+ languages — browse them in the GUI, export and track them, or script them with the Python API.
Sum Essential Complexity
API ID: SumEssentialLanguages: Ada, Basic, C#, C++, Fortran, Java, Jovial, Pascal, Python, Rust, Web
Targets: Architectures, Classes, Files, Functions, Modules, Packages, Project, Subprograms
Sum of essential complexity of all nested functions or methods.
For example:
class SayHello {
public:
SayHello() {}
void printHello();
};
void SayHello::printHello() {
switch (i) {
...
}
}
void cyclomaticDemo() {
...
}
int func(); // declared here, not defined - excluded from aggregates
int main() {
...
}
SayHello(), printHello(), cyclomaticDemo(), and main() have Essential Complexity of 1, 3, 1, and 1. func() is only declared, not defined, so it isn't counted. For the SayHello class, the sum is 1 + 3 = 4. For the whole file (sample.cpp), the sum is 1 + 3 + 1 + 1 = 6.
See Max and Average Essential Complexity for the other aggregations.
- Ada: Project, File, Type, Entry, Function, Package, Procedure, Protected, Task
- Basic: Project, File, Method, Module, Class, Struct
- C#: Project, File, Class, Struct, Method
- C++: Project, File, Class, Struct, Union
- Fortran: Project, File, Module, Function, Program, Subroutine
- Java: Project, File, Class, Interface, Method
- Jovial: Project, File
- Pascal: Project, File, Class, Interface, Compunit, Function, Procedure
- Python: Project, File, Class
- Rust: Project, File
- Web: Project, File, PHP Class, PHP Interface
- For projects and architectures, this metric must also be enabled from "Project Configuration/Metrics/Projects and Architectures" with the "Show aggregated function metrics" option.
- This metric can be enabled from "Project Configuration/Metrics/Complexity" with the "Essential" option.