q-optimize/c3

View on GitHub

Showing 160 of 330 total issues

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 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

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 __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 __init__ has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring.
      Open

          def __init__(
              self,
              name: str,
              desc: str = None,
              comment: str = None,
      Severity: Minor
      Found in c3/libraries/chip.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 quick_setup has 6 arguments (exceeds 4 allowed). Consider refactoring.
      Open

          def quick_setup(self, chan, qubit_freq, gate_time, v2hz=1, sideband=None) -> None:
      Severity: Minor
      Found in c3/signal/gates.py - About 45 mins to fix

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

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

          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 tf_propagation_lind has 6 arguments (exceeds 4 allowed). Consider refactoring.
            Open

            def tf_propagation_lind(h0, hks, col_ops, cflds_t, dt, history=False):
            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 tf_sgd has 5 arguments (exceeds 4 allowed). Consider refactoring.
                Open

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

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

                  def tf_adam(
                  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 unitary_infid_set has 5 arguments (exceeds 4 allowed). Consider refactoring.
                      Open

                      def unitary_infid_set(propagators: dict, instructions: dict, index, dims, n_eval=-1):
                      Severity: Minor
                      Found in c3/libraries/fidelities.py - About 35 mins to fix

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

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

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

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

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

                            def state_transfer_from_states(states: tf.Tensor, index, dims, params, n_eval=-1):
                            Severity: Minor
                            Found in c3/libraries/fidelities.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 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

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

                                  def cma_pre_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
                                    Severity
                                    Category
                                    Status
                                    Source
                                    Language