q-optimize/c3

View on GitHub

Showing 160 of 330 total issues

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

def ode_solver_final_state(
Severity: Minor
Found in c3/libraries/propagation.py - About 45 mins to fix

    Avoid deeply nested control flow statements.
    Open

                            for par, val in props["params"].items():
                                instr.comps[drive_chan][comp].params[par].set_value(val)
                else:
    Severity: Major
    Found in c3/parametermap.py - About 45 mins to fix

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

          def set_ideal(self, ideal):
              if ideal is not None:
                  self.ideal = ideal
              else:
                  gate_list = []
      Severity: Minor
      Found in c3/signal/gates.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 __topological_ordering has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring.
      Open

          def __topological_ordering(self, predecessors: Dict[str, List[str]]) -> List[str]:
              """
              Computes the topological ordering of a directed acyclic graph.
      
              Parameters
      Severity: Minor
      Found in c3/generator/generator.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 reorder_frame has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring.
      Open

          def reorder_frame(
              self, e: tf.constant, v: tf.constant, ordered: bool
          ) -> Tuple[tf.constant, tf.constant, tf.constant]:
              """Reorders the new basis states according to their overlap with bare qubit states."""
              if ordered:
      Severity: Minor
      Found in c3/model.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 ctrl.params["amp"] != 0.0:
                                      offset = ctrl.params["freq_offset"].get_value()
                          freqs[line] = tf.cast(
      Severity: Major
      Found in c3/experiment.py - About 45 mins to fix

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

            def get_init_state(self) -> tf.Tensor:
                """Get an initial state. If a task to compute a thermal state is set, return that."""
                if self.init_state is None:
                    if "init_ground" in self.tasks:
                        print(
        Severity: Minor
        Found in c3/model.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 __init__ has 6 arguments (exceeds 4 allowed). Consider refactoring.
        Open

            def __init__(
        Severity: Minor
        Found in c3/signal/pulse.py - About 45 mins to fix

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

          def ode_solver(
          Severity: Minor
          Found in c3/libraries/propagation.py - About 45 mins to fix

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

                def __init__(
            Severity: Minor
            Found in c3/signal/pulse.py - About 45 mins to fix

              Function adaptive_scan has 5 arguments (exceeds 4 allowed). Consider refactoring.
              Open

              def adaptive_scan(x_init, fun=None, fun_grad=None, grad_lookup=None, options={}):
              Severity: Minor
              Found in c3/libraries/algorithms.py - About 35 mins to fix

                Function epc_analytical has 5 arguments (exceeds 4 allowed). Consider refactoring.
                Open

                def epc_analytical(propagators: dict, index, dims, proj: bool, cliffords=False):
                Severity: Minor
                Found in c3/libraries/fidelities.py - About 35 mins to fix

                  Function rk38 has 5 arguments (exceeds 4 allowed). Consider refactoring.
                  Open

                  def rk38(func, rho, h, dt, col=None):
                  Severity: Minor
                  Found in c3/libraries/propagation.py - About 35 mins to fix

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

                        def __init__(
                    Severity: Minor
                    Found in c3/libraries/tasks.py - About 35 mins to fix

                      Function lbfgs_grad_free has 5 arguments (exceeds 4 allowed). Consider refactoring.
                      Open

                      def lbfgs_grad_free(x_init, fun=None, fun_grad=None, grad_lookup=None, options={}):
                      Severity: Minor
                      Found in c3/libraries/algorithms.py - About 35 mins to fix

                        Function gcmaes has 5 arguments (exceeds 4 allowed). Consider refactoring.
                        Open

                        def gcmaes(x_init, fun=None, fun_grad=None, grad_lookup=None, options={}):
                        Severity: Minor
                        Found in c3/libraries/algorithms.py - About 35 mins to fix

                          Function tf_rmsprop has 5 arguments (exceeds 4 allowed). Consider refactoring.
                          Open

                          def tf_rmsprop(
                          Severity: Minor
                          Found in c3/libraries/algorithms.py - About 35 mins to fix

                            Function lbfgs has 5 arguments (exceeds 4 allowed). Consider refactoring.
                            Open

                            def lbfgs(x_init, fun=None, fun_grad=None, grad_lookup=None, options={}):
                            Severity: Minor
                            Found in c3/libraries/algorithms.py - About 35 mins to fix

                              Function tf_dU_of_t_lind has 5 arguments (exceeds 4 allowed). Consider refactoring.
                              Open

                              def tf_dU_of_t_lind(h0, hks, col_ops, cflds_t, dt):
                              Severity: Minor
                              Found in c3/libraries/propagation.py - About 35 mins to fix

                                Function lindbladian_average_infid_set has 5 arguments (exceeds 4 allowed). Consider refactoring.
                                Open

                                def lindbladian_average_infid_set(
                                Severity: Minor
                                Found in c3/libraries/fidelities.py - About 35 mins to fix
                                  Severity
                                  Category
                                  Status
                                  Source
                                  Language