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

[meeting] [joint] 26.04.2024 #311

Open
deemp opened this issue Apr 26, 2024 · 0 comments
Open

[meeting] [joint] 26.04.2024 #311

deemp opened this issue Apr 26, 2024 · 0 comments

Comments

@deemp
Copy link
Member

deemp commented Apr 26, 2024

  1. Adoption should use B, not n_2? (to fix at least 3 counterexamples)
  2. R_COPY seems weird, why do we compute anything inside a formation?
  3. How should open recursion be modelled with ρ? (see below)
class A {
  Object f() { return this.g(); }
  Object g() { return 1; }
}

class B extends A {
  Object g() { return 2; }
}

class B1 {
  Object f() { return this.g(); }
  Object g() { return 2; }
}

class Main {
  void main() {
    A x = new B();
    x.f();
  }
}
⟦ t ↦ ⟦
    a ↦ ⟦ b ↦ ξ.ρ.c ⟧,
    c ↦ ∅
  ⟧,
  z ↦ t(c ↦ 42).a.b
⟧.z
⟦ t ↦ ⟦
    a ↦ ⟦ b ↦ ξ.ρ.c ⟧,
    c ↦ ∅
  ⟧,
  z ↦ ⟦ b ↦ ξ.ρ.c, ρ ↦ ⟦ c ↦ 42 ⟧ ⟧.b
⟧.z

⟦
  x ↦ 1,
  a ↦ ⟦ b ↦ ⟦ x ↦ ξ.ρ.x ⟧, x ↦ 2 ⟧,
  c ↦ ξ.a.b.x
⟧
  1. Work in progress:
  1. Reminders:
  1. TODO:
  • α0 instead of as-bytes for positional arguments; should this be handled by the normalizer or by eoc phi? (need to implement in normalizer)
  • metrics
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