We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/oOo0oOo/lean-lsp-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
ProfileTest.lean•409 B
import Mathlib
theorem simple_by (a : Bool) (h : a = true) : a = true := by
rw [h]
theorem simp_test (n : ℕ) : n + 0 = n := by
simp
theorem omega_test (a b c : ℕ) (h1 : a < b) (h2 : b < c) : a < c := by
omega
-- Multi-tactic proof for profiling multiple lines
theorem multi_step (x y : ℕ) (hx : x > 5) (hy : y > 3) : x + y > 8 := by
have h1 : x ≥ 6 := hx
have h2 : y ≥ 4 := hy
omega