Skip to content

Commit

Permalink
Update mitiq/lre/inference/multivariate_richardson.py
Browse files Browse the repository at this point in the history
Co-authored-by: nate stemen <[email protected]>
  • Loading branch information
purva-thakre and natestemen authored Aug 27, 2024
1 parent d81bd6f commit d97c2f3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions mitiq/lre/inference/multivariate_richardson.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,9 +37,9 @@ def _full_monomial_basis_term_exponents(
lexicographic order.
For `degree=2, num_layers=2`, the monomial terms basis are
{$1, x_1, x_2, x_1**2, x_1x_2, x_2**2$} i.e. the function returns the
${1, x_1, x_2, x_1**2, x_1x_2, x_2**2}$ i.e. the function returns the
exponents of x_1, x_2 as
`{[(0, 0), (1, 0), (0, 1), (2, 0), (1, 1), (0, 2)]}`.
`[(0, 0), (1, 0), (0, 1), (2, 0), (1, 1), (0, 2)]`.
"""
exponents = {
exps
Expand Down

0 comments on commit d97c2f3

Please sign in to comment.