You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Apparently it's CategoryTheory.Bundled in binport, but CategoryTheory.bundled in synport.
-- Mathbin/CategoryTheory/ConcreteCategory/Bundled.leanstructurebundled (c : Type u → Type v) : Type max (u + 1) v where
α : Type u
str : c α := by
run_tac
tactic.apply_instance
-- Mathbin/MeasureTheory/Category/Meas.leandefMeas : Type (u + 1) :=
bundled MeasurableSpace -- ■ unknown identifier 'bundled'
The text was updated successfully, but these errors were encountered:
This issue is related to #58. The following line in synport is problematic: https://github.com/leanprover-community/mathport/blob/master/Mathport/Syntax/Translate/Basic.lean#L163. We need to take the namespace and open declarations into account somehow. It may not be easy in general to infer what the name would have resolved to in Lean3, but in the common case checking the binported term against the possible capitalizations will return only one compatible option. We can do the same (heuristic) trick for field names as well.
Apparently it's
CategoryTheory.Bundled
in binport, butCategoryTheory.bundled
in synport.The text was updated successfully, but these errors were encountered: