SciRuby/integration

View on GitHub
lib/integration.rb

Summary

Maintainability
C
7 hrs
Test Coverage

Method integrate_ruby has a Cognitive Complexity of 19 (exceeds 5 allowed). Consider refactoring.
Open

    def integrate_ruby(lower_bound, upper_bound, options, &f)
      method = options[:method]
      tolerance = options[:tolerance]
      initial_step = options[:initial_step]
      step = options[:step]
Severity: Minor
Found in lib/integration.rb - About 2 hrs to fix

Cognitive Complexity

Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

A method's cognitive complexity is based on a few simple rules:

  • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
  • Code is considered more complex for each "break in the linear flow of the code"
  • Code is considered more complex when "flow breaking structures are nested"

Further reading

Method integrate has a Cognitive Complexity of 18 (exceeds 5 allowed). Consider refactoring.
Open

    def integrate(t1, t2, options = {}, &f)
      inf_bounds = (infinite?(t1) || infinite?(t2))

      fail 'No function passed' unless block_given?
      fail 'Non-numeric bounds' unless ((t1.is_a? Numeric) && (t2.is_a? Numeric)) || inf_bounds
Severity: Minor
Found in lib/integration.rb - About 2 hrs to fix

Cognitive Complexity

Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

A method's cognitive complexity is based on a few simple rules:

  • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
  • Code is considered more complex for each "break in the linear flow of the code"
  • Code is considered more complex when "flow breaking structures are nested"

Further reading

Method integrate_ruby has 36 lines of code (exceeds 25 allowed). Consider refactoring.
Open

    def integrate_ruby(lower_bound, upper_bound, options, &f)
      method = options[:method]
      tolerance = options[:tolerance]
      initial_step = options[:initial_step]
      step = options[:step]
Severity: Minor
Found in lib/integration.rb - About 1 hr to fix

    Method integrate_gsl has a Cognitive Complexity of 9 (exceeds 5 allowed). Consider refactoring.
    Open

        def integrate_gsl(lower_bound, upper_bound, options, &f)
          f = GSL::Function.alloc(&f)
          method = options[:method]
          tolerance = options[:tolerance]
    
    
    Severity: Minor
    Found in lib/integration.rb - About 55 mins to fix

    Cognitive Complexity

    Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

    A method's cognitive complexity is based on a few simple rules:

    • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
    • Code is considered more complex for each "break in the linear flow of the code"
    • Code is considered more complex when "flow breaking structures are nested"

    Further reading

    There are no issues that match your filters.

    Category
    Status