Skip to content

Commit

Permalink
fix: remove MvFunctor instance arg from IsPolynomial
Browse files Browse the repository at this point in the history
The instance is already bundled into MvQPF
  • Loading branch information
alexkeizer committed Dec 4, 2024
1 parent fc4fe05 commit ed9224d
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions Qpf/Qpf/Multivariate/Basic.lean
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ namespace MvQPF
`repr_abs` is the last property needed to show that `abs` is an isomorphism, with `repr`
its inverse
-/
class IsPolynomial {n} (F : TypeVec n → Type _) [MvFunctor F] extends MvQPF F where
class IsPolynomial {n} (F : TypeVec n → Type _) extends MvQPF F where
repr_abs : ∀ {α} (x : P.Obj α), repr (abs x) = x


Expand Down Expand Up @@ -83,6 +83,5 @@ namespace MvQPF
apply cast ?_ p
congr
· rw [TypeFun.ofCurried_curried_involution]
· exact HEq.symm (eqRec_heq ..)

end MvQPF

0 comments on commit ed9224d

Please sign in to comment.