Skip to content
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

Can I use this library to implement type elaboration? #24

Open
bglgwyng opened this issue Mar 22, 2025 · 0 comments
Open

Can I use this library to implement type elaboration? #24

bglgwyng opened this issue Mar 22, 2025 · 0 comments

Comments

@bglgwyng
Copy link

bglgwyng commented Mar 22, 2025

More specifically, I'm trying to implement Higher-Order Pattern Unification using propagator.
At first, I thought it would be straightforward, however after I played with holmes for a while now I'm a bit uncertain about this approach

To implement HOPU, I need to be able to add meta-variables dynamically, but Holmes demands that I initialize at the beginning by configuring Config. The solutions I think of are

  • use internal functions instead of satisfying and deal with MoriarT
  • use .>>=? It may not be used to introduce new metavars.

Also, I considered defining new semi-lattice definition that supports a recursive structure that can write a constraint like

Exactly (Unkown, Exactly 2) .== Exactly (Exactly 1, Unkown) -- imagine unifying (?1, 2) = (1, ?2)

which doesn't make sense in the current Defined. However, I'm not sure such a definition works well with propagator. From my understanding, the meta-variables should be flattened and put into the initial configuration for now.

Does anyone have ideas? Or do we have some examples of type checker based on propagator?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant