Types
The complexity of an existing program determines the complexity of changing the program. Problem complexity can be divided into two categories: #Accidental complexity relates to difficulties a programmer faces due to the software engineering tools. Selecting a better tool set or a higher-level programming language may reduce it. Accidental complexity often results from not using the domain to frame the form of the solution.Measures
Several measures of software complexity have been proposed. Many of these, although yielding a good representation of complexity, do not lend themselves to easy measurement. Some of the more commonly used metrics are * McCabe's cyclomatic complexity metric * Halstead's software science metrics * Henry and Kafura introduced "Software Structure Metrics Based on Information Flow" in 1981,Henry, S.; Kafura, D. IEEE Transactions on Software Engineering Volume SE-7, Issue 5, Sept. 1981 Page(s): 510 - 518 which measures complexity as a function of "fan-in" and "fan-out". They define fan-in of a procedure as the number of local flows into that procedure plus the number of data structures from which that procedure retrieves information. Fan-out is defined as the number of local flows out of that procedure plus the number of data structures that the procedure updates. Local flows relate to data passed to, and from procedures that call or are called by, the procedure in question. Henry and Kafura's complexity value is defined as "the procedure length multiplied by the square of fan-in multiplied by fan-out" (Length ×(fan-in × fan-out)²). * Chidamber and Kemerer introduced "A Metrics Suite for Object-Oriented Design" in 1994,Chidamber, S.R.; Kemerer, C.F. IEEE Transactions on Software Engineering Volume 20, Issue 6, Jun 1994 Page(s):476 - 493 focusing on metrics for object-oriented code. They introduce six OO complexity metrics: (1) weighted methods per class; (2) coupling between object classes; (3) response for a class; (4) number of children; (5) depth of inheritance tree; and (6) lack of cohesion of methods. Several other metrics can be used to measure programming complexity: * Branching complexity (Sneed Metric) * Data access complexity (Card Metric) * Data complexity (Chapin Metric) * Data flow complexity (Elshof Metric) * Decisional complexity (McClure Metric) *Path Complexity (Bang Metric) Tesler's Law is anChidamber and Kemerer Metrics
Chidamber and Kemerer proposed a set of programing complexity metrics widely used in measurements and academic articles: weighted methods per class, coupling between object classes, response for a class, number of children, depth of inheritance tree, and lack of cohesion of methods, described below: * Weighted methods per class ("WMC") ** ** n is the number of methods on the class ** is the complexity of the method * Coupling between object classes ("CBO") ** number of other class which is coupled (using or being used) * Response for a class ("RFC") ** where ** ** is set of methods called by method i ** is the set of methods in the class * Number of children ("NOC") ** sum of all classes that inherit this class or a descendant of it * Depth of inheritance tree ("DIT") ** maximum depth of the inheritance tree for this class * Lack of cohesion of methods ("LCOM") ** Measures the intersection of the attributes used in common by the class methods ** ** Where ** And ** With is the set of attributes (instance variables) accessed (read from or written to) by the -th method of the classSee also
*References
{{Reflist Software metrics Complex systems theory