OpenJij/OpenJij

View on GitHub
openjij/sampler/sa_sampler.py

Summary

Maintainability
F
4 days
Test Coverage
B
82%

Function sample has a Cognitive Complexity of 70 (exceeds 5 allowed). Consider refactoring.
Open

    def sample(
        self,
        bqm: Union[
            "openj.model.model.BinaryQuadraticModel", dimod.BinaryQuadraticModel
        ],
Severity: Minor
Found in openjij/sampler/sa_sampler.py - About 1 day 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

File sa_sampler.py has 501 lines of code (exceeds 250 allowed). Consider refactoring.
Open

# Copyright 2023 Jij Inc.
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at

Severity: Major
Found in openjij/sampler/sa_sampler.py - About 1 day to fix

    Cyclomatic complexity is too high in method sample. (31)
    Open

        def sample(
            self,
            bqm: Union[
                "openj.model.model.BinaryQuadraticModel", dimod.BinaryQuadraticModel
            ],
    Severity: Minor
    Found in openjij/sampler/sa_sampler.py by radon

    Cyclomatic Complexity

    Cyclomatic Complexity corresponds to the number of decisions a block of code contains plus 1. This number (also called McCabe number) is equal to the number of linearly independent paths through the code. This number can be used as a guide when testing conditional logic in blocks.

    Radon analyzes the AST tree of a Python program to compute Cyclomatic Complexity. Statements have the following effects on Cyclomatic Complexity:

    Construct Effect on CC Reasoning
    if +1 An if statement is a single decision.
    elif +1 The elif statement adds another decision.
    else +0 The else statement does not cause a new decision. The decision is at the if.
    for +1 There is a decision at the start of the loop.
    while +1 There is a decision at the while statement.
    except +1 Each except branch adds a new conditional path of execution.
    finally +0 The finally block is unconditionally executed.
    with +1 The with statement roughly corresponds to a try/except block (see PEP 343 for details).
    assert +1 The assert statement internally roughly equals a conditional statement.
    Comprehension +1 A list/set/dict comprehension of generator expression is equivalent to a for loop.
    Boolean Operator +1 Every boolean operator (and, or) adds a decision point.

    Source: http://radon.readthedocs.org/en/latest/intro.html

    Function _sample_hubo_old has a Cognitive Complexity of 38 (exceeds 5 allowed). Consider refactoring.
    Open

        def _sample_hubo_old(
            self,
            J: Union[
                dict, "openj.model.model.BinaryPolynomialModel", cimod.BinaryPolynomialModel
            ],
    Severity: Minor
    Found in openjij/sampler/sa_sampler.py - About 5 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

    Cyclomatic complexity is too high in method _sample_hubo_old. (20)
    Open

        def _sample_hubo_old(
            self,
            J: Union[
                dict, "openj.model.model.BinaryPolynomialModel", cimod.BinaryPolynomialModel
            ],
    Severity: Minor
    Found in openjij/sampler/sa_sampler.py by radon

    Cyclomatic Complexity

    Cyclomatic Complexity corresponds to the number of decisions a block of code contains plus 1. This number (also called McCabe number) is equal to the number of linearly independent paths through the code. This number can be used as a guide when testing conditional logic in blocks.

    Radon analyzes the AST tree of a Python program to compute Cyclomatic Complexity. Statements have the following effects on Cyclomatic Complexity:

    Construct Effect on CC Reasoning
    if +1 An if statement is a single decision.
    elif +1 The elif statement adds another decision.
    else +0 The else statement does not cause a new decision. The decision is at the if.
    for +1 There is a decision at the start of the loop.
    while +1 There is a decision at the while statement.
    except +1 Each except branch adds a new conditional path of execution.
    finally +0 The finally block is unconditionally executed.
    with +1 The with statement roughly corresponds to a try/except block (see PEP 343 for details).
    assert +1 The assert statement internally roughly equals a conditional statement.
    Comprehension +1 A list/set/dict comprehension of generator expression is equivalent to a for loop.
    Boolean Operator +1 Every boolean operator (and, or) adds a decision point.

    Source: http://radon.readthedocs.org/en/latest/intro.html

    Cyclomatic complexity is too high in class SASampler. (10)
    Open

    class SASampler(BaseSampler):
        """Sampler with Simulated Annealing (SA).
    
        Args:
            beta_min (float):
    Severity: Minor
    Found in openjij/sampler/sa_sampler.py by radon

    Cyclomatic Complexity

    Cyclomatic Complexity corresponds to the number of decisions a block of code contains plus 1. This number (also called McCabe number) is equal to the number of linearly independent paths through the code. This number can be used as a guide when testing conditional logic in blocks.

    Radon analyzes the AST tree of a Python program to compute Cyclomatic Complexity. Statements have the following effects on Cyclomatic Complexity:

    Construct Effect on CC Reasoning
    if +1 An if statement is a single decision.
    elif +1 The elif statement adds another decision.
    else +0 The else statement does not cause a new decision. The decision is at the if.
    for +1 There is a decision at the start of the loop.
    while +1 There is a decision at the while statement.
    except +1 Each except branch adds a new conditional path of execution.
    finally +0 The finally block is unconditionally executed.
    with +1 The with statement roughly corresponds to a try/except block (see PEP 343 for details).
    assert +1 The assert statement internally roughly equals a conditional statement.
    Comprehension +1 A list/set/dict comprehension of generator expression is equivalent to a for loop.
    Boolean Operator +1 Every boolean operator (and, or) adds a decision point.

    Source: http://radon.readthedocs.org/en/latest/intro.html

    Cyclomatic complexity is too high in function geometric_ising_beta_schedule. (6)
    Open

    def geometric_ising_beta_schedule(
        cxxgraph: Union[openjij.cxxjij.graph.Dense, openjij.cxxjij.graph.CSRSparse],
        beta_max=None,
        beta_min=None,
        num_sweeps=1000,
    Severity: Minor
    Found in openjij/sampler/sa_sampler.py by radon

    Cyclomatic Complexity

    Cyclomatic Complexity corresponds to the number of decisions a block of code contains plus 1. This number (also called McCabe number) is equal to the number of linearly independent paths through the code. This number can be used as a guide when testing conditional logic in blocks.

    Radon analyzes the AST tree of a Python program to compute Cyclomatic Complexity. Statements have the following effects on Cyclomatic Complexity:

    Construct Effect on CC Reasoning
    if +1 An if statement is a single decision.
    elif +1 The elif statement adds another decision.
    else +0 The else statement does not cause a new decision. The decision is at the if.
    for +1 There is a decision at the start of the loop.
    while +1 There is a decision at the while statement.
    except +1 Each except branch adds a new conditional path of execution.
    finally +0 The finally block is unconditionally executed.
    with +1 The with statement roughly corresponds to a try/except block (see PEP 343 for details).
    assert +1 The assert statement internally roughly equals a conditional statement.
    Comprehension +1 A list/set/dict comprehension of generator expression is equivalent to a for loop.
    Boolean Operator +1 Every boolean operator (and, or) adds a decision point.

    Source: http://radon.readthedocs.org/en/latest/intro.html

    Cyclomatic complexity is too high in method _convert_validation_schedule. (6)
    Open

        def _convert_validation_schedule(self, schedule):
            """Checks if the schedule is valid and returns cxxjij schedule."""
            if not isinstance(schedule, (list, np.array)):
                raise ValueError("schedule should be list or numpy.array")
    
    
    Severity: Minor
    Found in openjij/sampler/sa_sampler.py by radon

    Cyclomatic Complexity

    Cyclomatic Complexity corresponds to the number of decisions a block of code contains plus 1. This number (also called McCabe number) is equal to the number of linearly independent paths through the code. This number can be used as a guide when testing conditional logic in blocks.

    Radon analyzes the AST tree of a Python program to compute Cyclomatic Complexity. Statements have the following effects on Cyclomatic Complexity:

    Construct Effect on CC Reasoning
    if +1 An if statement is a single decision.
    elif +1 The elif statement adds another decision.
    else +0 The else statement does not cause a new decision. The decision is at the if.
    for +1 There is a decision at the start of the loop.
    while +1 There is a decision at the while statement.
    except +1 Each except branch adds a new conditional path of execution.
    finally +0 The finally block is unconditionally executed.
    with +1 The with statement roughly corresponds to a try/except block (see PEP 343 for details).
    assert +1 The assert statement internally roughly equals a conditional statement.
    Comprehension +1 A list/set/dict comprehension of generator expression is equivalent to a for loop.
    Boolean Operator +1 Every boolean operator (and, or) adds a decision point.

    Source: http://radon.readthedocs.org/en/latest/intro.html

    Function _sample_hubo_old has 11 arguments (exceeds 4 allowed). Consider refactoring.
    Open

        def _sample_hubo_old(
    Severity: Major
    Found in openjij/sampler/sa_sampler.py - About 1 hr to fix

      Function sample_hubo has 11 arguments (exceeds 4 allowed). Consider refactoring.
      Open

          def sample_hubo(
      Severity: Major
      Found in openjij/sampler/sa_sampler.py - About 1 hr to fix

        Function sample has 11 arguments (exceeds 4 allowed). Consider refactoring.
        Open

            def sample(
        Severity: Major
        Found in openjij/sampler/sa_sampler.py - About 1 hr to fix

          Avoid deeply nested control flow statements.
          Open

                                  if v != -1 and v != 1:
                                      raise RuntimeError(
                                          "The initial variables must be -1 or +1."
                                      )
                                  temp_initial_state.append(v)
          Severity: Major
          Found in openjij/sampler/sa_sampler.py - About 45 mins to fix

            Avoid deeply nested control flow statements.
            Open

                                    if v != 0 and v != 1:
                                        raise RuntimeError("The initial variables must be 0 or 1.")
                                    temp_initial_state.append(2 * v - 1)
            Severity: Major
            Found in openjij/sampler/sa_sampler.py - About 45 mins to fix

              Avoid deeply nested control flow statements.
              Open

                                      if v != 0 and v != 1:
                                          raise RuntimeError("The initial variables must be 0 or 1.")
                                      temp_initial_state.append(2 * v - 1)
              Severity: Major
              Found in openjij/sampler/sa_sampler.py - About 45 mins to fix

                Avoid deeply nested control flow statements.
                Open

                                        if v != -1 and v != 1:
                                            raise RuntimeError(
                                                "The initial variables must be -1 or +1."
                                            )
                                        temp_initial_state.append(v)
                Severity: Major
                Found in openjij/sampler/sa_sampler.py - About 45 mins to fix

                  Function geometric_ising_beta_schedule has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
                  Open

                  def geometric_ising_beta_schedule(
                      cxxgraph: Union[openjij.cxxjij.graph.Dense, openjij.cxxjij.graph.CSRSparse],
                      beta_max=None,
                      beta_min=None,
                      num_sweeps=1000,
                  Severity: Minor
                  Found in openjij/sampler/sa_sampler.py - About 25 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 sample_hubo has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
                  Open

                      def sample_hubo(
                          self,
                          J: dict[tuple, float],
                          vartype: Optional[str] = None,
                          num_sweeps: int = 1000,
                  Severity: Minor
                  Found in openjij/sampler/sa_sampler.py - About 25 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

                  Method "_sample_hubo_old" has 12 parameters, which is greater than the 7 authorized.
                  Open

                          self,
                          J: Union[
                              dict, "openj.model.model.BinaryPolynomialModel", cimod.BinaryPolynomialModel
                          ],
                          vartype: Optional[str] = None,
                  Severity: Major
                  Found in openjij/sampler/sa_sampler.py by sonar-python

                  A long parameter list can indicate that a new structure should be created to wrap the numerous parameters or that the function is doing too many things.

                  Noncompliant Code Example

                  With a maximum number of 4 parameters:

                  def do_something(param1, param2, param3, param4, param5):
                      ...
                  

                  Compliant Solution

                  def do_something(param1, param2, param3, param4):
                      ...
                  

                  Refactor this function to reduce its Cognitive Complexity from 39 to the 15 allowed.
                  Open

                      def _sample_hubo_old(
                  Severity: Critical
                  Found in openjij/sampler/sa_sampler.py by sonar-python

                  Cognitive Complexity is a measure of how hard the control flow of a function is to understand. Functions with high Cognitive Complexity will be difficult to maintain.

                  See

                  Refactor this function to reduce its Cognitive Complexity from 73 to the 15 allowed.
                  Open

                      def sample(
                  Severity: Critical
                  Found in openjij/sampler/sa_sampler.py by sonar-python

                  Cognitive Complexity is a measure of how hard the control flow of a function is to understand. Functions with high Cognitive Complexity will be difficult to maintain.

                  See

                  Method "sample" has 12 parameters, which is greater than the 7 authorized.
                  Open

                          self,
                          bqm: Union[
                              "openj.model.model.BinaryQuadraticModel", dimod.BinaryQuadraticModel
                          ],
                          beta_min: Optional[float] = None,
                  Severity: Major
                  Found in openjij/sampler/sa_sampler.py by sonar-python

                  A long parameter list can indicate that a new structure should be created to wrap the numerous parameters or that the function is doing too many things.

                  Noncompliant Code Example

                  With a maximum number of 4 parameters:

                  def do_something(param1, param2, param3, param4, param5):
                      ...
                  

                  Compliant Solution

                  def do_something(param1, param2, param3, param4):
                      ...
                  

                  Method "sample_hubo" has 12 parameters, which is greater than the 7 authorized.
                  Open

                          self,
                          J: dict[tuple, float],
                          vartype: Optional[str] = None,
                          num_sweeps: int = 1000,
                          num_reads: int = 1,
                  Severity: Major
                  Found in openjij/sampler/sa_sampler.py by sonar-python

                  A long parameter list can indicate that a new structure should be created to wrap the numerous parameters or that the function is doing too many things.

                  Noncompliant Code Example

                  With a maximum number of 4 parameters:

                  def do_something(param1, param2, param3, param4, param5):
                      ...
                  

                  Compliant Solution

                  def do_something(param1, param2, param3, param4):
                      ...
                  

                  Either merge this branch with the identical one on line "375" or change one of the implementations.
                  Open

                              if vartype is not None:
                                  raise ValueError("vartype must not be specified")
                              model = J
                  Severity: Major
                  Found in openjij/sampler/sa_sampler.py by sonar-python

                  Having two branches in the same if structure with the same implementation is at best duplicate code, and at worst a coding error. If the same logic is truly needed for both instances, then they should be combined.

                  Noncompliant Code Example

                  if 0 <= a < 10:
                      do_the_thing()
                  elif 10 <= a < 20:
                      do_the_other_thing()
                  elif 20 <= a < 50:
                      do_the_thing()  # Noncompliant; duplicates first condition
                  else:
                      do_the_rest()
                  
                  b = 4 if a > 12 else 4
                  

                  Compliant Solution

                  if (0 <= a < 10) or (20 <= a < 50):
                      do_the_thing()
                  elif 10 <= a < 20:
                      do_the_other_thing()
                  else:
                      do_the_rest()
                  
                  b = 4
                  

                  or

                  if 0 <= a < 10:
                      do_the_thing()
                  elif 10 <= a < 20:
                      do_the_other_thing()
                  elif 20 <= a < 50:
                      do_the_third_thing()
                  else:
                      do_the_rest()
                  
                  b = 8 if a > 12 else 4
                  

                  Remove this commented out code.
                  Open

                                  #schedule,
                  Severity: Major
                  Found in openjij/sampler/sa_sampler.py by sonar-python

                  Programmers should not comment out code as it bloats programs and reduces readability.

                  Unused code should be deleted and can be retrieved from source control history if required.

                  See

                  • MISRA C:2004, 2.4 - Sections of code should not be "commented out".
                  • MISRA C++:2008, 2-7-2 - Sections of code shall not be "commented out" using C-style comments.
                  • MISRA C++:2008, 2-7-3 - Sections of code should not be "commented out" using C++ comments.
                  • MISRA C:2012, Dir. 4.4 - Sections of code should not be "commented out"

                  Line too long (80 > 79 characters)
                  Open

                              "openj.model.model.BinaryQuadraticModel", dimod.BinaryQuadraticModel
                  Severity: Minor
                  Found in openjij/sampler/sa_sampler.py by pep8

                  Limit all lines to a maximum of 79 characters.

                  There are still many devices around that are limited to 80 character
                  lines; plus, limiting windows to 80 characters makes it possible to
                  have several windows side-by-side.  The default wrapping on such
                  devices looks ugly.  Therefore, please limit all lines to a maximum
                  of 79 characters. For flowing long blocks of text (docstrings or
                  comments), limiting the length to 72 characters is recommended.
                  
                  Reports error E501.

                  Line too long (81 > 79 characters)
                  Open

                              self._params["schedule"], beta_range = geometric_ising_beta_schedule(
                  Severity: Minor
                  Found in openjij/sampler/sa_sampler.py by pep8

                  Limit all lines to a maximum of 79 characters.

                  There are still many devices around that are limited to 80 character
                  lines; plus, limiting windows to 80 characters makes it possible to
                  have several windows side-by-side.  The default wrapping on such
                  devices looks ugly.  Therefore, please limit all lines to a maximum
                  of 79 characters. For flowing long blocks of text (docstrings or
                  comments), limiting the length to 72 characters is recommended.
                  
                  Reports error E501.

                  Line too long (80 > 79 characters)
                  Open

                          elif str(type(J)) == str(type(cimod.BinaryPolynomialModel({}, "SPIN"))):
                  Severity: Minor
                  Found in openjij/sampler/sa_sampler.py by pep8

                  Limit all lines to a maximum of 79 characters.

                  There are still many devices around that are limited to 80 character
                  lines; plus, limiting windows to 80 characters makes it possible to
                  have several windows side-by-side.  The default wrapping on such
                  devices looks ugly.  Therefore, please limit all lines to a maximum
                  of 79 characters. For flowing long blocks of text (docstrings or
                  comments), limiting the length to 72 characters is recommended.
                  
                  Reports error E501.

                  Line too long (84 > 79 characters)
                  Open

                                          else cxxjij.graph.Polynomial(model.num_variables).gen_spin()
                  Severity: Minor
                  Found in openjij/sampler/sa_sampler.py by pep8

                  Limit all lines to a maximum of 79 characters.

                  There are still many devices around that are limited to 80 character
                  lines; plus, limiting windows to 80 characters makes it possible to
                  have several windows side-by-side.  The default wrapping on such
                  devices looks ugly.  Therefore, please limit all lines to a maximum
                  of 79 characters. For flowing long blocks of text (docstrings or
                  comments), limiting the length to 72 characters is recommended.
                  
                  Reports error E501.

                  Blank line contains whitespace
                  Open

                      
                  Severity: Minor
                  Found in openjij/sampler/sa_sampler.py by pep8

                  Trailing whitespace is superfluous.

                  The warning returned varies on whether the line itself is blank,
                  for easier filtering for those who want to indent their blank lines.
                  
                  Okay: spam(1)\n#
                  W291: spam(1) \n#
                  W293: class Foo(object):\n    \n    bang = 12

                  Line too long (81 > 79 characters)
                  Open

                                      abs_ising_interaction > max_abs_ising_interaction * THRESHOLD
                  Severity: Minor
                  Found in openjij/sampler/sa_sampler.py by pep8

                  Limit all lines to a maximum of 79 characters.

                  There are still many devices around that are limited to 80 character
                  lines; plus, limiting windows to 80 characters makes it possible to
                  have several windows side-by-side.  The default wrapping on such
                  devices looks ugly.  Therefore, please limit all lines to a maximum
                  of 79 characters. For flowing long blocks of text (docstrings or
                  comments), limiting the length to 72 characters is recommended.
                  
                  Reports error E501.

                  Line too long (86 > 79 characters)
                  Open

                                          else cxxjij.graph.Polynomial(model.num_variables).gen_binary()
                  Severity: Minor
                  Found in openjij/sampler/sa_sampler.py by pep8

                  Limit all lines to a maximum of 79 characters.

                  There are still many devices around that are limited to 80 character
                  lines; plus, limiting windows to 80 characters makes it possible to
                  have several windows side-by-side.  The default wrapping on such
                  devices looks ugly.  Therefore, please limit all lines to a maximum
                  of 79 characters. For flowing long blocks of text (docstrings or
                  comments), limiting the length to 72 characters is recommended.
                  
                  Reports error E501.

                  Line too long (134 > 79 characters)
                  Open

                              temperature_schedule (str, optional): Temperature schedule. One can choose "LINEAR", "GEOMETRIC". Defaults to "GEOMETRIC".
                  Severity: Minor
                  Found in openjij/sampler/sa_sampler.py by pep8

                  Limit all lines to a maximum of 79 characters.

                  There are still many devices around that are limited to 80 character
                  lines; plus, limiting windows to 80 characters makes it possible to
                  have several windows side-by-side.  The default wrapping on such
                  devices looks ugly.  Therefore, please limit all lines to a maximum
                  of 79 characters. For flowing long blocks of text (docstrings or
                  comments), limiting the length to 72 characters is recommended.
                  
                  Reports error E501.

                  Too many blank lines (2)
                  Open

                          if updater=="k-local" or not isinstance(J, dict):
                  Severity: Minor
                  Found in openjij/sampler/sa_sampler.py by pep8

                  Separate top-level function and class definitions with two blank lines.

                  Method definitions inside a class are separated by a single blank
                  line.
                  
                  Extra blank lines may be used (sparingly) to separate groups of
                  related functions.  Blank lines may be omitted between a bunch of
                  related one-liners (e.g. a set of dummy implementations).
                  
                  Use blank lines in functions, sparingly, to indicate logical
                  sections.
                  
                  Okay: def a():\n    pass\n\n\ndef b():\n    pass
                  Okay: def a():\n    pass\n\n\nasync def b():\n    pass
                  Okay: def a():\n    pass\n\n\n# Foo\n# Bar\n\ndef b():\n    pass
                  Okay: default = 1\nfoo = 1
                  Okay: classify = 1\nfoo = 1
                  
                  E301: class Foo:\n    b = 0\n    def bar():\n        pass
                  E302: def a():\n    pass\n\ndef b(n):\n    pass
                  E302: def a():\n    pass\n\nasync def b(n):\n    pass
                  E303: def a():\n    pass\n\n\n\ndef b(n):\n    pass
                  E303: def a():\n\n\n\n    pass
                  E304: @decorator\n\ndef a():\n    pass
                  E305: def a():\n    pass\na()
                  E306: def a():\n    def b():\n        pass\n    def c():\n        pass

                  Missing whitespace around operator
                  Open

                                  updater="single spin flip"
                  Severity: Minor
                  Found in openjij/sampler/sa_sampler.py by pep8

                  Surround operators with a single space on either side.

                  - Always surround these binary operators with a single space on
                    either side: assignment (=), augmented assignment (+=, -= etc.),
                    comparisons (==, <, >, !=, <=, >=, in, not in, is, is not),
                    Booleans (and, or, not).
                  
                  - If operators with different priorities are used, consider adding
                    whitespace around the operators with the lowest priorities.
                  
                  Okay: i = i + 1
                  Okay: submitted += 1
                  Okay: x = x * 2 - 1
                  Okay: hypot2 = x * x + y * y
                  Okay: c = (a + b) * (a - b)
                  Okay: foo(bar, key='word', *args, **kwargs)
                  Okay: alpha[:-i]
                  
                  E225: i=i+1
                  E225: submitted +=1
                  E225: x = x /2 - 1
                  E225: z = x **y
                  E225: z = 1and 1
                  E226: c = (a+b) * (a-b)
                  E226: hypot2 = x*x + y*y
                  E227: c = a|b
                  E228: msg = fmt%(errno, errmsg)

                  Line too long (104 > 79 characters)
                  Open

                                  >>> Q = {(0, 0): -1, (1, 1): -1, (2, 2): 1, (3, 3): 1, (4, 4): 1, (0, 1): -1, (3, 4): 1}
                  Severity: Minor
                  Found in openjij/sampler/sa_sampler.py by pep8

                  Limit all lines to a maximum of 79 characters.

                  There are still many devices around that are limited to 80 character
                  lines; plus, limiting windows to 80 characters makes it possible to
                  have several windows side-by-side.  The default wrapping on such
                  devices looks ugly.  Therefore, please limit all lines to a maximum
                  of 79 characters. For flowing long blocks of text (docstrings or
                  comments), limiting the length to 72 characters is recommended.
                  
                  Reports error E501.

                  Block comment should start with '# '
                  Open

                                  #initial_state,
                  Severity: Minor
                  Found in openjij/sampler/sa_sampler.py by pep8

                  Separate inline comments by at least two spaces.

                  An inline comment is a comment on the same line as a statement.
                  Inline comments should be separated by at least two spaces from the
                  statement. They should start with a # and a single space.
                  
                  Each line of a block comment starts with a # and a single space
                  (unless it is indented text inside the comment).
                  
                  Okay: x = x + 1  # Increment x
                  Okay: x = x + 1    # Increment x
                  Okay: # Block comment
                  E261: x = x + 1 # Increment x
                  E262: x = x + 1  #Increment x
                  E262: x = x + 1  #  Increment x
                  E265: #Block comment
                  E266: ### Block comment

                  Too many blank lines (2)
                  Open

                              min_delta_energy = np.min(
                  Severity: Minor
                  Found in openjij/sampler/sa_sampler.py by pep8

                  Separate top-level function and class definitions with two blank lines.

                  Method definitions inside a class are separated by a single blank
                  line.
                  
                  Extra blank lines may be used (sparingly) to separate groups of
                  related functions.  Blank lines may be omitted between a bunch of
                  related one-liners (e.g. a set of dummy implementations).
                  
                  Use blank lines in functions, sparingly, to indicate logical
                  sections.
                  
                  Okay: def a():\n    pass\n\n\ndef b():\n    pass
                  Okay: def a():\n    pass\n\n\nasync def b():\n    pass
                  Okay: def a():\n    pass\n\n\n# Foo\n# Bar\n\ndef b():\n    pass
                  Okay: default = 1\nfoo = 1
                  Okay: classify = 1\nfoo = 1
                  
                  E301: class Foo:\n    b = 0\n    def bar():\n        pass
                  E302: def a():\n    pass\n\ndef b(n):\n    pass
                  E302: def a():\n    pass\n\nasync def b(n):\n    pass
                  E303: def a():\n    pass\n\n\n\ndef b(n):\n    pass
                  E303: def a():\n\n\n\n    pass
                  E304: @decorator\n\ndef a():\n    pass
                  E305: def a():\n    pass\na()
                  E306: def a():\n    def b():\n        pass\n    def c():\n        pass

                  Trailing whitespace
                  Open

                      ):  
                  Severity: Minor
                  Found in openjij/sampler/sa_sampler.py by pep8

                  Trailing whitespace is superfluous.

                  The warning returned varies on whether the line itself is blank,
                  for easier filtering for those who want to indent their blank lines.
                  
                  Okay: spam(1)\n#
                  W291: spam(1) \n#
                  W293: class Foo(object):\n    \n    bang = 12

                  Line too long (85 > 79 characters)
                  Open

                                          cxxjij.graph.Polynomial(model.num_variables).gen_binary(seed)
                  Severity: Minor
                  Found in openjij/sampler/sa_sampler.py by pep8

                  Limit all lines to a maximum of 79 characters.

                  There are still many devices around that are limited to 80 character
                  lines; plus, limiting windows to 80 characters makes it possible to
                  have several windows side-by-side.  The default wrapping on such
                  devices looks ugly.  Therefore, please limit all lines to a maximum
                  of 79 characters. For flowing long blocks of text (docstrings or
                  comments), limiting the length to 72 characters is recommended.
                  
                  Reports error E501.

                  Line too long (87 > 79 characters)
                  Open

                              model, _generate_init_state, algorithm, sa_system, reinitialize_state, seed
                  Severity: Minor
                  Found in openjij/sampler/sa_sampler.py by pep8

                  Limit all lines to a maximum of 79 characters.

                  There are still many devices around that are limited to 80 character
                  lines; plus, limiting windows to 80 characters makes it possible to
                  have several windows side-by-side.  The default wrapping on such
                  devices looks ugly.  Therefore, please limit all lines to a maximum
                  of 79 characters. For flowing long blocks of text (docstrings or
                  comments), limiting the length to 72 characters is recommended.
                  
                  Reports error E501.

                  Trailing whitespace
                  Open

                              random_number_engine (str, optional): Random number engine. One can choose "XORSHIFT", "MT", or "MT_64". Defaults to "XORSHIFT".            
                  Severity: Minor
                  Found in openjij/sampler/sa_sampler.py by pep8

                  Trailing whitespace is superfluous.

                  The warning returned varies on whether the line itself is blank,
                  for easier filtering for those who want to indent their blank lines.
                  
                  Okay: spam(1)\n#
                  W291: spam(1) \n#
                  W293: class Foo(object):\n    \n    bang = 12

                  Line too long (94 > 79 characters)
                  Open

                          # if `abs_ising_interaction` is empty, set min/max delta_energy to 1 (a trivial case).
                  Severity: Minor
                  Found in openjij/sampler/sa_sampler.py by pep8

                  Limit all lines to a maximum of 79 characters.

                  There are still many devices around that are limited to 80 character
                  lines; plus, limiting windows to 80 characters makes it possible to
                  have several windows side-by-side.  The default wrapping on such
                  devices looks ugly.  Therefore, please limit all lines to a maximum
                  of 79 characters. For flowing long blocks of text (docstrings or
                  comments), limiting the length to 72 characters is recommended.
                  
                  Reports error E501.

                  Line too long (85 > 79 characters)
                  Open

                                  "schedule is list of tuple or list (beta : float, step_length : int)"
                  Severity: Minor
                  Found in openjij/sampler/sa_sampler.py by pep8

                  Limit all lines to a maximum of 79 characters.

                  There are still many devices around that are limited to 80 character
                  lines; plus, limiting windows to 80 characters makes it possible to
                  have several windows side-by-side.  The default wrapping on such
                  devices looks ugly.  Therefore, please limit all lines to a maximum
                  of 79 characters. For flowing long blocks of text (docstrings or
                  comments), limiting the length to 72 characters is recommended.
                  
                  Reports error E501.

                  Comparison to false should be 'if cond is false:' or 'if not cond:'
                  Open

                          if sparse == True and bqm.sparse == False:
                  Severity: Minor
                  Found in openjij/sampler/sa_sampler.py by pep8

                  Comparison to singletons should use "is" or "is not".

                  Comparisons to singletons like None should always be done
                  with "is" or "is not", never the equality operators.
                  
                  Okay: if arg is not None:
                  E711: if arg != None:
                  E711: if None == arg:
                  E712: if arg == True:
                  E712: if False == arg:
                  
                  Also, beware of writing if x when you really mean if x is not None
                  -- e.g. when testing whether a variable or argument that defaults to
                  None was set to some other value.  The other value might have a type
                  (such as a container) that could be false in a boolean context!

                  Line too long (85 > 79 characters)
                  Open

                              raise ValueError('updater is one of "single spin flip or swendsen wang"')
                  Severity: Minor
                  Found in openjij/sampler/sa_sampler.py by pep8

                  Limit all lines to a maximum of 79 characters.

                  There are still many devices around that are limited to 80 character
                  lines; plus, limiting windows to 80 characters makes it possible to
                  have several windows side-by-side.  The default wrapping on such
                  devices looks ugly.  Therefore, please limit all lines to a maximum
                  of 79 characters. For flowing long blocks of text (docstrings or
                  comments), limiting the length to 72 characters is recommended.
                  
                  Reports error E501.

                  Line too long (87 > 79 characters)
                  Open

                                              raise RuntimeError("The initial variables must be 0 or 1.")
                  Severity: Minor
                  Found in openjij/sampler/sa_sampler.py by pep8

                  Limit all lines to a maximum of 79 characters.

                  There are still many devices around that are limited to 80 character
                  lines; plus, limiting windows to 80 characters makes it possible to
                  have several windows side-by-side.  The default wrapping on such
                  devices looks ugly.  Therefore, please limit all lines to a maximum
                  of 79 characters. For flowing long blocks of text (docstrings or
                  comments), limiting the length to 72 characters is recommended.
                  
                  Reports error E501.

                  Line too long (99 > 79 characters)
                  Open

                              beta_max (float, optional): Maximum beta (final inverse temperature). Defaults to None.
                  Severity: Minor
                  Found in openjij/sampler/sa_sampler.py by pep8

                  Limit all lines to a maximum of 79 characters.

                  There are still many devices around that are limited to 80 character
                  lines; plus, limiting windows to 80 characters makes it possible to
                  have several windows side-by-side.  The default wrapping on such
                  devices looks ugly.  Therefore, please limit all lines to a maximum
                  of 79 characters. For flowing long blocks of text (docstrings or
                  comments), limiting the length to 72 characters is recommended.
                  
                  Reports error E501.

                  Line too long (88 > 79 characters)
                  Open

                              dict, "openj.model.model.BinaryPolynomialModel", cimod.BinaryPolynomialModel
                  Severity: Minor
                  Found in openjij/sampler/sa_sampler.py by pep8

                  Limit all lines to a maximum of 79 characters.

                  There are still many devices around that are limited to 80 character
                  lines; plus, limiting windows to 80 characters makes it possible to
                  have several windows side-by-side.  The default wrapping on such
                  devices looks ugly.  Therefore, please limit all lines to a maximum
                  of 79 characters. For flowing long blocks of text (docstrings or
                  comments), limiting the length to 72 characters is recommended.
                  
                  Reports error E501.

                  Block comment should start with '# '
                  Open

                                  #reinitialize_state,
                  Severity: Minor
                  Found in openjij/sampler/sa_sampler.py by pep8

                  Separate inline comments by at least two spaces.

                  An inline comment is a comment on the same line as a statement.
                  Inline comments should be separated by at least two spaces from the
                  statement. They should start with a # and a single space.
                  
                  Each line of a block comment starts with a # and a single space
                  (unless it is indented text inside the comment).
                  
                  Okay: x = x + 1  # Increment x
                  Okay: x = x + 1    # Increment x
                  Okay: # Block comment
                  E261: x = x + 1 # Increment x
                  E262: x = x + 1  #Increment x
                  E262: x = x + 1  #  Increment x
                  E265: #Block comment
                  E266: ### Block comment

                  Line too long (101 > 79 characters)
                  Open

                              beta_min (float, optional): Minimum beta (initial inverse temperature). Defaults to None.
                  Severity: Minor
                  Found in openjij/sampler/sa_sampler.py by pep8

                  Limit all lines to a maximum of 79 characters.

                  There are still many devices around that are limited to 80 character
                  lines; plus, limiting windows to 80 characters makes it possible to
                  have several windows side-by-side.  The default wrapping on such
                  devices looks ugly.  Therefore, please limit all lines to a maximum
                  of 79 characters. For flowing long blocks of text (docstrings or
                  comments), limiting the length to 72 characters is recommended.
                  
                  Reports error E501.

                  Missing whitespace around operator
                  Open

                                  updater="METROPOLIS"
                  Severity: Minor
                  Found in openjij/sampler/sa_sampler.py by pep8

                  Surround operators with a single space on either side.

                  - Always surround these binary operators with a single space on
                    either side: assignment (=), augmented assignment (+=, -= etc.),
                    comparisons (==, <, >, !=, <=, >=, in, not in, is, is not),
                    Booleans (and, or, not).
                  
                  - If operators with different priorities are used, consider adding
                    whitespace around the operators with the lowest priorities.
                  
                  Okay: i = i + 1
                  Okay: submitted += 1
                  Okay: x = x * 2 - 1
                  Okay: hypot2 = x * x + y * y
                  Okay: c = (a + b) * (a - b)
                  Okay: foo(bar, key='word', *args, **kwargs)
                  Okay: alpha[:-i]
                  
                  E225: i=i+1
                  E225: submitted +=1
                  E225: x = x /2 - 1
                  E225: z = x **y
                  E225: z = 1and 1
                  E226: c = (a+b) * (a-b)
                  E226: hypot2 = x*x + y*y
                  E227: c = a|b
                  E228: msg = fmt%(errno, errmsg)

                  Line too long (83 > 79 characters)
                  Open

                              seed (int, optional): seed for Monte Carlo algorithm. Defaults to None.
                  Severity: Minor
                  Found in openjij/sampler/sa_sampler.py by pep8

                  Limit all lines to a maximum of 79 characters.

                  There are still many devices around that are limited to 80 character
                  lines; plus, limiting windows to 80 characters makes it possible to
                  have several windows side-by-side.  The default wrapping on such
                  devices looks ugly.  Therefore, please limit all lines to a maximum
                  of 79 characters. For flowing long blocks of text (docstrings or
                  comments), limiting the length to 72 characters is recommended.
                  
                  Reports error E501.

                  Line too long (137 > 79 characters)
                  Open

                          cxxgraph (Union[openjij.cxxjij.graph.Dense, openjij.cxxjij.graph.CSRSparse]): Ising graph, must be either `Dense` or `CSRSparse`.
                  Severity: Minor
                  Found in openjij/sampler/sa_sampler.py by pep8

                  Limit all lines to a maximum of 79 characters.

                  There are still many devices around that are limited to 80 character
                  lines; plus, limiting windows to 80 characters makes it possible to
                  have several windows side-by-side.  The default wrapping on such
                  devices looks ugly.  Therefore, please limit all lines to a maximum
                  of 79 characters. For flowing long blocks of text (docstrings or
                  comments), limiting the length to 72 characters is recommended.
                  
                  Reports error E501.

                  Line too long (87 > 79 characters)
                  Open

                              model, _generate_init_state, algorithm, sa_system, reinitialize_state, seed
                  Severity: Minor
                  Found in openjij/sampler/sa_sampler.py by pep8

                  Limit all lines to a maximum of 79 characters.

                  There are still many devices around that are limited to 80 character
                  lines; plus, limiting windows to 80 characters makes it possible to
                  have several windows side-by-side.  The default wrapping on such
                  devices looks ugly.  Therefore, please limit all lines to a maximum
                  of 79 characters. For flowing long blocks of text (docstrings or
                  comments), limiting the length to 72 characters is recommended.
                  
                  Reports error E501.

                  Blank line contains whitespace
                  Open

                      
                  Severity: Minor
                  Found in openjij/sampler/sa_sampler.py by pep8

                  Trailing whitespace is superfluous.

                  The warning returned varies on whether the line itself is blank,
                  for easier filtering for those who want to indent their blank lines.
                  
                  Okay: spam(1)\n#
                  W291: spam(1) \n#
                  W293: class Foo(object):\n    \n    bang = 12

                  Line too long (80 > 79 characters)
                  Open

                      cxxgraph: Union[openjij.cxxjij.graph.Dense, openjij.cxxjij.graph.CSRSparse],
                  Severity: Minor
                  Found in openjij/sampler/sa_sampler.py by pep8

                  Limit all lines to a maximum of 79 characters.

                  There are still many devices around that are limited to 80 character
                  lines; plus, limiting windows to 80 characters makes it possible to
                  have several windows side-by-side.  The default wrapping on such
                  devices looks ugly.  Therefore, please limit all lines to a maximum
                  of 79 characters. For flowing long blocks of text (docstrings or
                  comments), limiting the length to 72 characters is recommended.
                  
                  Reports error E501.

                  Line too long (86 > 79 characters)
                  Open

                              "singlespinflippolynomial": cxxjij.algorithm.Algorithm_SingleSpinFlip_run,
                  Severity: Minor
                  Found in openjij/sampler/sa_sampler.py by pep8

                  Limit all lines to a maximum of 79 characters.

                  There are still many devices around that are limited to 80 character
                  lines; plus, limiting windows to 80 characters makes it possible to
                  have several windows side-by-side.  The default wrapping on such
                  devices looks ugly.  Therefore, please limit all lines to a maximum
                  of 79 characters. For flowing long blocks of text (docstrings or
                  comments), limiting the length to 72 characters is recommended.
                  
                  Reports error E501.

                  Line too long (129 > 79 characters)
                  Open

                              num_threads (int, optional): The number of threads. Parallelized for each sampling with num_reads > 1. Defaults to 1.
                  Severity: Minor
                  Found in openjij/sampler/sa_sampler.py by pep8

                  Limit all lines to a maximum of 79 characters.

                  There are still many devices around that are limited to 80 character
                  lines; plus, limiting windows to 80 characters makes it possible to
                  have several windows side-by-side.  The default wrapping on such
                  devices looks ugly.  Therefore, please limit all lines to a maximum
                  of 79 characters. For flowing long blocks of text (docstrings or
                  comments), limiting the length to 72 characters is recommended.
                  
                  Reports error E501.

                  Missing whitespace around operator
                  Open

                          if updater=="k-local" or not isinstance(J, dict):
                  Severity: Minor
                  Found in openjij/sampler/sa_sampler.py by pep8

                  Surround operators with a single space on either side.

                  - Always surround these binary operators with a single space on
                    either side: assignment (=), augmented assignment (+=, -= etc.),
                    comparisons (==, <, >, !=, <=, >=, in, not in, is, is not),
                    Booleans (and, or, not).
                  
                  - If operators with different priorities are used, consider adding
                    whitespace around the operators with the lowest priorities.
                  
                  Okay: i = i + 1
                  Okay: submitted += 1
                  Okay: x = x * 2 - 1
                  Okay: hypot2 = x * x + y * y
                  Okay: c = (a + b) * (a - b)
                  Okay: foo(bar, key='word', *args, **kwargs)
                  Okay: alpha[:-i]
                  
                  E225: i=i+1
                  E225: submitted +=1
                  E225: x = x /2 - 1
                  E225: z = x **y
                  E225: z = 1and 1
                  E226: c = (a+b) * (a-b)
                  E226: hypot2 = x*x + y*y
                  E227: c = a|b
                  E228: msg = fmt%(errno, errmsg)

                  Line too long (99 > 79 characters)
                  Open

                              beta_max (float, optional): Maximum beta (final inverse temperature). Defaults to None.
                  Severity: Minor
                  Found in openjij/sampler/sa_sampler.py by pep8

                  Limit all lines to a maximum of 79 characters.

                  There are still many devices around that are limited to 80 character
                  lines; plus, limiting windows to 80 characters makes it possible to
                  have several windows side-by-side.  The default wrapping on such
                  devices looks ugly.  Therefore, please limit all lines to a maximum
                  of 79 characters. For flowing long blocks of text (docstrings or
                  comments), limiting the length to 72 characters is recommended.
                  
                  Reports error E501.

                  Missing whitespace around operator
                  Open

                              if updater=="METROPOLIS":
                  Severity: Minor
                  Found in openjij/sampler/sa_sampler.py by pep8

                  Surround operators with a single space on either side.

                  - Always surround these binary operators with a single space on
                    either side: assignment (=), augmented assignment (+=, -= etc.),
                    comparisons (==, <, >, !=, <=, >=, in, not in, is, is not),
                    Booleans (and, or, not).
                  
                  - If operators with different priorities are used, consider adding
                    whitespace around the operators with the lowest priorities.
                  
                  Okay: i = i + 1
                  Okay: submitted += 1
                  Okay: x = x * 2 - 1
                  Okay: hypot2 = x * x + y * y
                  Okay: c = (a + b) * (a - b)
                  Okay: foo(bar, key='word', *args, **kwargs)
                  Okay: alpha[:-i]
                  
                  E225: i=i+1
                  E225: submitted +=1
                  E225: x = x /2 - 1
                  E225: z = x **y
                  E225: z = 1and 1
                  E226: c = (a+b) * (a-b)
                  E226: hypot2 = x*x + y*y
                  E227: c = a|b
                  E228: msg = fmt%(errno, errmsg)

                  Missing whitespace around operator
                  Open

                              if updater=="single spin flip":
                  Severity: Minor
                  Found in openjij/sampler/sa_sampler.py by pep8

                  Surround operators with a single space on either side.

                  - Always surround these binary operators with a single space on
                    either side: assignment (=), augmented assignment (+=, -= etc.),
                    comparisons (==, <, >, !=, <=, >=, in, not in, is, is not),
                    Booleans (and, or, not).
                  
                  - If operators with different priorities are used, consider adding
                    whitespace around the operators with the lowest priorities.
                  
                  Okay: i = i + 1
                  Okay: submitted += 1
                  Okay: x = x * 2 - 1
                  Okay: hypot2 = x * x + y * y
                  Okay: c = (a + b) * (a - b)
                  Okay: foo(bar, key='word', *args, **kwargs)
                  Okay: alpha[:-i]
                  
                  E225: i=i+1
                  E225: submitted +=1
                  E225: x = x /2 - 1
                  E225: z = x **y
                  E225: z = 1and 1
                  E226: c = (a+b) * (a-b)
                  E226: hypot2 = x*x + y*y
                  E227: c = a|b
                  E228: msg = fmt%(errno, errmsg)

                  Line too long (81 > 79 characters)
                  Open

                              bqm (openjij.model.model.BinaryQuadraticModel) binary quadratic model
                  Severity: Minor
                  Found in openjij/sampler/sa_sampler.py by pep8

                  Limit all lines to a maximum of 79 characters.

                  There are still many devices around that are limited to 80 character
                  lines; plus, limiting windows to 80 characters makes it possible to
                  have several windows side-by-side.  The default wrapping on such
                  devices looks ugly.  Therefore, please limit all lines to a maximum
                  of 79 characters. For flowing long blocks of text (docstrings or
                  comments), limiting the length to 72 characters is recommended.
                  
                  Reports error E501.

                  Line too long (87 > 79 characters)
                  Open

                                              raise RuntimeError("The initial variables must be 0 or 1.")
                  Severity: Minor
                  Found in openjij/sampler/sa_sampler.py by pep8

                  Limit all lines to a maximum of 79 characters.

                  There are still many devices around that are limited to 80 character
                  lines; plus, limiting windows to 80 characters makes it possible to
                  have several windows side-by-side.  The default wrapping on such
                  devices looks ugly.  Therefore, please limit all lines to a maximum
                  of 79 characters. For flowing long blocks of text (docstrings or
                  comments), limiting the length to 72 characters is recommended.
                  
                  Reports error E501.

                  Line too long (80 > 79 characters)
                  Open

                              self._params["schedule"], beta_range = geometric_hubo_beta_schedule(
                  Severity: Minor
                  Found in openjij/sampler/sa_sampler.py by pep8

                  Limit all lines to a maximum of 79 characters.

                  There are still many devices around that are limited to 80 character
                  lines; plus, limiting windows to 80 characters makes it possible to
                  have several windows side-by-side.  The default wrapping on such
                  devices looks ugly.  Therefore, please limit all lines to a maximum
                  of 79 characters. For flowing long blocks of text (docstrings or
                  comments), limiting the length to 72 characters is recommended.
                  
                  Reports error E501.

                  Line too long (83 > 79 characters)
                  Open

                              seed (int, optional): seed for Monte Carlo algorithm. Defaults to None.
                  Severity: Minor
                  Found in openjij/sampler/sa_sampler.py by pep8

                  Limit all lines to a maximum of 79 characters.

                  There are still many devices around that are limited to 80 character
                  lines; plus, limiting windows to 80 characters makes it possible to
                  have several windows side-by-side.  The default wrapping on such
                  devices looks ugly.  Therefore, please limit all lines to a maximum
                  of 79 characters. For flowing long blocks of text (docstrings or
                  comments), limiting the length to 72 characters is recommended.
                  
                  Reports error E501.

                  Line too long (87 > 79 characters)
                  Open

                          if str(type(J)) == str(type(oj.model.model.BinaryPolynomialModel({}, "SPIN"))):
                  Severity: Minor
                  Found in openjij/sampler/sa_sampler.py by pep8

                  Limit all lines to a maximum of 79 characters.

                  There are still many devices around that are limited to 80 character
                  lines; plus, limiting windows to 80 characters makes it possible to
                  have several windows side-by-side.  The default wrapping on such
                  devices looks ugly.  Therefore, please limit all lines to a maximum
                  of 79 characters. For flowing long blocks of text (docstrings or
                  comments), limiting the length to 72 characters is recommended.
                  
                  Reports error E501.

                  Line too long (83 > 79 characters)
                  Open

                                          cxxjij.graph.Polynomial(model.num_variables).gen_spin(seed)
                  Severity: Minor
                  Found in openjij/sampler/sa_sampler.py by pep8

                  Limit all lines to a maximum of 79 characters.

                  There are still many devices around that are limited to 80 character
                  lines; plus, limiting windows to 80 characters makes it possible to
                  have several windows side-by-side.  The default wrapping on such
                  devices looks ugly.  Therefore, please limit all lines to a maximum
                  of 79 characters. For flowing long blocks of text (docstrings or
                  comments), limiting the length to 72 characters is recommended.
                  
                  Reports error E501.

                  Line too long (127 > 79 characters)
                  Open

                              updater (str, optional): Updater. One can choose "METROPOLIS", "HEAT_BATH", or "k-local". Defaults to "METROPOLIS".
                  Severity: Minor
                  Found in openjij/sampler/sa_sampler.py by pep8

                  Limit all lines to a maximum of 79 characters.

                  There are still many devices around that are limited to 80 character
                  lines; plus, limiting windows to 80 characters makes it possible to
                  have several windows side-by-side.  The default wrapping on such
                  devices looks ugly.  Therefore, please limit all lines to a maximum
                  of 79 characters. For flowing long blocks of text (docstrings or
                  comments), limiting the length to 72 characters is recommended.
                  
                  Reports error E501.

                  Line too long (140 > 79 characters)
                  Open

                              random_number_engine (str, optional): Random number engine. One can choose "XORSHIFT", "MT", or "MT_64". Defaults to "XORSHIFT".            
                  Severity: Minor
                  Found in openjij/sampler/sa_sampler.py by pep8

                  Limit all lines to a maximum of 79 characters.

                  There are still many devices around that are limited to 80 character
                  lines; plus, limiting windows to 80 characters makes it possible to
                  have several windows side-by-side.  The default wrapping on such
                  devices looks ugly.  Therefore, please limit all lines to a maximum
                  of 79 characters. For flowing long blocks of text (docstrings or
                  comments), limiting the length to 72 characters is recommended.
                  
                  Reports error E501.

                  Too many blank lines (2)
                  Open

                      if beta_min is None or beta_max is None:
                  Severity: Minor
                  Found in openjij/sampler/sa_sampler.py by pep8

                  Separate top-level function and class definitions with two blank lines.

                  Method definitions inside a class are separated by a single blank
                  line.
                  
                  Extra blank lines may be used (sparingly) to separate groups of
                  related functions.  Blank lines may be omitted between a bunch of
                  related one-liners (e.g. a set of dummy implementations).
                  
                  Use blank lines in functions, sparingly, to indicate logical
                  sections.
                  
                  Okay: def a():\n    pass\n\n\ndef b():\n    pass
                  Okay: def a():\n    pass\n\n\nasync def b():\n    pass
                  Okay: def a():\n    pass\n\n\n# Foo\n# Bar\n\ndef b():\n    pass
                  Okay: default = 1\nfoo = 1
                  Okay: classify = 1\nfoo = 1
                  
                  E301: class Foo:\n    b = 0\n    def bar():\n        pass
                  E302: def a():\n    pass\n\ndef b(n):\n    pass
                  E302: def a():\n    pass\n\nasync def b(n):\n    pass
                  E303: def a():\n    pass\n\n\n\ndef b(n):\n    pass
                  E303: def a():\n\n\n\n    pass
                  E304: @decorator\n\ndef a():\n    pass
                  E305: def a():\n    pass\na()
                  E306: def a():\n    def b():\n        pass\n    def c():\n        pass

                  Line too long (101 > 79 characters)
                  Open

                              beta_min (float, optional): Minimum beta (initial inverse temperature). Defaults to None.
                  Severity: Minor
                  Found in openjij/sampler/sa_sampler.py by pep8

                  Limit all lines to a maximum of 79 characters.

                  There are still many devices around that are limited to 80 character
                  lines; plus, limiting windows to 80 characters makes it possible to
                  have several windows side-by-side.  The default wrapping on such
                  devices looks ugly.  Therefore, please limit all lines to a maximum
                  of 79 characters. For flowing long blocks of text (docstrings or
                  comments), limiting the length to 72 characters is recommended.
                  
                  Reports error E501.

                  Comparison to true should be 'if cond is true:' or 'if cond:'
                  Open

                          if sparse == True and bqm.sparse == False:
                  Severity: Minor
                  Found in openjij/sampler/sa_sampler.py by pep8

                  Comparison to singletons should use "is" or "is not".

                  Comparisons to singletons like None should always be done
                  with "is" or "is not", never the equality operators.
                  
                  Okay: if arg is not None:
                  E711: if arg != None:
                  E711: if None == arg:
                  E712: if arg == True:
                  E712: if False == arg:
                  
                  Also, beware of writing if x when you really mean if x is not None
                  -- e.g. when testing whether a variable or argument that defaults to
                  None was set to some other value.  The other value might have a type
                  (such as a container) that could be false in a boolean context!

                  Block comment should start with '# '
                  Open

                                  #schedule,
                  Severity: Minor
                  Found in openjij/sampler/sa_sampler.py by pep8

                  Separate inline comments by at least two spaces.

                  An inline comment is a comment on the same line as a statement.
                  Inline comments should be separated by at least two spaces from the
                  statement. They should start with a # and a single space.
                  
                  Each line of a block comment starts with a # and a single space
                  (unless it is indented text inside the comment).
                  
                  Okay: x = x + 1  # Increment x
                  Okay: x = x + 1    # Increment x
                  Okay: # Block comment
                  E261: x = x + 1 # Increment x
                  E262: x = x + 1  #Increment x
                  E262: x = x + 1  #  Increment x
                  E265: #Block comment
                  E266: ### Block comment

                  Line too long (86 > 79 characters)
                  Open

                              "singlespinflippolynomial": cxxjij.system.make_classical_ising_polynomial,
                  Severity: Minor
                  Found in openjij/sampler/sa_sampler.py by pep8

                  Limit all lines to a maximum of 79 characters.

                  There are still many devices around that are limited to 80 character
                  lines; plus, limiting windows to 80 characters makes it possible to
                  have several windows side-by-side.  The default wrapping on such
                  devices looks ugly.  Therefore, please limit all lines to a maximum
                  of 79 characters. For flowing long blocks of text (docstrings or
                  comments), limiting the length to 72 characters is recommended.
                  
                  Reports error E501.

                  Blank line contains whitespace
                  Open

                   
                  Severity: Minor
                  Found in openjij/sampler/sa_sampler.py by pep8

                  Trailing whitespace is superfluous.

                  The warning returned varies on whether the line itself is blank,
                  for easier filtering for those who want to indent their blank lines.
                  
                  Okay: spam(1)\n#
                  W291: spam(1) \n#
                  W293: class Foo(object):\n    \n    bang = 12

                  There are no issues that match your filters.

                  Category
                  Status