MushroomRL/mushroom-rl

View on GitHub
mushroom_rl/core/array_backend.py

Summary

Maintainability
D
1 day
Test Coverage
B
82%

File array_backend.py has 325 lines of code (exceeds 250 allowed). Consider refactoring.
Open

from collections import deque
import numpy as np
import torch

from mushroom_rl.utils.torch import TorchUtils
Severity: Minor
Found in mushroom_rl/core/array_backend.py - About 3 hrs to fix

    ArrayBackend has 29 functions (exceeds 20 allowed). Consider refactoring.
    Open

    class ArrayBackend(object):
    
        @staticmethod
        def get_backend_name():
            raise NotImplementedError
    Severity: Minor
    Found in mushroom_rl/core/array_backend.py - About 3 hrs to fix

      NumpyBackend has 23 functions (exceeds 20 allowed). Consider refactoring.
      Open

      class NumpyBackend(ArrayBackend):
          @staticmethod
          def get_backend_name():
              return 'numpy'
      
      
      Severity: Minor
      Found in mushroom_rl/core/array_backend.py - About 2 hrs to fix

        TorchBackend has 23 functions (exceeds 20 allowed). Consider refactoring.
        Open

        class TorchBackend(ArrayBackend):
        
            @staticmethod
            def get_backend_name():
                return 'torch'
        Severity: Minor
        Found in mushroom_rl/core/array_backend.py - About 2 hrs to fix

          Function convert has a Cognitive Complexity of 9 (exceeds 5 allowed). Consider refactoring.
          Open

              def convert(cls, *arrays, to=None, backend=None):
                  if to is None:
                      to = cls.get_backend_name()
                  if backend is None:
                      backend = ArrayBackend.get_array_backend_from(arrays[0])
          Severity: Minor
          Found in mushroom_rl/core/array_backend.py - 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