Compare commits
41 Commits
bd4fbcc369
...
51edc701fe
Author | SHA1 | Date |
---|---|---|
Leni Aniva | 51edc701fe | |
Leni Aniva | 95d26a2f50 | |
Leni Aniva | 5978e5f4f3 | |
Leni Aniva | 7160f8aa61 | |
Leni Aniva | 85440e0278 | |
Leni Aniva | e63f7c9afa | |
Leni Aniva | 1d1fa60175 | |
Leni Aniva | ddf7ec21c8 | |
Leni Aniva | 0e61093f47 | |
Leni Aniva | d476354a4a | |
Leni Aniva | 19c57ada1e | |
Leni Aniva | d705cdf0e5 | |
Leni Aniva | a00a2b4a42 | |
Leni Aniva | 572548c1bd | |
Leni Aniva | 9fe3f62371 | |
Leni Aniva | 989130ecd2 | |
Leni Aniva | 5beb911db5 | |
Leni Aniva | 9b8aff95e5 | |
Leni Aniva | 4033722596 | |
Leni Aniva | fd536da55c | |
Leni Aniva | 58367cef6c | |
Leni Aniva | c781797898 | |
Leni Aniva | 44d470d63e | |
Leni Aniva | 51477a4806 | |
Leni Aniva | 56b967ee7a | |
Leni Aniva | 22202af24e | |
Leni Aniva | 111dea2093 | |
Leni Aniva | 8a448fb114 | |
Leni Aniva | 2772a394cc | |
Leni Aniva | 147079816d | |
Leni Aniva | 41241bfa40 | |
Leni Aniva | ed70875837 | |
Leni Aniva | c4a1ccad13 | |
Leni Aniva | 65da39440d | |
Leni Ven | 14a6eb1f59 | |
Leni Ven | 2ec4efde55 | |
Leni Ven | 3cb0795bb6 | |
Leni Aniva | 9f53781ffe | |
Leni Ven | 5a297e8fef | |
Leni Aniva | 0b2db92b4a | |
Leni Ven | 9a957bce35 |
|
@ -1,2 +1,5 @@
|
||||||
|
.*
|
||||||
|
!.gitignore
|
||||||
|
|
||||||
/build
|
/build
|
||||||
/lake-packages
|
/lake-packages
|
||||||
|
|
114
Main.lean
114
Main.lean
|
@ -1,4 +1,114 @@
|
||||||
|
import Lean.Data.Json
|
||||||
|
import Lean.Environment
|
||||||
|
|
||||||
|
import Pantograph.Version
|
||||||
import Pantograph
|
import Pantograph
|
||||||
|
|
||||||
def main : IO Unit :=
|
-- Main IO functions
|
||||||
IO.println s!"Hello, {hello}!"
|
open Pantograph
|
||||||
|
|
||||||
|
/-- Parse a command either in `{ "cmd": ..., "payload": ... }` form or `cmd { ... }` form. -/
|
||||||
|
def parse_command (s: String): Except String Commands.Command := do
|
||||||
|
let s := s.trim
|
||||||
|
match s.get? 0 with
|
||||||
|
| .some '{' => -- Parse in Json mode
|
||||||
|
Lean.fromJson? (← Lean.Json.parse s)
|
||||||
|
| .some _ => -- Parse in line mode
|
||||||
|
let offset := s.posOf ' ' |> s.offsetOfPos
|
||||||
|
if offset = s.length then
|
||||||
|
return { cmd := s.take offset, payload := Lean.Json.null }
|
||||||
|
else
|
||||||
|
let payload ← s.drop offset |> Lean.Json.parse
|
||||||
|
return { cmd := s.take offset, payload := payload }
|
||||||
|
| .none => throw "Command is empty"
|
||||||
|
|
||||||
|
unsafe def loop : MainM Unit := do
|
||||||
|
let state ← get
|
||||||
|
let command ← (← IO.getStdin).getLine
|
||||||
|
if command.trim.length = 0 then return ()
|
||||||
|
match parse_command command with
|
||||||
|
| .error error =>
|
||||||
|
let error := Lean.toJson ({ error := "command", desc := error }: Commands.InteractionError)
|
||||||
|
-- Using `Lean.Json.compress` here to prevent newline
|
||||||
|
IO.println error.compress
|
||||||
|
| .ok command =>
|
||||||
|
let ret ← execute command
|
||||||
|
let str := match state.options.printJsonPretty with
|
||||||
|
| true => ret.pretty
|
||||||
|
| false => ret.compress
|
||||||
|
IO.println str
|
||||||
|
loop
|
||||||
|
|
||||||
|
namespace Lean
|
||||||
|
|
||||||
|
/-- This is better than the default version since it handles `.` and doesn't
|
||||||
|
crash the program when it fails. -/
|
||||||
|
def setOptionFromString' (opts : Options) (entry : String) : ExceptT String IO Options := do
|
||||||
|
let ps := (entry.splitOn "=").map String.trim
|
||||||
|
let [key, val] ← pure ps | throw "invalid configuration option entry, it must be of the form '<key> = <value>'"
|
||||||
|
let key := Pantograph.str_to_name key
|
||||||
|
let defValue ← getOptionDefaultValue key
|
||||||
|
match defValue with
|
||||||
|
| DataValue.ofString _ => pure $ opts.setString key val
|
||||||
|
| DataValue.ofBool _ =>
|
||||||
|
match val with
|
||||||
|
| "true" => pure $ opts.setBool key true
|
||||||
|
| "false" => pure $ opts.setBool key false
|
||||||
|
| _ => throw s!"invalid Bool option value '{val}'"
|
||||||
|
| DataValue.ofName _ => pure $ opts.setName key val.toName
|
||||||
|
| DataValue.ofNat _ =>
|
||||||
|
match val.toNat? with
|
||||||
|
| none => throw s!"invalid Nat option value '{val}'"
|
||||||
|
| some v => pure $ opts.setNat key v
|
||||||
|
| DataValue.ofInt _ =>
|
||||||
|
match val.toInt? with
|
||||||
|
| none => throw s!"invalid Int option value '{val}'"
|
||||||
|
| some v => pure $ opts.setInt key v
|
||||||
|
| DataValue.ofSyntax _ => throw s!"invalid Syntax option value"
|
||||||
|
|
||||||
|
end Lean
|
||||||
|
|
||||||
|
|
||||||
|
unsafe def main (args: List String): IO Unit := do
|
||||||
|
-- NOTE: A more sophisticated scheme of command line argument handling is needed.
|
||||||
|
-- Separate imports and options
|
||||||
|
if args == ["--version"] then do
|
||||||
|
println! s!"{version}"
|
||||||
|
return
|
||||||
|
|
||||||
|
Lean.enableInitializersExecution
|
||||||
|
Lean.initSearchPath (← Lean.findSysroot)
|
||||||
|
|
||||||
|
let options? ← args.filterMap (λ s => if s.startsWith "--" then .some <| s.drop 2 else .none)
|
||||||
|
|>.foldlM Lean.setOptionFromString' Lean.Options.empty
|
||||||
|
|>.run
|
||||||
|
let options ← match options? with
|
||||||
|
| .ok options => pure options
|
||||||
|
| .error e => throw $ IO.userError s!"Options cannot be parsed: {e}"
|
||||||
|
let imports:= args.filter (λ s => ¬ (s.startsWith "--"))
|
||||||
|
|
||||||
|
let env ← Lean.importModules
|
||||||
|
(imports := imports.map (λ str => { module := str_to_name str, runtimeOnly := false }))
|
||||||
|
(opts := {})
|
||||||
|
(trustLevel := 1)
|
||||||
|
let context: Context := {
|
||||||
|
imports
|
||||||
|
}
|
||||||
|
let coreContext: Lean.Core.Context := {
|
||||||
|
currNamespace := Lean.Name.str .anonymous "Aniva"
|
||||||
|
openDecls := [], -- No 'open' directives needed
|
||||||
|
fileName := "<Pantograph>",
|
||||||
|
fileMap := { source := "", positions := #[0], lines := #[1] },
|
||||||
|
options := options
|
||||||
|
}
|
||||||
|
try
|
||||||
|
let termElabM := loop.run context |>.run' {}
|
||||||
|
let metaM := termElabM.run' (ctx := {
|
||||||
|
declName? := some "_pantograph",
|
||||||
|
errToSorry := false
|
||||||
|
})
|
||||||
|
let coreM := metaM.run'
|
||||||
|
discard <| coreM.toIO coreContext { env := env }
|
||||||
|
catch ex =>
|
||||||
|
IO.println "Uncaught IO exception"
|
||||||
|
IO.println ex.toString
|
||||||
|
|
166
Pantograph.lean
166
Pantograph.lean
|
@ -1 +1,165 @@
|
||||||
def hello := "world"
|
import Pantograph.Commands
|
||||||
|
import Pantograph.Serial
|
||||||
|
import Pantograph.Symbols
|
||||||
|
import Pantograph.Tactic
|
||||||
|
|
||||||
|
namespace Pantograph
|
||||||
|
|
||||||
|
structure Context where
|
||||||
|
imports: List String
|
||||||
|
|
||||||
|
/-- Stores state of the REPL -/
|
||||||
|
structure State where
|
||||||
|
options: Commands.Options := {}
|
||||||
|
--environments: Array Lean.Environment := #[]
|
||||||
|
proofTrees: Array ProofTree := #[]
|
||||||
|
|
||||||
|
-- State monad
|
||||||
|
abbrev MainM := ReaderT Context (StateT State Lean.Elab.TermElabM)
|
||||||
|
-- For some reason writing `CommandM α := MainM (Except ... α)` disables certain
|
||||||
|
-- monadic features in `MainM`
|
||||||
|
abbrev CR α := Except Commands.InteractionError α
|
||||||
|
|
||||||
|
def execute (command: Commands.Command): MainM Lean.Json := do
|
||||||
|
let run { α β: Type } [Lean.FromJson α] [Lean.ToJson β] (comm: α → MainM (CR β)): MainM Lean.Json :=
|
||||||
|
match Lean.fromJson? command.payload with
|
||||||
|
| .ok args => do
|
||||||
|
match (← comm args) with
|
||||||
|
| .ok result => return Lean.toJson result
|
||||||
|
| .error ierror => return Lean.toJson ierror
|
||||||
|
| .error error => return Lean.toJson $ errorCommand s!"Unable to parse json: {error}"
|
||||||
|
match command.cmd with
|
||||||
|
| "reset" => run reset
|
||||||
|
| "expr.echo" => run expr_echo
|
||||||
|
| "lib.catalog" => run lib_catalog
|
||||||
|
| "lib.inspect" => run lib_inspect
|
||||||
|
| "options.set" => run options_set
|
||||||
|
| "options.print" => run options_print
|
||||||
|
| "proof.start" => run proof_start
|
||||||
|
| "proof.tactic" => run proof_tactic
|
||||||
|
| "proof.printTree" => run proof_print_tree
|
||||||
|
| cmd =>
|
||||||
|
let error: Commands.InteractionError :=
|
||||||
|
errorCommand s!"Unknown command {cmd}"
|
||||||
|
return Lean.toJson error
|
||||||
|
where
|
||||||
|
errorI (type desc: String): Commands.InteractionError := { error := type, desc := desc }
|
||||||
|
errorCommand := errorI "command"
|
||||||
|
errorIndex := errorI "index"
|
||||||
|
-- Command Functions
|
||||||
|
reset (_: Commands.Reset): MainM (CR Commands.ResetResult) := do
|
||||||
|
let state ← get
|
||||||
|
let nTrees := state.proofTrees.size
|
||||||
|
set { state with proofTrees := #[] }
|
||||||
|
return .ok { nTrees := nTrees }
|
||||||
|
lib_catalog (_: Commands.LibCatalog): MainM (CR Commands.LibCatalogResult) := do
|
||||||
|
let env ← Lean.MonadEnv.getEnv
|
||||||
|
let names := env.constants.fold (init := #[]) (λ acc name info =>
|
||||||
|
match to_filtered_symbol name info with
|
||||||
|
| .some x => acc.push x
|
||||||
|
| .none => acc)
|
||||||
|
return .ok { symbols := names }
|
||||||
|
lib_inspect (args: Commands.LibInspect): MainM (CR Commands.LibInspectResult) := do
|
||||||
|
let state ← get
|
||||||
|
let env ← Lean.MonadEnv.getEnv
|
||||||
|
let name := str_to_name args.name
|
||||||
|
let info? := env.find? name
|
||||||
|
match info? with
|
||||||
|
| none => return .error $ errorIndex s!"Symbol not found {args.name}"
|
||||||
|
| some info =>
|
||||||
|
let module? := env.getModuleIdxFor? name >>=
|
||||||
|
(λ idx => env.allImportedModuleNames.get? idx.toNat) |>.map toString
|
||||||
|
let value? := match args.value?, info with
|
||||||
|
| .some true, _ => info.value?
|
||||||
|
| .some false, _ => .none
|
||||||
|
| .none, .defnInfo _ => info.value?
|
||||||
|
| .none, _ => .none
|
||||||
|
return .ok {
|
||||||
|
type := ← serialize_expression state.options info.type,
|
||||||
|
value? := ← value?.mapM (λ v => serialize_expression state.options v),
|
||||||
|
module? := module?
|
||||||
|
}
|
||||||
|
expr_echo (args: Commands.ExprEcho): MainM (CR Commands.ExprEchoResult) := do
|
||||||
|
let state ← get
|
||||||
|
let env ← Lean.MonadEnv.getEnv
|
||||||
|
match syntax_from_str env args.expr with
|
||||||
|
| .error str => return .error $ errorI "parsing" str
|
||||||
|
| .ok syn => do
|
||||||
|
match (← syntax_to_expr syn) with
|
||||||
|
| .error str => return .error $ errorI "elab" str
|
||||||
|
| .ok expr => do
|
||||||
|
try
|
||||||
|
let type ← Lean.Meta.inferType expr
|
||||||
|
return .ok {
|
||||||
|
type := (← serialize_expression (options := state.options) type),
|
||||||
|
expr := (← serialize_expression (options := state.options) expr)
|
||||||
|
}
|
||||||
|
catch exception =>
|
||||||
|
return .error $ errorI "typing" (← exception.toMessageData.toString)
|
||||||
|
options_set (args: Commands.OptionsSet): MainM (CR Commands.OptionsSetResult) := do
|
||||||
|
let state ← get
|
||||||
|
let options := state.options
|
||||||
|
set { state with
|
||||||
|
options := {
|
||||||
|
-- FIXME: This should be replaced with something more elegant
|
||||||
|
printJsonPretty := args.printJsonPretty?.getD options.printJsonPretty,
|
||||||
|
printExprPretty := args.printExprPretty?.getD options.printExprPretty,
|
||||||
|
printExprAST := args.printExprAST?.getD options.printExprAST,
|
||||||
|
proofVariableDelta := args.proofVariableDelta?.getD options.proofVariableDelta,
|
||||||
|
printAuxDecls := args.printAuxDecls?.getD options.printAuxDecls,
|
||||||
|
printImplementationDetailHyps := args.printImplementationDetailHyps?.getD options.printImplementationDetailHyps
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return .ok { }
|
||||||
|
options_print (_: Commands.OptionsPrint): MainM (CR Commands.OptionsPrintResult) := do
|
||||||
|
return .ok (← get).options
|
||||||
|
proof_start (args: Commands.ProofStart): MainM (CR Commands.ProofStartResult) := do
|
||||||
|
let state ← get
|
||||||
|
let env ← Lean.MonadEnv.getEnv
|
||||||
|
let expr?: Except _ Lean.Expr ← (match args.expr, args.copyFrom with
|
||||||
|
| .some expr, .none =>
|
||||||
|
(match syntax_from_str env expr with
|
||||||
|
| .error str => return .error <| errorI "parsing" str
|
||||||
|
| .ok syn => do
|
||||||
|
(match (← syntax_to_expr syn) with
|
||||||
|
| .error str => return .error <| errorI "elab" str
|
||||||
|
| .ok expr => return .ok expr))
|
||||||
|
| .none, .some copyFrom =>
|
||||||
|
(match env.find? <| str_to_name copyFrom with
|
||||||
|
| .none => return .error <| errorIndex s!"Symbol not found: {copyFrom}"
|
||||||
|
| .some cInfo => return .ok cInfo.type)
|
||||||
|
| .none, .none =>
|
||||||
|
return .error <| errorI "arguments" "At least one of {expr, copyFrom} must be supplied"
|
||||||
|
| _, _ => return .error <| errorI "arguments" "Cannot populate both of {expr, copyFrom}")
|
||||||
|
match expr? with
|
||||||
|
| .error error => return .error error
|
||||||
|
| .ok expr =>
|
||||||
|
let tree ← ProofTree.create (str_to_name <| args.name.getD "Untitled") expr
|
||||||
|
-- Put the new tree in the environment
|
||||||
|
let nextTreeId := state.proofTrees.size
|
||||||
|
set { state with proofTrees := state.proofTrees.push tree }
|
||||||
|
return .ok { treeId := nextTreeId }
|
||||||
|
proof_tactic (args: Commands.ProofTactic): MainM (CR Commands.ProofTacticResult) := do
|
||||||
|
let state ← get
|
||||||
|
match state.proofTrees.get? args.treeId with
|
||||||
|
| .none => return .error $ errorIndex "Invalid tree index {args.treeId}"
|
||||||
|
| .some tree =>
|
||||||
|
let (result, nextTree) ← ProofTree.execute
|
||||||
|
(stateId := args.stateId)
|
||||||
|
(goalId := args.goalId.getD 0)
|
||||||
|
(tactic := args.tactic) |>.run state.options |>.run tree
|
||||||
|
match result with
|
||||||
|
| .invalid message => return .error $ errorIndex message
|
||||||
|
| .success nextId? goals =>
|
||||||
|
set { state with proofTrees := state.proofTrees.set! args.treeId nextTree }
|
||||||
|
return .ok { nextId? := nextId?, goals? := .some goals }
|
||||||
|
| .failure messages =>
|
||||||
|
return .ok { tacticErrors? := .some messages }
|
||||||
|
proof_print_tree (args: Commands.ProofPrintTree): MainM (CR Commands.ProofPrintTreeResult) := do
|
||||||
|
let state ← get
|
||||||
|
match state.proofTrees.get? args.treeId with
|
||||||
|
| .none => return .error $ errorIndex "Invalid tree index {args.treeId}"
|
||||||
|
| .some tree =>
|
||||||
|
return .ok { parents := tree.structure_array }
|
||||||
|
|
||||||
|
end Pantograph
|
||||||
|
|
|
@ -0,0 +1,162 @@
|
||||||
|
/-
|
||||||
|
All the command input/output structures are stored here
|
||||||
|
|
||||||
|
Note that no command other than `InteractionError` may have `error` as one of
|
||||||
|
its field names to avoid confusion with error messages generated by the REPL.
|
||||||
|
-/
|
||||||
|
import Lean.Data.Json
|
||||||
|
|
||||||
|
namespace Pantograph.Commands
|
||||||
|
|
||||||
|
|
||||||
|
/-- Main Option structure, placed here to avoid name collision -/
|
||||||
|
structure Options where
|
||||||
|
-- When false, suppress newlines in Json objects. Useful for machine-to-machine interaction.
|
||||||
|
-- This should be false` by default to avoid any surprises with parsing.
|
||||||
|
printJsonPretty: Bool := false
|
||||||
|
-- When enabled, pretty print every expression
|
||||||
|
printExprPretty: Bool := true
|
||||||
|
-- When enabled, print the raw AST of expressions
|
||||||
|
printExprAST: Bool := false
|
||||||
|
-- When enabled, the types and values of persistent variables in a proof goal
|
||||||
|
-- are not shown unless they are new to the proof step. Reduces overhead
|
||||||
|
proofVariableDelta: Bool := false
|
||||||
|
-- See `pp.auxDecls`
|
||||||
|
printAuxDecls: Bool := false
|
||||||
|
-- See `pp.implementationDetailHyps`
|
||||||
|
printImplementationDetailHyps: Bool := false
|
||||||
|
deriving Lean.ToJson
|
||||||
|
|
||||||
|
abbrev OptionsT := ReaderT Options
|
||||||
|
|
||||||
|
--- Expression Objects ---
|
||||||
|
|
||||||
|
structure BoundExpression where
|
||||||
|
binders: Array (String × String)
|
||||||
|
target: String
|
||||||
|
deriving Lean.ToJson
|
||||||
|
structure Expression where
|
||||||
|
-- Pretty printed expression
|
||||||
|
pp?: Option String := .none
|
||||||
|
-- AST structure
|
||||||
|
sexp?: Option String := .none
|
||||||
|
deriving Lean.ToJson
|
||||||
|
|
||||||
|
structure Variable where
|
||||||
|
name: String
|
||||||
|
/-- Does the name contain a dagger -/
|
||||||
|
isInaccessible?: Option Bool := .none
|
||||||
|
type?: Option Expression := .none
|
||||||
|
value?: Option Expression := .none
|
||||||
|
deriving Lean.ToJson
|
||||||
|
structure Goal where
|
||||||
|
/-- String case id -/
|
||||||
|
caseName?: Option String := .none
|
||||||
|
/-- Is the goal in conversion mode -/
|
||||||
|
isConversion: Bool := false
|
||||||
|
/-- target expression type -/
|
||||||
|
target: Expression
|
||||||
|
/-- Variables -/
|
||||||
|
vars: Array Variable := #[]
|
||||||
|
deriving Lean.ToJson
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
--- Individual Commands and return types ---
|
||||||
|
|
||||||
|
structure Command where
|
||||||
|
cmd: String
|
||||||
|
payload: Lean.Json
|
||||||
|
deriving Lean.FromJson
|
||||||
|
|
||||||
|
structure InteractionError where
|
||||||
|
error: String
|
||||||
|
desc: String
|
||||||
|
deriving Lean.ToJson
|
||||||
|
|
||||||
|
|
||||||
|
--- Individual command and return types ---
|
||||||
|
|
||||||
|
|
||||||
|
structure Reset where
|
||||||
|
deriving Lean.FromJson
|
||||||
|
structure ResetResult where
|
||||||
|
nTrees: Nat
|
||||||
|
deriving Lean.ToJson
|
||||||
|
|
||||||
|
-- Return the type of an expression
|
||||||
|
structure ExprEcho where
|
||||||
|
expr: String
|
||||||
|
deriving Lean.FromJson
|
||||||
|
structure ExprEchoResult where
|
||||||
|
expr: Expression
|
||||||
|
type: Expression
|
||||||
|
deriving Lean.ToJson
|
||||||
|
|
||||||
|
-- Print all symbols in environment
|
||||||
|
structure LibCatalog where
|
||||||
|
deriving Lean.FromJson
|
||||||
|
structure LibCatalogResult where
|
||||||
|
symbols: Array String
|
||||||
|
deriving Lean.ToJson
|
||||||
|
-- Print the type of a symbol
|
||||||
|
structure LibInspect where
|
||||||
|
name: String
|
||||||
|
-- If true/false, show/hide the value expressions; By default definitions
|
||||||
|
-- values are shown and theorem values are hidden.
|
||||||
|
value?: Option Bool := .some false
|
||||||
|
deriving Lean.FromJson
|
||||||
|
structure LibInspectResult where
|
||||||
|
type: Expression
|
||||||
|
value?: Option Expression := .none
|
||||||
|
module?: Option String
|
||||||
|
deriving Lean.ToJson
|
||||||
|
|
||||||
|
/-- Set options; See `Options` struct above for meanings -/
|
||||||
|
structure OptionsSet where
|
||||||
|
printJsonPretty?: Option Bool
|
||||||
|
printExprPretty?: Option Bool
|
||||||
|
printExprAST?: Option Bool
|
||||||
|
proofVariableDelta?: Option Bool
|
||||||
|
printAuxDecls?: Option Bool
|
||||||
|
printImplementationDetailHyps?: Option Bool
|
||||||
|
deriving Lean.FromJson
|
||||||
|
structure OptionsSetResult where
|
||||||
|
deriving Lean.ToJson
|
||||||
|
structure OptionsPrint where
|
||||||
|
deriving Lean.FromJson
|
||||||
|
abbrev OptionsPrintResult := Options
|
||||||
|
|
||||||
|
structure ProofStart where
|
||||||
|
name: Option String -- Identifier of the proof
|
||||||
|
-- Only one of the fields below may be populated.
|
||||||
|
expr: Option String -- Proof expression
|
||||||
|
copyFrom: Option String -- Theorem name
|
||||||
|
deriving Lean.FromJson
|
||||||
|
structure ProofStartResult where
|
||||||
|
treeId: Nat := 0 -- Proof tree id
|
||||||
|
deriving Lean.ToJson
|
||||||
|
structure ProofTactic where
|
||||||
|
-- Identifiers for tree, state, and goal
|
||||||
|
treeId: Nat
|
||||||
|
stateId: Nat
|
||||||
|
goalId: Option Nat
|
||||||
|
tactic: String
|
||||||
|
deriving Lean.FromJson
|
||||||
|
structure ProofTacticResult where
|
||||||
|
-- Existence of this field shows success
|
||||||
|
goals?: Option (Array Goal) := .none
|
||||||
|
-- Next proof state id, if successful
|
||||||
|
nextId?: Option Nat := .none
|
||||||
|
-- Existence of this field shows failure
|
||||||
|
tacticErrors?: Option (Array String) := .none
|
||||||
|
deriving Lean.ToJson
|
||||||
|
structure ProofPrintTree where
|
||||||
|
treeId: Nat
|
||||||
|
deriving Lean.FromJson
|
||||||
|
structure ProofPrintTreeResult where
|
||||||
|
-- "" if no parents, otherwise "parentId.goalId"
|
||||||
|
parents: Array String
|
||||||
|
deriving Lean.ToJson
|
||||||
|
|
||||||
|
end Pantograph.Commands
|
|
@ -0,0 +1,255 @@
|
||||||
|
/-
|
||||||
|
All serialisation functions
|
||||||
|
-/
|
||||||
|
import Lean
|
||||||
|
|
||||||
|
import Pantograph.Commands
|
||||||
|
|
||||||
|
namespace Pantograph
|
||||||
|
open Lean
|
||||||
|
|
||||||
|
--- Input Functions ---
|
||||||
|
|
||||||
|
|
||||||
|
/-- Read a theorem from the environment -/
|
||||||
|
def expr_from_const (env: Environment) (name: Name): Except String Lean.Expr :=
|
||||||
|
match env.find? name with
|
||||||
|
| none => throw s!"Symbol not found: {name}"
|
||||||
|
| some cInfo => return cInfo.type
|
||||||
|
/-- Read syntax object from string -/
|
||||||
|
def syntax_from_str (env: Environment) (s: String): Except String Syntax :=
|
||||||
|
Parser.runParserCategory
|
||||||
|
(env := env)
|
||||||
|
(catName := `term)
|
||||||
|
(input := s)
|
||||||
|
(fileName := "<stdin>")
|
||||||
|
|
||||||
|
|
||||||
|
def syntax_to_expr_type (syn: Syntax): Elab.TermElabM (Except String Expr) := do
|
||||||
|
try
|
||||||
|
let expr ← Elab.Term.elabType syn
|
||||||
|
-- Immediately synthesise all metavariables if we need to leave the elaboration context.
|
||||||
|
-- See https://leanprover.zulipchat.com/#narrow/stream/270676-lean4/topic/Unknown.20universe.20metavariable/near/360130070
|
||||||
|
--Elab.Term.synthesizeSyntheticMVarsNoPostponing
|
||||||
|
let expr ← instantiateMVars expr
|
||||||
|
return .ok expr
|
||||||
|
catch ex => return .error (← ex.toMessageData.toString)
|
||||||
|
def syntax_to_expr (syn: Syntax): Elab.TermElabM (Except String Expr) := do
|
||||||
|
try
|
||||||
|
let expr ← Elab.Term.elabTerm (stx := syn) (expectedType? := .none)
|
||||||
|
-- Immediately synthesise all metavariables if we need to leave the elaboration context.
|
||||||
|
-- See https://leanprover.zulipchat.com/#narrow/stream/270676-lean4/topic/Unknown.20universe.20metavariable/near/360130070
|
||||||
|
--Elab.Term.synthesizeSyntheticMVarsNoPostponing
|
||||||
|
let expr ← instantiateMVars expr
|
||||||
|
return .ok expr
|
||||||
|
catch ex => return .error (← ex.toMessageData.toString)
|
||||||
|
|
||||||
|
|
||||||
|
--- Output Functions ---
|
||||||
|
|
||||||
|
def type_expr_to_bound (expr: Expr): MetaM Commands.BoundExpression := do
|
||||||
|
Meta.forallTelescope expr fun arr body => do
|
||||||
|
let binders ← arr.mapM fun fvar => do
|
||||||
|
return (toString (← fvar.fvarId!.getUserName), toString (← Meta.ppExpr (← fvar.fvarId!.getType)))
|
||||||
|
return { binders, target := toString (← Meta.ppExpr body) }
|
||||||
|
|
||||||
|
private def name_to_ast: Lean.Name → String
|
||||||
|
| .anonymous
|
||||||
|
| .num _ _ => ":anon"
|
||||||
|
| n@(.str _ _) => toString n
|
||||||
|
|
||||||
|
private def level_depth: Level → Nat
|
||||||
|
| .zero => 0
|
||||||
|
| .succ l => 1 + (level_depth l)
|
||||||
|
| .max u v | .imax u v => 1 + max (level_depth u) (level_depth v)
|
||||||
|
| .param _ | .mvar _ => 0
|
||||||
|
|
||||||
|
theorem level_depth_max_imax (u v: Level): (level_depth (Level.max u v) = level_depth (Level.imax u v)) := by
|
||||||
|
constructor
|
||||||
|
theorem level_max_depth_decrease (u v: Level): (level_depth u < level_depth (Level.max u v)) := by
|
||||||
|
have h1: level_depth (Level.max u v) = 1 + Nat.max (level_depth u) (level_depth v) := by constructor
|
||||||
|
rewrite [h1]
|
||||||
|
simp_arith
|
||||||
|
conv =>
|
||||||
|
rhs
|
||||||
|
apply Nat.max_def
|
||||||
|
sorry
|
||||||
|
theorem level_offset_decrease (u v: Level): (level_depth u ≤ level_depth (Level.max u v).getLevelOffset) := sorry
|
||||||
|
|
||||||
|
/-- serialize a sort level. Expression is optimized to be compact e.g. `(+ u 2)` -/
|
||||||
|
def serialize_sort_level_ast (level: Level): String :=
|
||||||
|
let k := level.getOffset
|
||||||
|
let u := level.getLevelOffset
|
||||||
|
let u_str := match u with
|
||||||
|
| .zero => "0"
|
||||||
|
| .succ _ => panic! "getLevelOffset should not return .succ"
|
||||||
|
| .max v w | .imax v w =>
|
||||||
|
let v := serialize_sort_level_ast v
|
||||||
|
let w := serialize_sort_level_ast w
|
||||||
|
s!"(max {v} {w})"
|
||||||
|
| .param name =>
|
||||||
|
let name := name_to_ast name
|
||||||
|
s!"{name}"
|
||||||
|
| .mvar id =>
|
||||||
|
let name := name_to_ast id.name
|
||||||
|
s!"(:mvar {name})"
|
||||||
|
match k, u with
|
||||||
|
| 0, _ => u_str
|
||||||
|
| _, .zero => s!"{k}"
|
||||||
|
| _, _ => s!"(+ {u_str} {k})"
|
||||||
|
termination_by serialize_sort_level_ast level => level_depth level
|
||||||
|
decreasing_by
|
||||||
|
. sorry
|
||||||
|
|
||||||
|
/--
|
||||||
|
Completely serializes an expression tree. Json not used due to compactness
|
||||||
|
-/
|
||||||
|
def serialize_expression_ast (expr: Expr): MetaM String := do
|
||||||
|
match expr with
|
||||||
|
| .bvar deBruijnIndex =>
|
||||||
|
-- This is very common so the index alone is shown. Literals are handled below.
|
||||||
|
-- The raw de Bruijn index should never appear in an unbound setting. In
|
||||||
|
-- Lean these are handled using a `#` prefix.
|
||||||
|
return s!"{deBruijnIndex}"
|
||||||
|
| .fvar fvarId =>
|
||||||
|
let name := (← fvarId.getDecl).userName
|
||||||
|
return s!"(:fv {name})"
|
||||||
|
| .mvar mvarId =>
|
||||||
|
let name := name_to_ast mvarId.name
|
||||||
|
return s!"(:mv {name})"
|
||||||
|
| .sort level =>
|
||||||
|
let level := serialize_sort_level_ast level
|
||||||
|
return s!"(:sort {level})"
|
||||||
|
| .const declName _ =>
|
||||||
|
-- The universe level of the const expression is elided since it should be
|
||||||
|
-- inferrable from surrounding expression
|
||||||
|
return s!"(:c {declName})"
|
||||||
|
| .app fn arg =>
|
||||||
|
let fn' ← serialize_expression_ast fn
|
||||||
|
let arg' ← serialize_expression_ast arg
|
||||||
|
return s!"({fn'} {arg'})"
|
||||||
|
| .lam binderName binderType body binderInfo =>
|
||||||
|
let binderName' := name_to_ast binderName
|
||||||
|
let binderType' ← serialize_expression_ast binderType
|
||||||
|
let body' ← serialize_expression_ast body
|
||||||
|
let binderInfo' := binder_info_to_ast binderInfo
|
||||||
|
return s!"(:lambda {binderName'} {binderType'} {body'}{binderInfo'})"
|
||||||
|
| .forallE binderName binderType body binderInfo =>
|
||||||
|
let binderName' := name_to_ast binderName
|
||||||
|
let binderType' ← serialize_expression_ast binderType
|
||||||
|
let body' ← serialize_expression_ast body
|
||||||
|
let binderInfo' := binder_info_to_ast binderInfo
|
||||||
|
return s!"(:forall {binderName'} {binderType'} {body'}{binderInfo'})"
|
||||||
|
| .letE name type value body _ =>
|
||||||
|
-- Dependent boolean flag diacarded
|
||||||
|
let name' := name_to_ast name
|
||||||
|
let type' ← serialize_expression_ast type
|
||||||
|
let value' ← serialize_expression_ast value
|
||||||
|
let body' ← serialize_expression_ast body
|
||||||
|
return s!"(:let {name'} {type'} {value'} {body'})"
|
||||||
|
| .lit v =>
|
||||||
|
-- To not burden the downstream parser who needs to handle this, the literal
|
||||||
|
-- is wrapped in a :lit sexp.
|
||||||
|
let v' := match v with
|
||||||
|
| .natVal val => toString val
|
||||||
|
| .strVal val => s!"\"{val}\""
|
||||||
|
return s!"(:lit {v'})"
|
||||||
|
| .mdata _ expr =>
|
||||||
|
-- NOTE: Equivalent to expr itself, but mdata influences the prettyprinter
|
||||||
|
-- It may become necessary to incorporate the metadata.
|
||||||
|
return (← serialize_expression_ast expr)
|
||||||
|
| .proj typeName idx struct =>
|
||||||
|
let struct' ← serialize_expression_ast struct
|
||||||
|
return s!"(:proj {typeName} {idx} {struct'})"
|
||||||
|
|
||||||
|
where
|
||||||
|
-- Elides all unhygenic names
|
||||||
|
binder_info_to_ast : Lean.BinderInfo → String
|
||||||
|
| .default => ""
|
||||||
|
| .implicit => " :implicit"
|
||||||
|
| .strictImplicit => " :strictImplicit"
|
||||||
|
| .instImplicit => " :instImplicit"
|
||||||
|
|
||||||
|
def serialize_expression (options: Commands.Options) (e: Expr): MetaM Commands.Expression := do
|
||||||
|
let pp := toString (← Meta.ppExpr e)
|
||||||
|
let pp?: Option String := match options.printExprPretty with
|
||||||
|
| true => .some pp
|
||||||
|
| false => .none
|
||||||
|
let sexp: String := (← serialize_expression_ast e)
|
||||||
|
let sexp?: Option String := match options.printExprAST with
|
||||||
|
| true => .some sexp
|
||||||
|
| false => .none
|
||||||
|
return {
|
||||||
|
pp?,
|
||||||
|
sexp?
|
||||||
|
}
|
||||||
|
|
||||||
|
/-- Adapted from ppGoal -/
|
||||||
|
def serialize_goal (options: Commands.Options) (mvarDecl: MetavarDecl) (parentDecl?: Option MetavarDecl)
|
||||||
|
: MetaM Commands.Goal := do
|
||||||
|
-- Options for printing; See Meta.ppGoal for details
|
||||||
|
let showLetValues := true
|
||||||
|
let ppAuxDecls := options.printAuxDecls
|
||||||
|
let ppImplDetailHyps := options.printImplementationDetailHyps
|
||||||
|
let lctx := mvarDecl.lctx
|
||||||
|
let lctx := lctx.sanitizeNames.run' { options := (← getOptions) }
|
||||||
|
Meta.withLCtx lctx mvarDecl.localInstances do
|
||||||
|
let ppVarNameOnly (localDecl: LocalDecl): MetaM Commands.Variable := do
|
||||||
|
match localDecl with
|
||||||
|
| .cdecl _ _ varName _ _ _ =>
|
||||||
|
let varName := varName.simpMacroScopes
|
||||||
|
return {
|
||||||
|
name := toString varName,
|
||||||
|
}
|
||||||
|
| .ldecl _ _ varName _ _ _ _ => do
|
||||||
|
return {
|
||||||
|
name := toString varName,
|
||||||
|
}
|
||||||
|
let ppVar (localDecl : LocalDecl) : MetaM Commands.Variable := do
|
||||||
|
match localDecl with
|
||||||
|
| .cdecl _ _ varName type _ _ =>
|
||||||
|
let varName := varName.simpMacroScopes
|
||||||
|
let type ← instantiateMVars type
|
||||||
|
return {
|
||||||
|
name := toString varName,
|
||||||
|
isInaccessible? := .some varName.isInaccessibleUserName
|
||||||
|
type? := .some (← serialize_expression options type)
|
||||||
|
}
|
||||||
|
| .ldecl _ _ varName type val _ _ => do
|
||||||
|
let varName := varName.simpMacroScopes
|
||||||
|
let type ← instantiateMVars type
|
||||||
|
let value? ← if showLetValues then
|
||||||
|
let val ← instantiateMVars val
|
||||||
|
pure $ .some (← serialize_expression options val)
|
||||||
|
else
|
||||||
|
pure $ .none
|
||||||
|
return {
|
||||||
|
name := toString varName,
|
||||||
|
isInaccessible? := .some varName.isInaccessibleUserName
|
||||||
|
type? := .some (← serialize_expression options type)
|
||||||
|
value? := value?
|
||||||
|
}
|
||||||
|
let vars ← lctx.foldlM (init := []) fun acc (localDecl : LocalDecl) => do
|
||||||
|
let skip := !ppAuxDecls && localDecl.isAuxDecl ||
|
||||||
|
!ppImplDetailHyps && localDecl.isImplementationDetail
|
||||||
|
if skip then
|
||||||
|
return acc
|
||||||
|
else
|
||||||
|
let nameOnly := options.proofVariableDelta && (parentDecl?.map
|
||||||
|
(λ decl => decl.lctx.find? localDecl.fvarId |>.isSome) |>.getD false)
|
||||||
|
let var ← match nameOnly with
|
||||||
|
| true => ppVarNameOnly localDecl
|
||||||
|
| false => ppVar localDecl
|
||||||
|
return var::acc
|
||||||
|
return {
|
||||||
|
caseName? := match mvarDecl.userName with
|
||||||
|
| Name.anonymous => .none
|
||||||
|
| name => .some <| toString name,
|
||||||
|
isConversion := "| " == (Meta.getGoalPrefix mvarDecl)
|
||||||
|
target := (← serialize_expression options (← instantiateMVars mvarDecl.type)),
|
||||||
|
vars := vars.reverse.toArray
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
end Pantograph
|
|
@ -0,0 +1,38 @@
|
||||||
|
/-
|
||||||
|
- Manages the visibility status of symbols
|
||||||
|
-/
|
||||||
|
import Lean.Declaration
|
||||||
|
|
||||||
|
namespace Pantograph
|
||||||
|
|
||||||
|
def str_to_name (s: String): Lean.Name :=
|
||||||
|
(s.splitOn ".").foldl Lean.Name.str Lean.Name.anonymous
|
||||||
|
|
||||||
|
def is_symbol_unsafe_or_internal (n: Lean.Name) (info: Lean.ConstantInfo): Bool :=
|
||||||
|
let nameDeduce: Bool := match n.getRoot with
|
||||||
|
| .str _ name => name.startsWith "_" ∨ name == "Lean"
|
||||||
|
| _ => true
|
||||||
|
let stemDeduce: Bool := match n with
|
||||||
|
| .anonymous => true
|
||||||
|
| .str _ name => name.startsWith "_"
|
||||||
|
| .num _ _ => true
|
||||||
|
nameDeduce ∨ stemDeduce ∨ info.isUnsafe
|
||||||
|
|
||||||
|
def to_compact_symbol_name (n: Lean.Name) (info: Lean.ConstantInfo): String :=
|
||||||
|
let pref := match info with
|
||||||
|
| .axiomInfo _ => "axiom"
|
||||||
|
| .defnInfo _ => "defn"
|
||||||
|
| .thmInfo _ => "thm"
|
||||||
|
| .opaqueInfo _ => "opaque"
|
||||||
|
| .quotInfo _ => "quot"
|
||||||
|
| .inductInfo _ => "induct"
|
||||||
|
| .ctorInfo _ => "ctor"
|
||||||
|
| .recInfo _ => "rec"
|
||||||
|
s!"{pref}|{toString n}"
|
||||||
|
|
||||||
|
def to_filtered_symbol (n: Lean.Name) (info: Lean.ConstantInfo): Option String :=
|
||||||
|
if is_symbol_unsafe_or_internal n info
|
||||||
|
then Option.none
|
||||||
|
else Option.some <| to_compact_symbol_name n info
|
||||||
|
|
||||||
|
end Pantograph
|
|
@ -0,0 +1,125 @@
|
||||||
|
import Lean
|
||||||
|
|
||||||
|
import Pantograph.Symbols
|
||||||
|
import Pantograph.Serial
|
||||||
|
|
||||||
|
/-
|
||||||
|
The proof state manipulation system
|
||||||
|
|
||||||
|
A proof state is launched by providing
|
||||||
|
1. Environment: `Environment`
|
||||||
|
2. Expression: `Expr`
|
||||||
|
The expression becomes the first meta variable in the saved tactic state
|
||||||
|
`Elab.Tactic.SavedState`.
|
||||||
|
From this point on, any proof which extends
|
||||||
|
`Elab.Term.Context` and
|
||||||
|
-/
|
||||||
|
|
||||||
|
def Lean.MessageLog.getErrorMessages (log : MessageLog) : MessageLog :=
|
||||||
|
{
|
||||||
|
msgs := log.msgs.filter fun m => match m.severity with | MessageSeverity.error => true | _ => false
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
namespace Pantograph
|
||||||
|
open Lean
|
||||||
|
|
||||||
|
structure ProofState where
|
||||||
|
goals : List MVarId
|
||||||
|
savedState : Elab.Tactic.SavedState
|
||||||
|
parent : Option Nat := none
|
||||||
|
parentGoalId : Nat := 0
|
||||||
|
structure ProofTree where
|
||||||
|
-- All parameters needed to run a `TermElabM` monad
|
||||||
|
name: Name
|
||||||
|
|
||||||
|
-- Set of proof states
|
||||||
|
states : Array ProofState := #[]
|
||||||
|
|
||||||
|
abbrev M := Elab.TermElabM
|
||||||
|
|
||||||
|
def ProofTree.create (name: Name) (expr: Expr): M ProofTree := do
|
||||||
|
let expr ← instantiateMVars expr
|
||||||
|
let goal := (← Meta.mkFreshExprMVar expr (kind := MetavarKind.synthetic))
|
||||||
|
let savedStateMonad: Elab.Tactic.TacticM Elab.Tactic.SavedState := MonadBacktrack.saveState
|
||||||
|
let savedState ← savedStateMonad { elaborator := .anonymous } |>.run' { goals := [goal.mvarId!]}
|
||||||
|
return {
|
||||||
|
name := name,
|
||||||
|
states := #[{
|
||||||
|
savedState := savedState,
|
||||||
|
goals := [goal.mvarId!]
|
||||||
|
}]
|
||||||
|
}
|
||||||
|
|
||||||
|
-- Print the tree structures in readable form
|
||||||
|
def ProofTree.structure_array (tree: ProofTree): Array String :=
|
||||||
|
tree.states.map λ state => match state.parent with
|
||||||
|
| .none => ""
|
||||||
|
| .some parent => s!"{parent}.{state.parentGoalId}"
|
||||||
|
|
||||||
|
def execute_tactic (state: Elab.Tactic.SavedState) (goal: MVarId) (tactic: String) :
|
||||||
|
M (Except (Array String) (Elab.Tactic.SavedState × List MVarId)):= do
|
||||||
|
let tacticM (stx: Syntax): Elab.Tactic.TacticM (Except (Array String) (Elab.Tactic.SavedState × List MVarId)) := do
|
||||||
|
state.restore
|
||||||
|
Elab.Tactic.setGoals [goal]
|
||||||
|
try
|
||||||
|
Elab.Tactic.evalTactic stx
|
||||||
|
if (← getThe Core.State).messages.hasErrors then
|
||||||
|
let messages := (← getThe Core.State).messages.getErrorMessages |>.toList.toArray
|
||||||
|
let errors ← (messages.map Message.data).mapM fun md => md.toString
|
||||||
|
return .error errors
|
||||||
|
else
|
||||||
|
return .ok (← MonadBacktrack.saveState, ← Elab.Tactic.getUnsolvedGoals)
|
||||||
|
catch exception =>
|
||||||
|
return .error #[← exception.toMessageData.toString]
|
||||||
|
match Parser.runParserCategory
|
||||||
|
(env := ← MonadEnv.getEnv)
|
||||||
|
(catName := `tactic)
|
||||||
|
(input := tactic)
|
||||||
|
(fileName := "<stdin>") with
|
||||||
|
| Except.error err => return .error #[err]
|
||||||
|
| Except.ok stx => tacticM stx { elaborator := .anonymous } |>.run' state.tactic
|
||||||
|
|
||||||
|
/-- Response for executing a tactic -/
|
||||||
|
inductive TacticResult where
|
||||||
|
-- Invalid id
|
||||||
|
| invalid (message: String): TacticResult
|
||||||
|
-- Goes to next state
|
||||||
|
| success (nextId?: Option Nat) (goals: Array Commands.Goal)
|
||||||
|
-- Fails with messages
|
||||||
|
| failure (messages: Array String)
|
||||||
|
|
||||||
|
/-- Execute tactic on given state -/
|
||||||
|
def ProofTree.execute (stateId: Nat) (goalId: Nat) (tactic: String):
|
||||||
|
Commands.OptionsT StateRefT ProofTree M TacticResult := do
|
||||||
|
let options ← read
|
||||||
|
let tree ← get
|
||||||
|
match tree.states.get? stateId with
|
||||||
|
| .none => return .invalid s!"Invalid state id {stateId}"
|
||||||
|
| .some state =>
|
||||||
|
match state.goals.get? goalId with
|
||||||
|
| .none => return .invalid s!"Invalid goal id {goalId}"
|
||||||
|
| .some goal =>
|
||||||
|
match (← execute_tactic (state := state.savedState) (goal := goal) (tactic := tactic)) with
|
||||||
|
| .error errors =>
|
||||||
|
return .failure errors
|
||||||
|
| .ok (nextState, nextGoals) =>
|
||||||
|
let nextId := tree.states.size
|
||||||
|
if nextGoals.isEmpty then
|
||||||
|
return .success .none #[]
|
||||||
|
else
|
||||||
|
let proofState: ProofState := {
|
||||||
|
savedState := nextState,
|
||||||
|
goals := nextGoals,
|
||||||
|
parent := stateId,
|
||||||
|
parentGoalId := goalId
|
||||||
|
}
|
||||||
|
modify fun s => { s with states := s.states.push proofState }
|
||||||
|
let parentDecl? := (← MonadMCtx.getMCtx).findDecl? goal
|
||||||
|
let goals ← nextGoals.mapM fun mvarId => do
|
||||||
|
match (← MonadMCtx.getMCtx).findDecl? mvarId with
|
||||||
|
| .some mvarDecl => serialize_goal options mvarDecl (parentDecl? := parentDecl?)
|
||||||
|
| .none => throwError mvarId
|
||||||
|
return .success (.some nextId) goals.toArray
|
||||||
|
|
||||||
|
end Pantograph
|
|
@ -0,0 +1,5 @@
|
||||||
|
namespace Pantograph
|
||||||
|
|
||||||
|
def version := "0.2.3"
|
||||||
|
|
||||||
|
end Pantograph
|
|
@ -0,0 +1,108 @@
|
||||||
|
# Pantograph
|
||||||
|
|
||||||
|
An interaction system for Lean 4.
|
||||||
|
|
||||||
|
![Pantograph](doc/icon.svg)
|
||||||
|
|
||||||
|
## Installation
|
||||||
|
|
||||||
|
Install `elan` and `lean4`. Then, execute
|
||||||
|
``` sh
|
||||||
|
lake build
|
||||||
|
```
|
||||||
|
Then, setup the `LEAN_PATH` environment variable so it contains the library path of lean libraries. The libraries must be built in advance. For example, if `mathlib4` is stored at `../lib/mathlib4`,
|
||||||
|
``` sh
|
||||||
|
LIB="../lib"
|
||||||
|
LIB_MATHLIB="$LIB/mathlib4/lake-packages"
|
||||||
|
export LEAN_PATH="$LIB/mathlib4/build/lib:$LIB_MATHLIB/aesop/build/lib:$LIB_MATHLIB/Qq/build/lib:$LIB_MATHLIB/std/build/lib"
|
||||||
|
|
||||||
|
LEAN_PATH=$LEAN_PATH build/bin/pantograph $@
|
||||||
|
```
|
||||||
|
Note that `lean-toolchain` must be present in the `$PWD` in order to run Pantograph! This is because Pantograph taps into Lean's internals.
|
||||||
|
|
||||||
|
## Usage
|
||||||
|
|
||||||
|
``` sh
|
||||||
|
build/bin/pantograph MODULES|LEAN_OPTIONS
|
||||||
|
```
|
||||||
|
|
||||||
|
The REPL loop accepts commands as single-line JSON inputs and outputs either an
|
||||||
|
`Error:` (indicating malformed command) or a JSON return value indicating the
|
||||||
|
result of a command execution. The command can be passed in one of two formats
|
||||||
|
```
|
||||||
|
command { ... }
|
||||||
|
{ "cmd": command, "payload": ... }
|
||||||
|
```
|
||||||
|
The list of available commands can be found in `Pantograph/Commands.lean` and below. An
|
||||||
|
empty command aborts the REPL.
|
||||||
|
|
||||||
|
The `Pantograph` executable must be run with a list of modules to import. It can
|
||||||
|
also accept lean options of the form `--key=value` e.g. `--pp.raw=true`.
|
||||||
|
|
||||||
|
Example: (~5k symbols)
|
||||||
|
```
|
||||||
|
$ build/bin/Pantograph Init
|
||||||
|
lib.catalog
|
||||||
|
lib.inspect {"name": "Nat.le_add_left"}
|
||||||
|
```
|
||||||
|
Example with `mathlib4` (~90k symbols, may stack overflow, see troubleshooting)
|
||||||
|
```
|
||||||
|
$ lake env build/bin/Pantograph Mathlib.Analysis.Seminorm
|
||||||
|
lib.catalog
|
||||||
|
```
|
||||||
|
Example proving a theorem: (alternatively use `proof.start {"copyFrom": "Nat.add_comm"}`) to prime the proof
|
||||||
|
```
|
||||||
|
$ env build/bin/Pantograph Init
|
||||||
|
proof.start {"expr": "∀ (n m : Nat), n + m = m + n"}
|
||||||
|
proof.tactic {"treeId": 0, "stateId": 0, "goalId": 0, "tactic": "intro n m"}
|
||||||
|
proof.tactic {"treeId": 0, "stateId": 1, "goalId": 0, "tactic": "assumption"}
|
||||||
|
proof.printTree {"treeId": 0}
|
||||||
|
proof.tactic {"treeId": 0, "stateId": 1, "goalId": 0, "tactic": "rw [Nat.add_comm]"}
|
||||||
|
proof.printTree {"treeId": 0}
|
||||||
|
```
|
||||||
|
where the application of `assumption` should lead to a failure.
|
||||||
|
|
||||||
|
## Commands
|
||||||
|
|
||||||
|
See `Pantograph/Commands.lean` for a description of the parameters and return values in JSON.
|
||||||
|
- `reset`: Delete all cached expressions and proof trees
|
||||||
|
- `expr.echo {"expr": <expr>}`: Determine the type of an expression and round-trip it
|
||||||
|
- `lib.catalog`: Display a list of all safe Lean symbols in the current context
|
||||||
|
- `lib.inspect {"name": <name>, "value": <bool>}`: Show the type and package of a
|
||||||
|
given symbol; If value flag is set, the value is printed or hidden. By default
|
||||||
|
only the values of definitions are printed.
|
||||||
|
- `options.set { key: value, ... }`: Set one or more options (not Lean options; those
|
||||||
|
have to be set via command line arguments.), for options, see `Pantograph/Commands.lean`
|
||||||
|
- `options.print`: Display the current set of options
|
||||||
|
- `proof.start {["name": <name>], ["expr": <expr>], ["copyFrom": <symbol>]}`: Start a new proof state from a given expression or symbol
|
||||||
|
- `proof.tactic {"treeId": <id>, "stateId": <id>, "goalId": <id>, "tactic": string}`: Execute a tactic on a given proof state
|
||||||
|
- `proof.printTree {"treeId": <id>}`: Print the topological structure of a proof tree
|
||||||
|
|
||||||
|
## Errors
|
||||||
|
|
||||||
|
When an error pertaining to the execution of a command happens, the returning JSON structure is
|
||||||
|
|
||||||
|
``` json
|
||||||
|
{ error: "type", desc: "description" }
|
||||||
|
```
|
||||||
|
Common error forms:
|
||||||
|
* `command`: Indicates malformed command structure which results from either
|
||||||
|
invalid command or a malformed JSON structure that cannot be fed to an
|
||||||
|
individual command.
|
||||||
|
* `index`: Indicates an invariant maintained by the output of one command and
|
||||||
|
input of another is broken. For example, attempting to query a symbol not
|
||||||
|
existing in the library or indexing into a non-existent proof state.
|
||||||
|
|
||||||
|
## Troubleshooting
|
||||||
|
|
||||||
|
If lean encounters stack overflow problems when printing catalog, execute this before running lean:
|
||||||
|
```sh
|
||||||
|
ulimit -s unlimited
|
||||||
|
```
|
||||||
|
|
||||||
|
## Testing
|
||||||
|
|
||||||
|
The tests are based on `LSpec`. To run tests,
|
||||||
|
``` sh
|
||||||
|
test/all.sh
|
||||||
|
```
|
|
@ -0,0 +1,93 @@
|
||||||
|
/- Integration test for the REPL
|
||||||
|
-/
|
||||||
|
import LSpec
|
||||||
|
import Pantograph
|
||||||
|
namespace Pantograph.Test
|
||||||
|
open Pantograph
|
||||||
|
|
||||||
|
def subroutine_named_step (name cmd: String) (payload: List (String × Lean.Json))
|
||||||
|
(expected: Lean.Json): MainM LSpec.TestSeq := do
|
||||||
|
let result ← execute { cmd := cmd, payload := Lean.Json.mkObj payload }
|
||||||
|
return LSpec.test name (toString result = toString expected)
|
||||||
|
def subroutine_step (cmd: String) (payload: List (String × Lean.Json))
|
||||||
|
(expected: Lean.Json): MainM LSpec.TestSeq := subroutine_named_step cmd cmd payload expected
|
||||||
|
|
||||||
|
def subroutine_runner (steps: List (MainM LSpec.TestSeq)): IO LSpec.TestSeq := do
|
||||||
|
-- Setup the environment for execution
|
||||||
|
let env ← Lean.importModules
|
||||||
|
(imports := [{module := Lean.Name.str .anonymous "Init", runtimeOnly := false }])
|
||||||
|
(opts := {})
|
||||||
|
(trustLevel := 1)
|
||||||
|
let context: Context := {
|
||||||
|
imports := ["Init"]
|
||||||
|
}
|
||||||
|
let coreContext: Lean.Core.Context := {
|
||||||
|
currNamespace := Lean.Name.str .anonymous "Aniva"
|
||||||
|
openDecls := [],
|
||||||
|
fileName := "<Test>",
|
||||||
|
fileMap := { source := "", positions := #[0], lines := #[1] },
|
||||||
|
options := Lean.Options.empty
|
||||||
|
}
|
||||||
|
let commands: MainM LSpec.TestSeq :=
|
||||||
|
steps.foldlM (λ suite step => do
|
||||||
|
let result ← step
|
||||||
|
return suite ++ result) LSpec.TestSeq.done
|
||||||
|
try
|
||||||
|
let termElabM := commands.run context |>.run' {}
|
||||||
|
let metaM := termElabM.run' (ctx := {
|
||||||
|
declName? := some "_pantograph",
|
||||||
|
errToSorry := false
|
||||||
|
})
|
||||||
|
let coreM := metaM.run'
|
||||||
|
return Prod.fst $ (← coreM.toIO coreContext { env := env })
|
||||||
|
catch ex =>
|
||||||
|
return LSpec.check s!"Uncaught IO exception: {ex.toString}" false
|
||||||
|
|
||||||
|
def test_option_modify : IO LSpec.TestSeq :=
|
||||||
|
let pp? := Option.some "∀ (n : Nat), n + 1 = Nat.succ n"
|
||||||
|
let sexp? := Option.some "(:forall n (:c Nat) ((((:c Eq) (:c Nat)) (((((((:c HAdd.hAdd) (:c Nat)) (:c Nat)) (:c Nat)) (((:c instHAdd) (:c Nat)) (:c instAddNat))) 0) ((((:c OfNat.ofNat) (:c Nat)) (:lit 1)) ((:c instOfNatNat) (:lit 1))))) ((:c Nat.succ) 0)))"
|
||||||
|
let module? := Option.some "Init.Data.Nat.Basic"
|
||||||
|
let options: Commands.Options := {}
|
||||||
|
subroutine_runner [
|
||||||
|
subroutine_step "lib.inspect"
|
||||||
|
[("name", .str "Nat.add_one")]
|
||||||
|
(Lean.toJson ({
|
||||||
|
type := { pp? }, module? }:
|
||||||
|
Commands.LibInspectResult)),
|
||||||
|
subroutine_step "options.set"
|
||||||
|
[("printExprAST", .bool true)]
|
||||||
|
(Lean.toJson ({ }:
|
||||||
|
Commands.OptionsSetResult)),
|
||||||
|
subroutine_step "lib.inspect"
|
||||||
|
[("name", .str "Nat.add_one")]
|
||||||
|
(Lean.toJson ({
|
||||||
|
type := { pp?, sexp? }, module? }:
|
||||||
|
Commands.LibInspectResult)),
|
||||||
|
subroutine_step "options.print"
|
||||||
|
[]
|
||||||
|
(Lean.toJson ({ options with printExprAST := true }:
|
||||||
|
Commands.OptionsPrintResult))
|
||||||
|
]
|
||||||
|
def test_malformed_command : IO LSpec.TestSeq :=
|
||||||
|
let invalid := "invalid"
|
||||||
|
subroutine_runner [
|
||||||
|
subroutine_named_step "Invalid command" invalid
|
||||||
|
[("name", .str "Nat.add_one")]
|
||||||
|
(Lean.toJson ({
|
||||||
|
error := "command", desc := s!"Unknown command {invalid}"}:
|
||||||
|
Commands.InteractionError)),
|
||||||
|
subroutine_named_step "JSON Deserialization" "expr.echo"
|
||||||
|
[(invalid, .str "Random garbage data")]
|
||||||
|
(Lean.toJson ({
|
||||||
|
error := "command", desc := s!"Unable to parse json: Pantograph.Commands.ExprEcho.expr: String expected"}:
|
||||||
|
Commands.InteractionError))
|
||||||
|
]
|
||||||
|
|
||||||
|
def test_integration: IO LSpec.TestSeq := do
|
||||||
|
|
||||||
|
return LSpec.group "Integration" $
|
||||||
|
(LSpec.group "Option modify" (← test_option_modify)) ++
|
||||||
|
(LSpec.group "Malformed command" (← test_malformed_command))
|
||||||
|
|
||||||
|
|
||||||
|
end Pantograph.Test
|
|
@ -0,0 +1,18 @@
|
||||||
|
import LSpec
|
||||||
|
import Test.Integration
|
||||||
|
import Test.Proofs
|
||||||
|
import Test.Serial
|
||||||
|
|
||||||
|
open Pantograph.Test
|
||||||
|
|
||||||
|
unsafe def main := do
|
||||||
|
Lean.enableInitializersExecution
|
||||||
|
Lean.initSearchPath (← Lean.findSysroot)
|
||||||
|
|
||||||
|
let suites := [
|
||||||
|
test_integration,
|
||||||
|
test_proofs,
|
||||||
|
test_serial
|
||||||
|
]
|
||||||
|
let all ← suites.foldlM (λ acc m => do pure $ acc ++ (← m)) LSpec.TestSeq.done
|
||||||
|
LSpec.lspecIO $ all
|
|
@ -0,0 +1,222 @@
|
||||||
|
import LSpec
|
||||||
|
import Pantograph.Tactic
|
||||||
|
import Pantograph.Serial
|
||||||
|
|
||||||
|
namespace Pantograph.Test
|
||||||
|
open Pantograph
|
||||||
|
open Lean
|
||||||
|
|
||||||
|
inductive Start where
|
||||||
|
| copy (name: String) -- Start from some name in the environment
|
||||||
|
| expr (expr: String) -- Start from some expression
|
||||||
|
|
||||||
|
abbrev TestM := ReaderT Commands.Options StateRefT ProofTree M
|
||||||
|
|
||||||
|
def start_proof (start: Start): M (LSpec.TestSeq × Option ProofTree) := do
|
||||||
|
let env ← Lean.MonadEnv.getEnv
|
||||||
|
let mut testSeq := LSpec.TestSeq.done
|
||||||
|
match start with
|
||||||
|
| .copy name =>
|
||||||
|
let cInfo? := str_to_name name |> env.find?
|
||||||
|
testSeq := testSeq ++ LSpec.check s!"Symbol exists {name}" cInfo?.isSome
|
||||||
|
match cInfo? with
|
||||||
|
| .some cInfo =>
|
||||||
|
let state ← ProofTree.create
|
||||||
|
(name := str_to_name "TestExample")
|
||||||
|
(expr := cInfo.type)
|
||||||
|
return (testSeq, Option.some state)
|
||||||
|
| .none =>
|
||||||
|
return (testSeq, Option.none)
|
||||||
|
| .expr expr =>
|
||||||
|
let syn? := syntax_from_str env expr
|
||||||
|
testSeq := testSeq ++ LSpec.check s!"Parsing {expr}" (syn?.isOk)
|
||||||
|
match syn? with
|
||||||
|
| .error error =>
|
||||||
|
IO.println error
|
||||||
|
return (testSeq, Option.none)
|
||||||
|
| .ok syn =>
|
||||||
|
let expr? ← syntax_to_expr syn
|
||||||
|
testSeq := testSeq ++ LSpec.check s!"Elaborating" expr?.isOk
|
||||||
|
match expr? with
|
||||||
|
| .error error =>
|
||||||
|
IO.println error
|
||||||
|
return (testSeq, Option.none)
|
||||||
|
| .ok expr =>
|
||||||
|
let state ← ProofTree.create
|
||||||
|
(name := str_to_name "TestExample")
|
||||||
|
(expr := expr)
|
||||||
|
return (testSeq, Option.some state)
|
||||||
|
|
||||||
|
deriving instance DecidableEq, Repr for Commands.Expression
|
||||||
|
deriving instance DecidableEq, Repr for Commands.Variable
|
||||||
|
deriving instance DecidableEq, Repr for Commands.Goal
|
||||||
|
deriving instance DecidableEq, Repr for TacticResult
|
||||||
|
|
||||||
|
/-- Check the output of each proof step -/
|
||||||
|
def proof_step (stateId: Nat) (goalId: Nat) (tactic: String)
|
||||||
|
(expected: TacticResult) : TestM LSpec.TestSeq := do
|
||||||
|
let options ← read
|
||||||
|
let result: TacticResult ← ProofTree.execute stateId goalId tactic |>.run options
|
||||||
|
match expected, result with
|
||||||
|
| .success (.some i) #[], .success (.some _) goals =>
|
||||||
|
-- If the goals are omitted but the next state is specified, we imply that
|
||||||
|
-- the tactic succeeded.
|
||||||
|
let expected := .success (.some i) goals
|
||||||
|
return LSpec.test s!"{stateId}.{goalId} {tactic}" (result = expected)
|
||||||
|
| _, _ =>
|
||||||
|
return LSpec.test s!"{stateId}.{goalId} {tactic}" (result = expected)
|
||||||
|
|
||||||
|
/-- Check that the tree structure is correct -/
|
||||||
|
def proof_inspect (expected: Array String) : TestM LSpec.TestSeq := do
|
||||||
|
let result := (← get).structure_array
|
||||||
|
return LSpec.test s!"tree structure" (result = expected)
|
||||||
|
|
||||||
|
def proof_runner (env: Lean.Environment) (options: Commands.Options) (start: Start) (steps: List (TestM LSpec.TestSeq)): IO LSpec.TestSeq := do
|
||||||
|
let termElabM := do
|
||||||
|
let (testSeq, state?) ← start_proof start
|
||||||
|
match state? with
|
||||||
|
| .none => return testSeq
|
||||||
|
| .some state => steps.foldlM (fun tests m => do pure $ tests ++ (← m)) testSeq |>.run options |>.run' state
|
||||||
|
|
||||||
|
let coreContext: Lean.Core.Context := {
|
||||||
|
currNamespace := str_to_name "Aniva",
|
||||||
|
openDecls := [], -- No 'open' directives needed
|
||||||
|
fileName := "<Pantograph>",
|
||||||
|
fileMap := { source := "", positions := #[0], lines := #[1] }
|
||||||
|
}
|
||||||
|
let metaM := termElabM.run' (ctx := {
|
||||||
|
declName? := some "_pantograph",
|
||||||
|
errToSorry := false
|
||||||
|
})
|
||||||
|
let coreM := metaM.run'
|
||||||
|
match ← (coreM.run' coreContext { env := env }).toBaseIO with
|
||||||
|
| .error exception =>
|
||||||
|
return LSpec.test "Exception" (s!"internal exception #{← exception.toMessageData.toString}" = "")
|
||||||
|
| .ok a => return a
|
||||||
|
|
||||||
|
def build_goal (nameType: List (String × String)) (target: String): Commands.Goal :=
|
||||||
|
{
|
||||||
|
target := { pp? := .some target},
|
||||||
|
vars := (nameType.map fun x => ({
|
||||||
|
name := x.fst,
|
||||||
|
type? := .some { pp? := .some x.snd },
|
||||||
|
isInaccessible? := .some false
|
||||||
|
})).toArray
|
||||||
|
}
|
||||||
|
|
||||||
|
example: ∀ (a b: Nat), a + b = b + a := by
|
||||||
|
intro n m
|
||||||
|
rw [Nat.add_comm]
|
||||||
|
def proof_nat_add_comm (env: Lean.Environment): IO LSpec.TestSeq := do
|
||||||
|
let goal1: Commands.Goal := build_goal [("n", "Nat"), ("m", "Nat")] "n + m = m + n"
|
||||||
|
proof_runner env {} (.copy "Nat.add_comm") [
|
||||||
|
proof_step 0 0 "intro n m"
|
||||||
|
(.success (.some 1) #[goal1]),
|
||||||
|
proof_step 1 0 "assumption"
|
||||||
|
(.failure #[s!"tactic 'assumption' failed\nn m : Nat\n⊢ n + m = m + n"]),
|
||||||
|
proof_step 1 0 "rw [Nat.add_comm]"
|
||||||
|
(.success .none #[])
|
||||||
|
]
|
||||||
|
def proof_nat_add_comm_manual (env: Lean.Environment): IO LSpec.TestSeq := do
|
||||||
|
let goal1: Commands.Goal := build_goal [("n", "Nat"), ("m", "Nat")] "n + m = m + n"
|
||||||
|
proof_runner env {} (.expr "∀ (a b: Nat), a + b = b + a") [
|
||||||
|
proof_step 0 0 "intro n m"
|
||||||
|
(.success (.some 1) #[goal1]),
|
||||||
|
proof_step 1 0 "assumption"
|
||||||
|
(.failure #[s!"tactic 'assumption' failed\nn m : Nat\n⊢ n + m = m + n"]),
|
||||||
|
proof_step 1 0 "rw [Nat.add_comm]"
|
||||||
|
(.success .none #[])
|
||||||
|
]
|
||||||
|
|
||||||
|
-- Two ways to write the same theorem
|
||||||
|
example: ∀ (p q: Prop), p ∨ q → q ∨ p := by
|
||||||
|
intro p q h
|
||||||
|
cases h
|
||||||
|
apply Or.inr
|
||||||
|
assumption
|
||||||
|
apply Or.inl
|
||||||
|
assumption
|
||||||
|
example: ∀ (p q: Prop), p ∨ q → q ∨ p := by
|
||||||
|
intro p q h
|
||||||
|
cases h
|
||||||
|
. apply Or.inr
|
||||||
|
assumption
|
||||||
|
. apply Or.inl
|
||||||
|
assumption
|
||||||
|
def proof_or_comm (env: Lean.Environment): IO LSpec.TestSeq := do
|
||||||
|
let typeProp: Commands.Expression := { pp? := .some "Prop" }
|
||||||
|
let branchGoal (caseName name: String): Commands.Goal := {
|
||||||
|
caseName? := .some caseName,
|
||||||
|
target := { pp? := .some "q ∨ p" },
|
||||||
|
vars := #[
|
||||||
|
{ name := "p", type? := .some typeProp, isInaccessible? := .some false },
|
||||||
|
{ name := "q", type? := .some typeProp, isInaccessible? := .some false },
|
||||||
|
{ name := "h✝", type? := .some { pp? := .some name }, isInaccessible? := .some true }
|
||||||
|
]
|
||||||
|
}
|
||||||
|
proof_runner env {} (.expr "∀ (p q: Prop), p ∨ q → q ∨ p") [
|
||||||
|
proof_step 0 0 "intro p q h"
|
||||||
|
(.success (.some 1) #[build_goal [("p", "Prop"), ("q", "Prop"), ("h", "p ∨ q")] "q ∨ p"]),
|
||||||
|
proof_step 1 0 "cases h"
|
||||||
|
(.success (.some 2) #[branchGoal "inl" "p", branchGoal "inr" "q"]),
|
||||||
|
proof_inspect #["", "0.0", "1.0"],
|
||||||
|
proof_step 2 0 "apply Or.inr"
|
||||||
|
(.success (.some 3) #[]),
|
||||||
|
proof_inspect #["", "0.0", "1.0", "2.0"],
|
||||||
|
proof_step 3 0 "assumption"
|
||||||
|
(.success .none #[]),
|
||||||
|
proof_step 2 1 "apply Or.inl"
|
||||||
|
(.success (.some 4) #[]),
|
||||||
|
proof_step 4 0 "assumption"
|
||||||
|
(.success .none #[]),
|
||||||
|
proof_inspect #["", "0.0", "1.0", "2.0", "2.1"]
|
||||||
|
]
|
||||||
|
|
||||||
|
example (w x y z : Nat) (p : Nat → Prop)
|
||||||
|
(h : p (x * y + z * w * x)) : p (x * w * z + y * x) := by
|
||||||
|
simp [Nat.add_assoc, Nat.add_comm, Nat.add_left_comm, Nat.mul_comm, Nat.mul_assoc, Nat.mul_left_comm] at *
|
||||||
|
assumption
|
||||||
|
def proof_arith_1 (env: Lean.Environment): IO LSpec.TestSeq := do
|
||||||
|
proof_runner env {} (.expr "∀ (w x y z : Nat) (p : Nat → Prop) (h : p (x * y + z * w * x)), p (x * w * z + y * x)") [
|
||||||
|
proof_step 0 0 "intros"
|
||||||
|
(.success (.some 1) #[]),
|
||||||
|
proof_step 1 0 "simp [Nat.add_assoc, Nat.add_comm, Nat.add_left_comm, Nat.mul_comm, Nat.mul_assoc, Nat.mul_left_comm] at *"
|
||||||
|
(.success (.some 2) #[]),
|
||||||
|
proof_step 2 0 "assumption"
|
||||||
|
(.success .none #[])
|
||||||
|
]
|
||||||
|
|
||||||
|
def build_goal_selective (nameType: List (String × Option String)) (target: String): Commands.Goal :=
|
||||||
|
{
|
||||||
|
target := { pp? := .some target},
|
||||||
|
vars := (nameType.map fun x => ({
|
||||||
|
name := x.fst,
|
||||||
|
type? := x.snd.map (λ type => { pp? := type }),
|
||||||
|
isInaccessible? := x.snd.map (λ _ => false)
|
||||||
|
})).toArray
|
||||||
|
}
|
||||||
|
def proof_delta_variable (env: Lean.Environment): IO LSpec.TestSeq := do
|
||||||
|
let goal1: Commands.Goal := build_goal_selective [("n", .some "Nat")] "∀ (b : Nat), n + b = b + n"
|
||||||
|
let goal2: Commands.Goal := build_goal_selective [("n", .none), ("m", .some "Nat")] "n + m = m + n"
|
||||||
|
proof_runner env { proofVariableDelta := true } (.expr "∀ (a b: Nat), a + b = b + a") [
|
||||||
|
proof_step 0 0 "intro n"
|
||||||
|
(.success (.some 1) #[goal1]),
|
||||||
|
proof_step 1 0 "intro m"
|
||||||
|
(.success (.some 2) #[goal2])
|
||||||
|
]
|
||||||
|
|
||||||
|
def test_proofs : IO LSpec.TestSeq := do
|
||||||
|
let env: Lean.Environment ← Lean.importModules
|
||||||
|
(imports := ["Init"].map (λ str => { module := str_to_name str, runtimeOnly := false }))
|
||||||
|
(opts := {})
|
||||||
|
(trustLevel := 1)
|
||||||
|
|
||||||
|
return LSpec.group "Proofs" $
|
||||||
|
(LSpec.group "Nat.add_comm" $ (← proof_nat_add_comm env)) ++
|
||||||
|
(LSpec.group "Nat.add_comm manual" $ (← proof_nat_add_comm_manual env)) ++
|
||||||
|
(LSpec.group "Or.comm" $ (← proof_or_comm env)) ++
|
||||||
|
(LSpec.group "Arithmetic 1" $ (← proof_arith_1 env)) ++
|
||||||
|
(LSpec.group "Delta variable" $ (← proof_delta_variable env))
|
||||||
|
|
||||||
|
end Pantograph.Test
|
||||||
|
|
|
@ -0,0 +1,76 @@
|
||||||
|
import LSpec
|
||||||
|
import Pantograph.Serial
|
||||||
|
import Pantograph.Symbols
|
||||||
|
|
||||||
|
namespace Pantograph.Test
|
||||||
|
|
||||||
|
open Pantograph
|
||||||
|
open Lean
|
||||||
|
|
||||||
|
deriving instance Repr, DecidableEq for Commands.BoundExpression
|
||||||
|
|
||||||
|
def test_str_to_name: LSpec.TestSeq :=
|
||||||
|
LSpec.test "Symbol parsing" (Name.str (.str (.str .anonymous "Lean") "Meta") "run" = Pantograph.str_to_name "Lean.Meta.run")
|
||||||
|
|
||||||
|
def test_expr_to_binder (env: Environment): IO LSpec.TestSeq := do
|
||||||
|
let entries: List (String × Commands.BoundExpression) := [
|
||||||
|
("Nat.add_comm", { binders := #[("n", "Nat"), ("m", "Nat")], target := "n + m = m + n" }),
|
||||||
|
("Nat.le_of_succ_le", { binders := #[("n", "Nat"), ("m", "Nat"), ("h", "Nat.succ n ≤ m")], target := "n ≤ m" })
|
||||||
|
]
|
||||||
|
let coreM := entries.foldlM (λ suites (symbol, target) => do
|
||||||
|
let env ← MonadEnv.getEnv
|
||||||
|
let expr := str_to_name symbol |> env.find? |>.get! |>.type
|
||||||
|
let test := LSpec.check symbol ((← type_expr_to_bound expr) = target)
|
||||||
|
return LSpec.TestSeq.append suites test) LSpec.TestSeq.done |>.run'
|
||||||
|
let coreContext: Core.Context := {
|
||||||
|
currNamespace := Lean.Name.str .anonymous "Aniva"
|
||||||
|
openDecls := [], -- No 'open' directives needed
|
||||||
|
fileName := "<Pantograph/Test>",
|
||||||
|
fileMap := { source := "", positions := #[0], lines := #[1] }
|
||||||
|
}
|
||||||
|
match ← (coreM.run' coreContext { env := env }).toBaseIO with
|
||||||
|
| .error exception =>
|
||||||
|
return LSpec.test "Exception" (s!"internal exception #{← exception.toMessageData.toString}" = "")
|
||||||
|
| .ok a => return a
|
||||||
|
|
||||||
|
def test_sexp_of_symbol (env: Environment): IO LSpec.TestSeq := do
|
||||||
|
let entries: List (String × String) := [
|
||||||
|
-- This one contains unhygienic variable names which must be suppressed
|
||||||
|
("Nat.add", "(:forall :anon (:c Nat) (:forall :anon (:c Nat) (:c Nat)))"),
|
||||||
|
-- These ones are normal and easy
|
||||||
|
("Nat.add_one", "(:forall n (:c Nat) ((((:c Eq) (:c Nat)) (((((((:c HAdd.hAdd) (:c Nat)) (:c Nat)) (:c Nat)) (((:c instHAdd) (:c Nat)) (:c instAddNat))) 0) ((((:c OfNat.ofNat) (:c Nat)) (:lit 1)) ((:c instOfNatNat) (:lit 1))))) ((:c Nat.succ) 0)))"),
|
||||||
|
("Nat.le_of_succ_le", "(:forall n (:c Nat) (:forall m (:c Nat) (:forall h (((((:c LE.le) (:c Nat)) (:c instLENat)) ((:c Nat.succ) 1)) 0) (((((:c LE.le) (:c Nat)) (:c instLENat)) 2) 1)) :implicit) :implicit)"),
|
||||||
|
-- Handling of higher order types
|
||||||
|
("Or", "(:forall a (:sort 0) (:forall b (:sort 0) (:sort 0)))"),
|
||||||
|
("List", "(:forall α (:sort (+ u 1)) (:sort (+ u 1)))")
|
||||||
|
]
|
||||||
|
let metaM: MetaM LSpec.TestSeq := entries.foldlM (λ suites (symbol, target) => do
|
||||||
|
let env ← MonadEnv.getEnv
|
||||||
|
let expr := str_to_name symbol |> env.find? |>.get! |>.type
|
||||||
|
let test := LSpec.check symbol ((← serialize_expression_ast expr) = target)
|
||||||
|
return LSpec.TestSeq.append suites test) LSpec.TestSeq.done |>.run'
|
||||||
|
let coreM := metaM.run'
|
||||||
|
let coreContext: Core.Context := {
|
||||||
|
currNamespace := Lean.Name.str .anonymous "Aniva"
|
||||||
|
openDecls := [], -- No 'open' directives needed
|
||||||
|
fileName := "<Pantograph/Test>",
|
||||||
|
fileMap := { source := "", positions := #[0], lines := #[1] }
|
||||||
|
}
|
||||||
|
match ← (coreM.run' coreContext { env := env }).toBaseIO with
|
||||||
|
| .error exception =>
|
||||||
|
return LSpec.test "Exception" (s!"internal exception #{← exception.toMessageData.toString}" = "")
|
||||||
|
| .ok a => return a
|
||||||
|
|
||||||
|
|
||||||
|
def test_serial: IO LSpec.TestSeq := do
|
||||||
|
let env: Environment ← importModules
|
||||||
|
(imports := ["Init"].map (λ str => { module := str_to_name str, runtimeOnly := false }))
|
||||||
|
(opts := {})
|
||||||
|
(trustLevel := 1)
|
||||||
|
|
||||||
|
return LSpec.group "Serialisation" $
|
||||||
|
(LSpec.group "str_to_name" test_str_to_name) ++
|
||||||
|
(LSpec.group "Expression binder" (← test_expr_to_binder env)) ++
|
||||||
|
(LSpec.group "Sexp from symbol" (← test_sexp_of_symbol env))
|
||||||
|
|
||||||
|
end Pantograph.Test
|
|
@ -0,0 +1,3 @@
|
||||||
|
#!/bin/bash
|
||||||
|
|
||||||
|
lake build test && lake env build/bin/test
|
|
@ -0,0 +1,73 @@
|
||||||
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||||
|
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||||
|
|
||||||
|
<svg
|
||||||
|
width="256"
|
||||||
|
height="256"
|
||||||
|
viewBox="0 0 55.900957 55.900957"
|
||||||
|
version="1.1"
|
||||||
|
id="svg21534"
|
||||||
|
xml:space="preserve"
|
||||||
|
inkscape:version="1.2.2 (b0a8486541, 2022-12-01)"
|
||||||
|
sodipodi:docname="icon.svg"
|
||||||
|
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||||
|
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||||
|
xmlns="http://www.w3.org/2000/svg"
|
||||||
|
xmlns:svg="http://www.w3.org/2000/svg"><sodipodi:namedview
|
||||||
|
id="namedview21536"
|
||||||
|
pagecolor="#ffffff"
|
||||||
|
bordercolor="#111111"
|
||||||
|
borderopacity="1"
|
||||||
|
inkscape:showpageshadow="0"
|
||||||
|
inkscape:pageopacity="0"
|
||||||
|
inkscape:pagecheckerboard="1"
|
||||||
|
inkscape:deskcolor="#d1d1d1"
|
||||||
|
inkscape:document-units="px"
|
||||||
|
showgrid="true"
|
||||||
|
inkscape:zoom="5.1754899"
|
||||||
|
inkscape:cx="158.82554"
|
||||||
|
inkscape:cy="91.682142"
|
||||||
|
inkscape:window-width="3777"
|
||||||
|
inkscape:window-height="2093"
|
||||||
|
inkscape:window-x="0"
|
||||||
|
inkscape:window-y="0"
|
||||||
|
inkscape:window-maximized="1"
|
||||||
|
inkscape:current-layer="layer1"><inkscape:grid
|
||||||
|
type="xygrid"
|
||||||
|
id="grid23833"
|
||||||
|
spacingx="3.4938098"
|
||||||
|
spacingy="3.4938098"
|
||||||
|
empspacing="4" /></sodipodi:namedview><defs
|
||||||
|
id="defs21531" /><g
|
||||||
|
inkscape:label="Layer 1"
|
||||||
|
inkscape:groupmode="layer"
|
||||||
|
id="layer1"><rect
|
||||||
|
style="fill:#3e3e3e;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.78013;stroke-miterlimit:3.4;stroke-dasharray:none"
|
||||||
|
id="rect26805"
|
||||||
|
width="11.502316"
|
||||||
|
height="2.2512667"
|
||||||
|
x="33.344425"
|
||||||
|
y="7.6690259"
|
||||||
|
ry="0.28140834"
|
||||||
|
rx="0.47926313" /><path
|
||||||
|
style="fill:#3e3e3e;stroke:none;stroke-width:0.218363px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;fill-opacity:1"
|
||||||
|
d="m 35.764667,9.9513013 c 0,0 -26.8581417,13.7987337 -28.0863506,14.9501437 -1.250042,1.171878 3.2347846,3.945325 3.2347846,3.945325 l 21.34979,14.934062 6.624567,0.453105 -27.599216,-17.304358 c 0,0 -0.603209,-0.08927 -0.600411,-0.762283 0.0028,-0.673015 27.32022,-16.4227356 27.32022,-16.4227356 z"
|
||||||
|
id="path27381"
|
||||||
|
sodipodi:nodetypes="csccccscc" /><path
|
||||||
|
style="fill:#3e3e3e;stroke:none;stroke-width:0.218363px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;fill-opacity:1"
|
||||||
|
d="M 10.97848,26.985751 40.537772,9.7943227 41.921795,9.7005084 11.210626,27.421377 Z"
|
||||||
|
id="path27479" /><path
|
||||||
|
style="fill:#3e3e3e;stroke:none;stroke-width:0.218363px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;fill-opacity:1"
|
||||||
|
d="m 7.0509847,25.522367 c -0.8266141,1.386819 -2.4011783,4.48805 -2.4706357,4.90223 -0.069458,0.414182 0.4434324,0.513474 0.8491061,0.757041 C 5.835129,31.425204 19.33424,43.917182 19.33424,43.917182 l 0.324562,-0.539228 c 0,0 -14.2055729,-12.369493 -14.0644435,-12.868167 0.1411292,-0.498672 3.544896,-3.777392 3.544896,-3.777392 L 7.4596884,25.117508 Z"
|
||||||
|
id="path27481" /><rect
|
||||||
|
style="fill:#3e3e3e;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2.11692;stroke-miterlimit:3.4;stroke-dasharray:none;stroke-opacity:1"
|
||||||
|
id="rect27483"
|
||||||
|
width="36.38942"
|
||||||
|
height="3.6217353"
|
||||||
|
x="13.953447"
|
||||||
|
y="43.009739"
|
||||||
|
rx="0.43672624"
|
||||||
|
ry="0.43672624" /><path
|
||||||
|
style="fill:none;stroke:#000000;stroke-width:0.218363px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||||
|
d="M -2.1119274,7.666599 H 64.179192"
|
||||||
|
id="path27487" /></g></svg>
|
After Width: | Height: | Size: 3.5 KiB |
|
@ -0,0 +1,33 @@
|
||||||
|
{"version": 4,
|
||||||
|
"packagesDir": "lake-packages",
|
||||||
|
"packages":
|
||||||
|
[{"git":
|
||||||
|
{"url": "https://github.com/lurk-lab/LSpec.git",
|
||||||
|
"subDir?": null,
|
||||||
|
"rev": "88f7d23e56a061d32c7173cea5befa4b2c248b41",
|
||||||
|
"name": "LSpec",
|
||||||
|
"inputRev?": "88f7d23e56a061d32c7173cea5befa4b2c248b41"}},
|
||||||
|
{"git":
|
||||||
|
{"url": "https://github.com/leanprover-community/mathlib4.git",
|
||||||
|
"subDir?": null,
|
||||||
|
"rev": "8e5a00a8afc8913c0584cb85f37951995275fd87",
|
||||||
|
"name": "mathlib",
|
||||||
|
"inputRev?": "8e5a00a8afc8913c0584cb85f37951995275fd87"}},
|
||||||
|
{"git":
|
||||||
|
{"url": "https://github.com/gebner/quote4",
|
||||||
|
"subDir?": null,
|
||||||
|
"rev": "c71f94e34c1cda52eef5c93dc9da409ab2727420",
|
||||||
|
"name": "Qq",
|
||||||
|
"inputRev?": "master"}},
|
||||||
|
{"git":
|
||||||
|
{"url": "https://github.com/JLimperg/aesop",
|
||||||
|
"subDir?": null,
|
||||||
|
"rev": "cdc00b640d0179910ebaa9c931e3b733a04b881c",
|
||||||
|
"name": "aesop",
|
||||||
|
"inputRev?": "master"}},
|
||||||
|
{"git":
|
||||||
|
{"url": "https://github.com/leanprover/std4",
|
||||||
|
"subDir?": null,
|
||||||
|
"rev": "6006307d2ceb8743fea7e00ba0036af8654d0347",
|
||||||
|
"name": "std",
|
||||||
|
"inputRev?": "main"}}]}
|
|
@ -1,19 +1,24 @@
|
||||||
import Lake
|
import Lake
|
||||||
open Lake DSL
|
open Lake DSL
|
||||||
|
|
||||||
|
package pantograph
|
||||||
package pantograph {
|
|
||||||
-- add package configuration options here
|
|
||||||
}
|
|
||||||
|
|
||||||
require mathlib from git
|
|
||||||
"https://github.com/leanprover-community/mathlib4.git" @ "8e5a00a8afc8913c0584cb85f37951995275fd87"
|
|
||||||
|
|
||||||
lean_lib Pantograph {
|
lean_lib Pantograph {
|
||||||
-- add library configuration options here
|
|
||||||
}
|
}
|
||||||
|
|
||||||
@[default_target]
|
@[default_target]
|
||||||
lean_exe pantograph {
|
lean_exe pantograph {
|
||||||
root := `Main
|
root := `Main
|
||||||
|
-- Somehow solves the native symbol not found problem
|
||||||
|
supportInterpreter := true
|
||||||
|
}
|
||||||
|
|
||||||
|
require LSpec from git
|
||||||
|
"https://github.com/lurk-lab/LSpec.git" @ "88f7d23e56a061d32c7173cea5befa4b2c248b41"
|
||||||
|
lean_lib Test {
|
||||||
|
}
|
||||||
|
lean_exe test {
|
||||||
|
root := `Test.Main
|
||||||
|
-- Somehow solves the native symbol not found problem
|
||||||
|
supportInterpreter := true
|
||||||
}
|
}
|
||||||
|
|
|
@ -1 +1 @@
|
||||||
leanprover/lean4:nightly-2023-05-06
|
leanprover/lean4:nightly-2023-08-12
|
||||||
|
|
Loading…
Reference in New Issue