Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions CompElliptic/Curves/Pasta.lean
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ example (P : SWPoint curve) : (-1 : ℤ) • P = -P := neg_one_zsmul P
/-- The Pallas point enumeration, as a computable instantiation of `instFintypeSWPoint`:
the filter of `F × F` by the decidable `Valid` predicate. Named so the trust census can pin
its computability. -/
abbrev fintypePoints : Fintype (SWPoint curve) := inferInstance
abbrev fintypePoints (_ : Unit) : Fintype (SWPoint curve) := inferInstance

end Pallas

Expand Down Expand Up @@ -198,7 +198,7 @@ example : OnCurve a b (smul a 3 G) := by native_decide
/-- The Vesta point enumeration, as a computable instantiation of `instFintypeSWPoint`:
the filter of `F × F` by the decidable `Valid` predicate. Named so the trust census can pin
its computability. -/
abbrev fintypePoints : Fintype (SWPoint curve) := inferInstance
abbrev fintypePoints (_ : Unit) : Fintype (SWPoint curve) := inferInstance

end Vesta

Expand Down