We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
We also exhibit nontrivial formulae encoding confinement and liveness properties for a reflective higher-order variant of the π-calculus. -- LADL
The text was updated successfully, but these errors were encountered:
found the liveness formula:
µX.recv(⊤, x → X) | ⊤
in rholang, recv(n, x -> P) is for(x <- n) { P }
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 µ.
Sorry, something went wrong.
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 })
No branches or pull requests
The text was updated successfully, but these errors were encountered: