-
Notifications
You must be signed in to change notification settings - Fork 30
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
current repl maybe cannot recognize mathcal letter? #28
Comments
I solved the issue. It occurred when I encoded the string before feed into repl using python function |
Nope, I just followed README. I think your repl works normally, you can check your proof sketch in user interactive mode in vscode. |
As a follow up: I faced a similar issue with imports, for me it was a version mismatch in the lean toolchain between the lake environment I was running the repl from and the version that was used to build the lean repl. |
When I was testing repl using the following example (it's actually the predefined theorem
Metric.uniformity_basis_dist
in mathlib4Mathlib/Topology/MetricSpace/PseudoMetric.lean
):The above proof gets no warning or error message in interaction mode in vscode.
But when I test them via repl, I got the following feedback
The "pos" in error message indicates that the error occurred due to the mathcal character 𝓤. I tried another example
and got the same error message in repl
The error message also indicates the error occurred due to a mathcal letter '𝓝', therefore I guess the issue is about the unicode transformation on mathcal letter that the repl cannot handle.
If my guess is correct? How can I solve this issue? Thanks!
The text was updated successfully, but these errors were encountered: