-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
By reviving some instances from deleted file
- Loading branch information
1 parent
08c6879
commit 541ff84
Showing
2 changed files
with
24 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
import Mathlib.Data.QPF.Multivariate.Basic | ||
import Qpf.Util.TypeFun | ||
|
||
namespace MvQPF | ||
variable {n} {F : TypeFun n} | ||
|
||
instance instMvFunctor_ofCurried_curried [f : MvFunctor F] : | ||
MvFunctor <| TypeFun.ofCurried <| F.curried := | ||
TypeFun.ofCurried_curried_involution ▸ f | ||
|
||
instance instQPF_ofCurried_curried [q : MvQPF F] : | ||
MvQPF <| TypeFun.ofCurried <| F.curried := | ||
TypeFun.ofCurried_curried_involution ▸ q | ||
|
||
end MvQPF |