Tagged Questions

Cyclomatic complexity is a number used to express the complexity of source code (e.g. of a method). It is calculated based on the number of different possible paths through the source code. A low cyclomatic complexity is one factor to improve readability, maintainability and testability of code.

learn more… | top users | synonyms

39
votes
10answers
8k views

Code Analysis In Python

What tools are good to use for code analysis in python? I have a large source repository split across multiple projects, and I would like to be able to run tools across the directories to see details ...
32
votes
28answers
2k views

How complex should code be?

I'm studying about algorithms which can help me write smaller but more complex code. Instead of writing 150 lines of if-else statements, I can design an algorithm that does it in 20 lines. The ...
28
votes
9answers
18k views

Tool for calculating cyclomatic complexity

Can you recommend free tools for calculating cyclomatic complexity. Looking for all languages. One tool/language per answer please.
25
votes
15answers
2k views

Do you find cyclomatic complexity a useful measure?

I've been playing around with measuring the cyclomatic complexity of a big code base. Cyclomatic complexity is the number of linearly independent paths through a program's source code and there are ...
25
votes
13answers
3k views

Conditional logging with minimal cyclomatic complexity

After reading "What’s your/a good limit for cyclomatic complexity?", I realize many of my colleagues were quite annoyed with this new QA policy on our project: no more 10 cyclomatic complexity per ...
21
votes
12answers
1k views

What is Cyclomatic Complexity?

A term that I see every now and then is "Cyclomatic Complexity". Here on SO I saw some Questions about "how to calculate the CC of Language X" or "How do I do Y with the minimum amount of CC", but I'm ...
13
votes
1answer
242 views

How do you calculate cyclomatic complexity for R functions?

Cyclomatic complexity measures how many possible branches can be taken through a function. Is there an existing function/tool to calculate it for R functions? If not, suggestions are appreciated for ...
12
votes
7answers
2k views

Seeking clarifications about structuring code to reduce cyclomatic complexity

Recently our company has started measuring the cyclomatic complexity (CC) of the functions in our code on a weekly basis, and reporting which functions have improved or worsened. So we have started ...
11
votes
7answers
848 views

Measuring the complexity of SQL statements

The complexity of methods in most programming languages can be measured in cyclomatic complexity with static source code analyzers. Is there a similar metric for measuring the complexity of a SQL ...
8
votes
5answers
2k views

Calculate Cyclomatic Complexity for Javascript

Are there any tools available for calculating Cyclomatic Complexity in Javascript? I've found it a very helpful metric in the past while working on server side code, and would like to be able to use ...
7
votes
1answer
152 views

Is “too many dependencies” a code smell?

As a general rule, I like to use constructor-based dependency injection, but recently I was working on a class that depended on 4 other classes. Because long argument lists are hard to read, I ...
6
votes
2answers
136 views

Are there any tools for visualizing code complexity or graphing method calls in Objective-C?

I'm hoping to show a visualization of the code base which can show areas that are overly complex and intertwined. I know what clang is, but I'm not sure it gives me what I want in this case.
6
votes
1answer
259 views

Why does list initialization with lambda causes high cyclomatic complexity?

Initialization of list with lambdas causes high IL cyclomatic complexity: why, and how remove this complexity? For example following code causes the static constructor of the class (which is actually ...
6
votes
3answers
2k views

Automatic generation of Unit test cases for .NET and Java

Is there a good tool to generate unit test cases given say a .NET or Java project, it generates unit test cases that would cover an almost 100% code coverage. The number of test cases could be ...
5
votes
6answers
165 views

why would I refactor this code as Cyclomatic Complexity is 58

I read that having CC 10 or less would be highly maintainable code. But the method that I wrote have CC 58. Thanks to VS 2010 code analysis tool. I believe that the method I wrote is very simple, ...
5
votes
5answers
135 views

Would you abstract your LINQ queries into extension methods

On my current project we set ourselves some goals for the code metrics "Maintainability Index" and "Cyclometic Complexity". Maintainability Index should be 60 or higher and Cyclometic Complexity 25 or ...
5
votes
2answers
2k views

Code Metrics Calculation in Visual Studio

What is the prefered score range for the code metrics calculation for the following Maintainability Index Cyclomatic Complexity Depth of Inheritance class Coupling
4
votes
2answers
569 views

Does LINQ and Lambda expressions reduce Cyclomatic-complexity?

Does LINQ and Lambda expressions reduce cyclomatic-complexity? Just curious because CodeRush actually shows a reduction in cc when the VS analyzer increases it.
3
votes
4answers
595 views

How can I reduce the Cyclomatic Complexity of this?

I have a method that receives an Object and does something based on what type of object it detects: receive(Object object) { if (object intanceof ObjectTypeA) { doSomethingA(); } ...
3
votes
3answers
119 views

Cyclomatic complexity rightfully reduced by using private methods?

Using private methods for decreasing CC by refactoring some decision points into separate methods decreases the CC of the actual method and eases reading, but does not decrease the effort to get full ...
3
votes
3answers
686 views

Cyclomatic Complexity vs project health

I have done the code analysis for my project using VS2010. Here is my results, Maintainability Index - 75% Cyclomatic Complexity - 213 Depth of Inheritance - 7 Class Coupling - 98 Lines of Code - ...
3
votes
4answers
138 views

C function only called once and cyclomatic complexity

I think this question is more about style: I have an algorithm that has a very high CC (and a lot of lines!). I want to reduce it, and it's easy since there are pieces of code that can be grouped. The ...
3
votes
5answers
1k views

Best tool to determine code Cyclomatic complexity [closed]

Can people suggest the best tool to determine the cyclic complexity with in a C# winforms code base.
2
votes
3answers
379 views

Static source code analysis program

I need a program for static analysis of source code of C++. I tried "Understand", can you recommend me anoter program? It can be proprietary. I would prefer if the program supports Java code also. ...
2
votes
1answer
247 views

How to calculate cyclomatic complexity of a Clojure function?

What would be a reasonable way to calculate the cyclomatic complexity of a Clojure function? It's easy to count decision points based on functions like 'if' and 'cond', but it starts to get tricky ...
2
votes
4answers
634 views

How to improve Cyclomatic Complexity?

Cyclomatic Complexity will be high for methods with a high number of decision statements including if/while/for statements. So how do we improve on it? Cos I am handling a big project where I am ...
2
votes
3answers
2k views

Control flow graph & cyclometric complexity for folowing procedure

insertion_procedure (int a[], int p [], int N) { int i,j,k; for (i=0; i<=N; i++) p[i] = i; for (i=2; i<=N; i++) { k = p[i]; j = 1; while (a[p[j-1]] > ...
2
votes
4answers
310 views

Cyclomatic complexity of a code with multiple exit points

How to find the cyclomatic complexity of a function with multiple exit points? The wiki page says p-s+2 where p is the number of decision points and s is the number of exit points. But should not ...
2
votes
2answers
688 views

What is the highest Cyclomatic Complexity of any function you maintain? And how would you go about refactoring it?

I was doing a little exploring of a legacy system I maintain, with NDepend (great tool check it out), the other day. My findings almost made me spray a mouthful of coffee all over my screen. The top 3 ...
2
votes
4answers
954 views

What is (or should be) the cyclomatic complexity of a virtual function call?

Cyclomatic Complexity provides a rough metric for how hard to understand a given function is, or how much potential for containing bugs it has. In the implementations I've read about, usually all of ...
2
votes
5answers
3k views

What is the best way to reduce cyclomatic complexity when validating data?

Right now I'm working on a web application that receives a significant amount of data from a database that has a potential to return null results. When going through the cyclomatic complexity for the ...
1
vote
1answer
51 views

Full lists of expression for C# code which +1 for Cyclomatic Complexity

I need to construct a Control Flow Diagram (simple flow graph with nodes and edges) for each method in my C# project in order to demonstrate the graph-way to calculate cyclomatic complexity. I first ...
1
vote
0answers
290 views

Use Automapper for mapping big domain models to database objects

I would like to use Automapper to map my model objects to database objects. Let say database object is over 30 fields and I want map 10 out of 20 properties from my model. To make it more complex I ...
1
vote
2answers
437 views

Annotations for enforcing cyclomatic complexity and LCOM constrains

At work we are using several tools to capture several metrics (mostly cyclomatic complexity and LCOM). We use those to get warning flags and to guide pre-emptive refactoring efforts. It's been very ...
1
vote
4answers
452 views

Existing library to calculate code complexity of a block of code

I'm given a string which contains an arbitrary amount of code. I want to calculate a number which represents the code complexity of that string. Something like: int complexity = ...
1
vote
4answers
271 views

Deriving Cyclomatic Complexity in .NET

I know that I can access the cyclomatic complexity to my code in Visual Studio 2008 Team Explorer by right clicking and selecting "Calculate Code Metrics". I would like to expose this data for a web ...
0
votes
0answers
27 views

Where to get N'SIQ for C#?

The latest official release of N'SIQ Code Metric Collector (2.1.4 built in 2010-03-31) doesn't support C#. But there are evidences in the internet that someone is using the NSIQ Collector Plugin for ...
0
votes
1answer
149 views

Calculating Cyclomatic Complexity [Pseudocode]

The Cyclomatic Complexity of the pseudocode below is "4". Read A Read B IF A > 0 THEN IF B = 0 THEN Print “No values” ELSE Print B IF A > 21 THEN Print A ...
0
votes
1answer
147 views

Cyclomatic Complexity - Delphi API

I am searching for a Cyclomatic Complexity Api in Delphi (2010). I need to create a program that will analize a source code and report the Cyclomatic Complexity of all methods in all classes (just ...
0
votes
2answers
142 views

Need to learn Cyclomatic Complexity - for beginner

I need to learn about cyclomatic complexity and how to calculate them for various kinds of statements such as IF, FOR, DO-While etc. Can you please provide me sole illustrative tutorial that has some ...
0
votes
1answer
310 views

Common causes of Cyclomatic Complexity and their solutions

At work we are looking into common problems that lead to high cyclomatic complexity. For example, having a large if-else statement can lead to high cyclomatic complexity, but can be resolved by ...
0
votes
2answers
345 views

Cyclomatic complexity using jar files

I am working on a project which requires me to find the cyclomatic complexity of Apache ant (Versions 1.1 through 1.6). I have been asked to use the jar files for this purpose. I used a couple of ...
0
votes
2answers
107 views

Are there any tools that are able to do cyclomatics on Pro*C++ sources?

Are there any tools that are able to do code metrics on Pro*C++ sources? I haven't been able to find anything specific via Google. Does anyone have any experience with this?