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

-1
votes
0answers
8 views

Reducing Cyclomatic Complexity with an interval

The following java code gives a rather high Cyclomatic Complexity. I would like to find a way to properly reduce it. How would I best do this? To be clear, the code gets the corresponding result of a ...
0
votes
0answers
10 views

Can any one recommend good C/C++ code analyzer utilities which can be integrated with visual studio 2012

Please recommend C/C++ code analyzer utilities. Which can be easily integrated in visual studio 2012. which can measure cyclomatic complexity. Which is freeware. / open source /
1
vote
2answers
96 views

How to reduce cyclomatic complexity?

I'm working on a class which sends a RequestDTO to a Web Service. I need to validate the request before it is sent. The request can be sent from 3 different places and there are different validation ...
9
votes
1answer
261 views

javascript: cyclomatic complexity of the wrapper function

Most of my javascript code files look like this: (function() { var Foo = function() { ... }; var Bar = function() { ... }; ... }()); I've tried a number of tools that calculate ...
1
vote
1answer
71 views

java switch cyclomatic complexity vs performance

I have a case here where the switch statement contains about 40 cases of each returning a different configured object based on input. This method is shown as having too high cyclomatic complexity in ...
0
votes
0answers
35 views

How to get Class and method level complexity using JavaNCSS plugin with Maven/Jenkins

I am using javancss-maven-plugin with Jenkins to generate the statistics on CCN for all classes and methods. The POM file has the following section for the plugin. <build> <plugins> ...
0
votes
1answer
75 views

Cyclomatic complexity (Vg) - minimal or exact number of mininum of independent paths?

I thought that Vg=minimal number of independent paths but today I saw a presentation of one of my teachers and it said: Vg is equal or greater than number of independent paths. It is true? I was sure ...
0
votes
0answers
93 views

I was asked to answer the following : [closed]

Given the bias that Cyclomatic Complexity (CC) is usually higher in longer procedures, suggest a metric, which normalises CC, meaning how much decision is there comparing with the given code. I ...
0
votes
1answer
44 views

Facade/Service architecture

Before I ask my question I must describe how our applications are built. We run several web applications that uses ejb´s in the service layer. I try to describe the communication with a short ...
3
votes
1answer
136 views

Cyclomatic complexity of logically similar code

Consider the following three functions, which all behave in an identical manner, using different code to achieve the same thing (examples are written in JavaScript, and I'm particularly interested in ...
3
votes
2answers
171 views

Cyclomatic Complexity in piece of code with multiple exit points

I have this method that validates a password: /** * Checks if the given password is valid. * * @param password The password to validate. * @return {@code true} if the password is valid, {@code ...
1
vote
1answer
116 views

Cyclomatic Complexity With Compound Conditions and Short Circuiting

I am studying Cyclomatic Complexity in my Software Quality Assurance course at the University and I am having a hard time understanding how it works when you have compound conditions in a predicate ...
3
votes
3answers
188 views

Code complexity metrics and ifdefs

I was wondering how standard code complexity metrics (e.g., LOC, McCabe cyclomatic complexity, Halstead metrics, etc) are computed in the face of ifdefs in C/C++ code. If ifdefs are ignored, syntax ...
0
votes
2answers
132 views

How to reduce cyclomatic complexity inside an onClick() method

Let's imagine a simple construction: public void onClick(View view) { switch (view.getId()) { case R.id.btn_first: { // some code } break; case ...
6
votes
2answers
391 views

Cyclomatic complexity count of 31, where has this come from?

I'm developing an application that pulls data from an Excel file (I don't have access to the actual database) and I've written a method which has as its only function to pull the data from the Excel ...
4
votes
3answers
768 views

How to calculate cyclomatic complexity of a project (not a class/function)?

How to calculate cyclomatic complexity of the entire Java project? I have complexities for every method, but how to aggregate them all into one numeric metric? Any ideas or existing methods? I'm not ...
0
votes
1answer
236 views

What is the difference between Cyclomatic Complexity and Essential Cyclomatic Complexity?

There has already been a question on What is Cyclomatic Complexity? However, there is another term called - Essential Cyclomatic Complexity. What are the differences and similarities between these ...
2
votes
1answer
110 views

How does a static Dictionary have cyclomatic complexity?

I have the following class: public static class MyClass { private static readonly Dictionary<Type, Func<string, object>> valueTypes; static MyClass() { var dictionary ...
1
vote
0answers
161 views

How Improve c# control flow complexity automatically?

I search about an automatic tool to refactor & rearrange c# code blocks to improve control flow complexity. I have a messy C# code which uses "GOTO" and "switch" instead of "while & for" ...
0
votes
1answer
194 views

How can I achive code metrics for C# code in Jenkins?

How can I achieve code metrics for C# code in Jenkins, for example Cyclomatic complexity?
0
votes
1answer
286 views

Cyclomatic complexity of IF((A>B) AND (C>D)) and IF((A>B) OR (C>D))

I want to know the cyclomatic complexity of two section of code, IF((A>B) AND (C>D)) { a=a+b;c=c+d;} as far my knowledge the cyclomatic complexity of above code=2+1=3, Another code ...
1
vote
3answers
521 views

Tools to automate calculation of cyclomatic complexity in java?

Are there any tools available for Java that can automagically determine the cyclomatic complexity of given Java code? I have sought out tools online, and have yet to find one.
1
vote
0answers
67 views

CyVis 0.9 Ant task failing to generate html report

I am currently attempting to make an Ant build file for a Java project that uses CyVis 0.9 as one of its tools. I am running into a problem where I cannot get it to generate an html report. Below is ...
1
vote
2answers
200 views

Cyclomatic complexity in Legacy VB6.0 application

Suggest any tool that should support to VB6.0 I am looking for following metrics Code Analysis Code Maintainability Index Cyclomatic complexity
3
votes
2answers
354 views

Measuring Cyclomatic Complexity of Data Mapping Functions & Closures

According to the basic rules of cyclomatic complexity, the below code should have a complexity of 2 (only one branch point - the for loop). function SumArray(array_to_sum) { var sum = 0; for ...
3
votes
4answers
674 views

In a switch vs dictionary for a value of Func, which is faster and why?

Suppose there is the following code: private static int DoSwitch(string arg) { switch (arg) { case "a": return 0; case "b": return 1; case "c": return 2; case ...
1
vote
3answers
584 views

How to reduce Cyclomatic complexity in an if-else statement

What will you do in this case to reduce the Cyclomatic Complexty if (Name.Text == string.Empty) Name.Background = Brushes.LightSteelBlue; else if(Age.Text == string.Empty) Age.Background = ...
0
votes
1answer
239 views

Control flow graph & cyclometric complexity

I have to find the control flow graph and cyclometric complexity for this code and then suggest some white box test cases and black box test cases. But I am having trouble making a CFG for the code. ...
0
votes
1answer
1k views

McCabe's Complexity Metric and Independent Paths

int maxValue = m[0][0]; for (int i = 0; i < N; i++) { for (int j = 0; j < N; j++) { if ( m[i][j] >maxValue ) { ...
0
votes
3answers
196 views

Cyclomatic Number

I am trying to understand McCabe's Cyclomatic number and I learned what it is actually for i.e. it is used to indicate the complexity of a program. It directly measures the number of linearly ...
0
votes
1answer
2k views

Difference between “complexity” metric and “complexity / method” metric

In Sonar, for a particular Java class, I see : Complexity: 830 Complexity /method: 8,1 How could you explain the difference between those two metrics ? Is "Complexity" the class complexity ...
2
votes
1answer
386 views

Dynamic keyword causes Cyclomatic Complexity > 25 in Visual Studio 2010 Code Analysis

I have a piece of code that is similar to this: dynamic a = new ValueHolder(); dynamic b = new ValueHolder(); dynamic c = new ValueHolder(); a.MtdActual = b.MtdActual + c.MtdActual; a.YtdActual = ...
6
votes
3answers
471 views

How can the cyclomatic complexity be 27 in a method with 13 event handler subscriptions?

We have this code, sortof: private void InitializeEvents() { this.Event1 += (s,e) => { }; this.Event2 += (s,e) => { }; this.Event3 += (s,e) => { }; this.Event4 += (s,e) => ...
0
votes
1answer
136 views

How do you list the most complex methods of a project in Sonar?

In Sonar, you can have the list of classes sorted by average complexity of methods of the class (when you list the complexity per method from the dashboard) But how do you list the most complex ...
4
votes
3answers
234 views

Code Quality - prefer quantitative measures over qualitative guidelines?

Over the years in many code reviews, I opted for the quantitative code quality measures over qualitative guidelines. For example, rewrite the code if Cyclomatic complexity cc is greater than 50 ...
1
vote
1answer
194 views

Obtaining Annotated Flow Graphs and Call Graphs into Code for Observing Integration McCabe Cyclomatic Complexity Metric

my first question here hope it is relevant to the community. I'll try to summarize here what I spent one day looking for, sorry if it looks too big. I'm looking for a tool that has as final intention ...
0
votes
0answers
85 views

Metrics in Dynamic/Runtime environment

I have statically implemented various metrics (like cyclometic complexity, LOC, information flow, etc) on a C++ code using a tool called CCCC. Now I need to implement the same metrics on the same C++ ...
0
votes
1answer
72 views

Basis circuit in the graph

I was going through the cyclomatic complexity theory in software engineering and am not able to understand the concept of basis circuit in it. Could someone please help me explain it in easier way. I ...
0
votes
2answers
4k views

Calculation of Cyclomatic Complexity

I am at learning stage of cyclomatic complexity(CC). For practise, I am calculating cyclomatic complexity of 2 examples and want to confirm if my answers are correct or not... Referring to ...
9
votes
3answers
955 views

how to get method level complexity using checkstyle (or any other tool for java)

I used javancss to get get cyclomaric complexity of methods. It produced reports in text and xml form, easy to process method level information. For example text output is some thing like below. 1 2 ...
0
votes
1answer
107 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 ...
3
votes
1answer
283 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 ...
5
votes
6answers
458 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, ...
8
votes
2answers
790 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.
14
votes
1answer
375 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 ...
0
votes
1answer
1k 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 ...
5
votes
5answers
273 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 ...
2
votes
3answers
726 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. ...
4
votes
4answers
6k 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: void receive(Object object) { if (object instanceof ObjectTypeA) { doSomethingA(); ...
4
votes
4answers
416 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 ...

1 2