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

use cases: confinement, liveness from Namespaces, LADL #8

Open
dckc opened this issue Feb 26, 2019 · 2 comments
Open

use cases: confinement, liveness from Namespaces, LADL #8

dckc opened this issue Feb 26, 2019 · 2 comments

Comments

@dckc
Copy link
Collaborator

dckc commented Feb 26, 2019

We also exhibit nontrivial formulae encoding confinement and liveness properties for a reflective
higher-order variant of the π-calculus.
-- LADL

@dckc
Copy link
Collaborator Author

dckc commented Feb 27, 2019

found the liveness formula:

µX.recv(⊤, x → X) | ⊤

in rholang, recv(n, x -> P) is for(x <- n) { P }

So... inferring implicit quotation of ⊤ when used in a name context, this is something like...

µX.for(x <- @True) { X } | True

but I'm not sure what to do with µ.

@dckc
Copy link
Collaborator Author

dckc commented Feb 27, 2019

firewall / confinement:

µX.recv(“φ”, x → (X ∨ 0) | ¬recv(“¬φ”, ⊤)) | ¬recv(“¬φ”, ⊤)

type Firewall(phi) = mu X. for(x <- phi) { X or Zero  | Not(for(_ <- @Not(phi)) { True }) }
   | Not(for(_ <- @Not(phi) ) { True })

@dckc dckc changed the title use cases: confinement, liveness from LADL use cases: confinement, liveness from Namespaces, LADL Feb 27, 2019
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