From 7ca3d5a2ea2f4c270ef450b50700cbe7fc857e0e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Beno=C3=AEt=20Legat?= Date: Fri, 13 Jun 2025 23:01:05 +0200 Subject: [PATCH] Remove unused argument --- src/monomial.jl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/monomial.jl b/src/monomial.jl index 49cec78c..3dd6153a 100644 --- a/src/monomial.jl +++ b/src/monomial.jl @@ -60,7 +60,7 @@ Returns the exponent of the variables in the monomial of the term `t`. Calling `exponents(x^2*y)` should return `(2, 1)`. """ exponents(t::AbstractTerm) = exponents(monomial(t)) -exponents(v::AbstractVariable) = (1,) +exponents(::AbstractVariable) = (1,) """ degree(t::AbstractTermLike)