15 lines
633 B
Diff
15 lines
633 B
Diff
# sympy__sympy-18189
|
|
# Loki Mode Multi-Agent Patch
|
|
# Attempts: 1
|
|
|
|
--- a/sympy/solvers/diophantine.py
|
|
+++ b/sympy/solvers/diophantine.py
|
|
@@ -181,7 +181,7 @@ def diophantine(eq, param=symbols("t", integer=True), syms=None,
|
|
if syms != var:
|
|
dict_sym_index = dict(zip(syms, range(len(syms))))
|
|
return {tuple([t[dict_sym_index[i]] for i in var])
|
|
- for t in diophantine(eq, param)}
|
|
+ for t in diophantine(eq, param, permute=permute)}
|
|
n, d = eq.as_numer_denom()
|
|
if n.is_number:
|
|
return set()
|