benvial/gyptis

View on GitHub

Showing 211 of 211 total issues

Function get_boundaries has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring.
Open

    def get_boundaries(self, idf, dim=None, physical=True):
        dim = self._check_dim(dim)
        if isinstance(idf, str):
            if dim == 2:
                type_entity = "surfaces"
Severity: Minor
Found in src/gyptis/geometry/geometry.py - About 45 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

Avoid deeply nested control flow statements.
Open

                    if callable(k):
                        const = False
                        break
            # if p.shape != (2, 2):
            #     p = p[:2][:2]
Severity: Major
Found in src/gyptis/materials.py - About 45 mins to fix

    Function plot_markers has 6 arguments (exceeds 4 allowed). Consider refactoring.
    Open

    def plot_markers(markers, subdomains, ax=None, geometry=None, colorbar=True, **kwargs):
    Severity: Minor
    Found in src/gyptis/plot.py - About 45 mins to fix

      Function filtering has 6 arguments (exceeds 4 allowed). Consider refactoring.
      Open

      def filtering(a, rfilt=0, function_space=None, degree=1, solver=None, mesh=None):
      Severity: Minor
      Found in src/gyptis/optimize.py - About 45 mins to fix

        Function __init__ has 6 arguments (exceeds 4 allowed). Consider refactoring.
        Open

            def __init__(self, wavelength, dim, phase=0, amplitude=1, degree=1, domain=None):
        Severity: Minor
        Found in src/gyptis/sources/source.py - About 45 mins to fix

          Function __init__ has 6 arguments (exceeds 4 allowed). Consider refactoring.
          Open

              def __init__(
          Severity: Minor
          Found in src/gyptis/models/phc3d.py - About 45 mins to fix

            Function plot_bands has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring.
            Open

            def plot_bands(
                sym_points,
                nband,
                eigenvalues,
                xtickslabels=None,
            Severity: Minor
            Found in src/gyptis/utils/bands.py - About 45 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

            Function cut has 6 arguments (exceeds 4 allowed). Consider refactoring.
            Open

                def cut(self, id1, id2, dim1=None, dim2=None, sync=True, **kwargs):
            Severity: Minor
            Found in src/gyptis/geometry/geometry.py - About 45 mins to fix

              Function plot_bands has 6 arguments (exceeds 4 allowed). Consider refactoring.
              Open

              def plot_bands(
              Severity: Minor
              Found in src/gyptis/utils/bands.py - About 45 mins to fix

                Function add_circle has 6 arguments (exceeds 4 allowed). Consider refactoring.
                Open

                    def add_circle(self, x, y, z, r, surface=True, **kwargs):
                Severity: Minor
                Found in src/gyptis/geometry/geometry.py - About 45 mins to fix

                  Function __init__ has 6 arguments (exceeds 4 allowed). Consider refactoring.
                  Open

                      def __init__(self, dict, geometry=None, pmls=None, dim=2, degree=1, element=None):
                  Severity: Minor
                  Found in src/gyptis/materials.py - About 45 mins to fix

                    Function __init__ has 6 arguments (exceeds 4 allowed). Consider refactoring.
                    Open

                        def __init__(
                    Severity: Minor
                    Found in src/gyptis/measure.py - About 45 mins to fix

                      Function __init__ has 6 arguments (exceeds 4 allowed). Consider refactoring.
                      Open

                          def __init__(self, markers, subdomains, mapping, *args, **kwargs):
                      Severity: Minor
                      Found in src/gyptis/materials.py - About 45 mins to fix

                        Function plane_wave_2d has 6 arguments (exceeds 4 allowed). Consider refactoring.
                        Open

                        def plane_wave_2d(wavelength, theta, phase=0, amplitude=1, degree=1, domain=None):
                        Severity: Minor
                        Found in src/gyptis/sources/pw.py - About 45 mins to fix

                          Function field_stack_2D has 6 arguments (exceeds 4 allowed). Consider refactoring.
                          Open

                          def field_stack_2D(phi, alpha, beta, yshift=0, degree=1, domain=None):
                          Severity: Minor
                          Found in src/gyptis/sources/stack.py - About 45 mins to fix

                            Avoid deeply nested control flow statements.
                            Open

                                                if znew not in z:
                                                    z.append(znew)
                                                    tnew = f(znew)
                                                    if multi_output:
                                                        t.append(tnew[0])
                            Severity: Major
                            Found in src/gyptis/utils/sample.py - About 45 mins to fix

                              Function plot has 6 arguments (exceeds 4 allowed). Consider refactoring.
                              Open

                              def plot(fplot, ax=None, geometry=None, proj_space=None, colorbar=True, **kwargs):
                              Severity: Minor
                              Found in src/gyptis/plot.py - About 45 mins to fix

                                Function _cplx_iter has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring.
                                Open

                                def _cplx_iter(f):
                                    def wrapper(v, *args, **kwargs):
                                        iterable = isinstance(v, Iterable)
                                        cplx = any(iscomplex(v_) for v_ in v) if iterable else iscomplex(v)
                                        if cplx:
                                Severity: Minor
                                Found in src/gyptis/complex.py - About 45 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

                                Function main has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring.
                                Open

                                def main():
                                    p = optparse.OptionParser(__doc__)
                                    options, args = p.parse_args()
                                
                                    if len(args) < 1:
                                Severity: Minor
                                Found in docs/postprocess.py - About 45 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

                                Consider simplifying this complex logical expression.
                                Open

                                        if ison0 and ison1 and ison2:
                                            y = set_coord(x - v[0] - v[1] - v[2], y)
                                
                                        elif ison0 and ison2:
                                            y = set_coord(x - v[0] - v[2], y)
                                Severity: Major
                                Found in src/gyptis/bc.py - About 40 mins to fix
                                  Severity
                                  Category
                                  Status
                                  Source
                                  Language