Branch unification #132
Labels
No Label
category
bug
category
chore
category
doc
category
feature
category
optimization
category
organization
part/Delation
part/Elab
part/Environment
part/FFI
part/Frontend
part/Goal
part/REPL
part/Serial
priority
high
priority
irrelevant
priority
low
priority
medium
No Milestone
No project
No Assignees
1 Participants
Notifications
Due Date
No due date set.
Depends on
#177 feat: Update `CoreM` options from parsed header
aniva/Pantograph
Reference: aniva/Pantograph#132
Loading…
Reference in New Issue
No description provided.
Delete Branch "%!s(<nil>)"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Can we merge two goal states from two different search paths?
This will probably involve some application of the
MetaTranslateM
monad. If a goal state has two children, their metavariable names may clash, and there would need to be a distinguishing factor to tell apart if the two children share a mvar because of their common ancestry or because of coincidence.Proof state mergerto Branch unificationUseful comment from
Environment.lean
:Note [Environment Branches]
The kernel environment type
Lean.Kernel.Environment
enforces a linear order on the addition ofdeclarations:
addDeclCore
takes an environment and returns a new one, assuming type checkingsucceeded. On the other hand, the metaprogramming-level
Lean.Environment
wrapper must allow forbranching environment transformations so that multiple declarations can be elaborated
concurrently while still being able to access information about preceding declarations that have
also been branched out as soon as they are available.
The basic function to introduce such branches is
addConstAsync
, which takes an environment andreturns a structure containing two environments: one for the "main" branch that can be used in
further branching and eventually contains all the declarations of the file and one for the "async"
branch that can be used concurrently to the main branch to elaborate and add the declaration for
which the branch was introduced. Branches are "joined" back together implicitly via the kernel
environment, which as mentioned cannot be changed concurrently: when the main branch first tries to
access it, evaluation is blocked until the kernel environment on the async branch is complete.
Thus adding two declarations A and B concurrently can be visualized like this:
While each edge represents a
Lean.Environment
that has its own view of the state of the module,the kernel environment really lives only in the right-most path, with all other paths merely holding
an unfulfilled
Task
representing it and where forcing that task leads to the back-edges joiningpaths back together.