Our customers have begun to impose cyclomatic complexity requirements on the software within our products, and our internal process "improvement" group has decided to make cyclomatic complexity part of our coding standards. Both the customer and our internal group have set their (recommendation for an) upper limit at 10. I've argued that if 10 is the recommendation/guideline, then developers will write code that hits 15 or 20. In my opinion, the limit should be set at 5 with the allowance for functions to exceed that when necessary (as determined by review or some other process).

So, my question is, what do other people do? What kind of complexity limits are you willing to to tolerate (high or low)? What do you strive for when you write code?

Update: I'm talking about complexity at the function level.

One of the responses says, "without sharing all the details the best you are going to get here is an arbitrary limit." I would go a step further and say that arbitrary limits is essentially what we're talking about. In the interest of furthering the conversation, though, what specifics would alter the answer? What, in general, would cause these limits to be increased or decreased?

link|improve this question
feedback

11 Answers

We use a red/yellow/green set of thresholds. Each of these thresholds has specific rules about when a reviewer is supposed to flag the change, generally based on what "color" the code was before, and what color it's moving to with the proposed changes.

However - we are working on a legacy code base. We measured existing code, then came up with reasonable thresholds that would allow us to move forward without a revolt from the developers. I believe our thresholds are around 5-8 for green/yellow and 8-10 for yellow/red.

Note that SEI defines thresholds, but they seem to be much more lenient. I agree with your guess that closer to 5-10 is sane and anything higher is a red flag.

link|improve this answer
feedback

If a function is more than a screenful of code, it sets off some mental alarms for me. Post Conditions after the function is done.

  • It's as short as possible.
  • It's as readable as possible - as in it communicates intent.

I dont worry too much about calculating complexity... too complex for me.

link|improve this answer
This is a terrible answer: it is completely unrelated to the question. The question was specifically related to limits on cyclomatic complexity, and your answer is basically "that stuffs not important". – Adam Parkin May 16 at 22:17
@AdamParkin - My response was code complexity != cyclomatic complexity... CycloCompl is one part of it. I've seen what happens when you come up with an arbitrary limit of say 10 and then institute automated reports of anything over the threshold. This has the unintended effect of everyone taking their hands off the wheel unless flagged. So a function that could be done with CC=3 goes in with CC=8. Readability cannot be evaluated by automated analyzers. – Gishu May 17 at 12:18
feedback

If you write your code with a TDD approach, you may find that the resulting code has an average of 3 or so. Using TDD, I rarely get monstrous methods with giant switch statements (which increase CC with every case: statement).

Organizationally, there are no requirements on CC for us. Personally, If I see a method with more than a 5, I try to whittle it down, if possible.

link|improve this answer
feedback

In the general case a CC value of around 10 is reasonably strict. If most of your functions have a CC of under 10 then the likelihood is that its concise and non-complex code. I wouldn't be surprised to find relatively OK functions with a CC of around 15
You need to remember that long functions will likely have a higher CC even though they are quite simple to follow.

I'd tend to go for a value of between 10 and 16, anything higher then you'll need to look closely at the function as more often than not they're full of bugs and bad practices

link|improve this answer
feedback

I think this is going to be relative to the type of problem you are trying to solve. Also, are you talking about cyclomatic complexity on a class or a package/namespace level? Or for the app as a whole?

I think you are definitely on the right track to set a low limit, with a justification process necessary for anything that exceeds it. But without sharing all the details the best you are going to get here is an arbitrary limit (like 42).

As far as what I do, I get it as low as I can, but no lower ;)

link|improve this answer
feedback

10 is our limit, but it has a nasty side-effect due to 'conditional logging'.

More on that with the question: 'How do you deal with conditional logging when trying to respect a limited cyclomatic complexity ?'

link|improve this answer
feedback

According to the following document (and I read that somewhere else before): http://www.mccabe.com/pdf/MeasuringSoftwareComplexityUAV.pdf A right limit is around 11 (see p3 of the doc), the CC and the probability to have bug are linked and seem to cross at that level of CC.

And it seems quite logic to me, lowering the CC you just move the complexity of the code "somewhere" else. The complexity doesn't simply disappear.

In an OO language, you can lower the CC by creating more classes but this will affects another code quality measurement, for example: number of classes and/or level of inheritance which must be limited too.

You have to take in account all the code quality measures, not just one.

link|improve this answer
feedback

Looking at methods, 5 seems reasonable to me.

Any kind of language parsing seems to lead to higher-than-normal cyclomatic complexity in some apps that I've looked at. I'm sure there are other types of task that this would be expected from as well.

link|improve this answer
feedback

If you want an estimation of what are the complexity of projects nowadays this website powered by my company keeps the track of audited project thanks to a sonar plugin we provide for code analysis : http://www.techdebt.org/ You've to consider that most of the classes are data classes with getter/setters with low complexity in comparison to Business classes. The sonar plugin we developed is under LGPL feel free to give it a try : http://sourceforge.net/projects/scertify-sonar/

A good value for CC would something under this average value. Speaking at this time it is around 11-12 / class.

Here you're talking about complexity / method then it should for sure not exceed 5. personally I consider that CC/method is tricky considering that you could have 50 methods of CC 2 in a single class ...

link|improve this answer
feedback

According to Steve McConnell's Code Complete, a cyclomatic complexity between 0 and 5 indicates the routine is "probably fine", at a complexity of 6-10 you should start to think about ways to simplify the routine, and at a complexity of over 10, you should break part of the routine into a second routine.

It should be noted that simply moving complexity into a new routine does not reduce the cyclomatic complexity of the application as a whole. However, it makes it easier to understand and work with smaller blocks.

It's also important to realize that these aren't hard limits, but rather warning flags. Just because a method has a cyclomatic complexity of 10 doesn't mean it's a good idea to break it up.

link|improve this answer
In 2nd edition it mentions: 0-5 the routine is probably fine, 6-10 start to think about ways to simplify the routine, 10+ Break part of the routine into a second routine and call it from the first routine. (page 458). It's worth mentioning that he also points out that these numbers should be seen as "warning flags" and not "absolute limits". – Adam Parkin May 16 at 22:23
feedback

What about the CC for the IF conditions? I came across many scenarios where I need to use more than 5 to 10 conditions in a single if condition. How can I handle those scenarios? I can split the conditions into individual private methods which reduces the complexity according to my PMD report, but it don't sound good choice to me.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.