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

New syntax #6

Merged
merged 4 commits into from
Mar 7, 2024
Merged

Conversation

uncomputable
Copy link
Collaborator

No description provided.

@uncomputable uncomputable force-pushed the new-design branch 2 times, most recently from cf69857 to d61319a Compare February 24, 2024 13:31

Simphony code is valid Rust code _(assuming that used types, functions and constants are imported)_.

Writing sum values as `Either<A, B>` instead of `A + B` might seem pointless or verbose.
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

+1

@sanket1729
Copy link
Member

I like the direction this is going towards. What does the [dosn't work] mean in section titles, do other programs compile/translate with the current rust-simplicity master?


The list type `[A; N]` can hold up to `N` values of type `A` where `N` is a positive integer.

We need to know the list size at commit time, so `N` will be somewhat large. There will likely be parts of the list that are unpopulated at redeem time. The definition of `[A; N]` as nested option-pairs keeps the onchain footprint small, since the unpopulated parts don't contribute extra bits to the onchain encoding.
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Honestly I'd be tempted to use the syntax List<A, N> rather than [A; N] to emphasize that this is something weird and not very array-like. In particular it has linear access time.

Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

List<A, N> might be for the best. Originally I called this type "arrays" which is where [A; N] comes from. However, the values of this type have different lengths up to a maximum, so I renamed the type to "list".


Expression `jet_j` where `j` is the name of a jet with source type `()`.

Expression `jet_j e` where `j` is the name of a jet with source type other than `()`, and `e` is an expression.
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Should we use jet_j(e) to make Rust programmers more comfortable?

Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I will make it jet_j(e) where e = (e1, ..., eN) can be shortened to e1, ..., eN and e = () can be shorted to e = ε (empty string).

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Yeah, I think that's reasonable.

});
```

# Compute sum of array [DOESN'T WORK]
Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

What does the [dosn't work] mean in section titles

This is a reminder for myself that my Simplicity translation of list iteration doesn't work. This document is about syntax, but I like to have syntax grounded in a translation that might work.

@uncomputable uncomputable force-pushed the new-design branch 6 times, most recently from 13487b6 to bc9fcf0 Compare February 29, 2024 06:47
@uncomputable
Copy link
Collaborator Author

Let's finalize a minimum-viable Simphony syntax + semantics without loops. The documentation is pretty much finished. Feel free to comment. I will start modifying the code base.

One open question is what {scoping} does. The syntax has rules like e1; e2. Are the {brackets} required to show precedence of operations, as in (1 + 2) * 3?

@apoelstra
Copy link
Contributor

@uncomputable I think scoping should affect the let statement, which assigns name(s) to expressions. Any names that appear within { and } should be invisible outside of them.

Similarly these names should be invisible before the let statement.

@apoelstra
Copy link
Contributor

We probably need to tweak the context in some subtle way to handle this (maybe just having a stack of contexts where } pops everything off since the last {?

These braces shouldn't have anything to do with precedence -- only ( ) parens should.

@apoelstra
Copy link
Contributor

ACK bc9fcf0 other than the above comments.

Note that I only skimmed some of the notation-heavy descriptions of the contexts and translations.

We are missing lists and loops entirely. Should defer these to a followup PR as you say.

@uncomputable uncomputable merged commit 04468e8 into BlockstreamResearch:master Mar 7, 2024
@uncomputable uncomputable deleted the new-design branch March 7, 2024 06:08
This was referenced Mar 7, 2024
uncomputable added a commit that referenced this pull request Mar 14, 2024
e6bca9e Grammar: Add Boolean type (Christian Lewe)
44320ad Grammar: Add None | Some match patterns (Christian Lewe)
a30e595 Example: Add match (Christian Lewe)
c5fd65e Grammar: Add match expressions (Christian Lewe)
92d4ebb Grammar: Remove witness declarations (Christian Lewe)
31428f8 Parse: Add WitnessName struct (Christian Lewe)
dbf7046 Parse: Add Identifier struct (Christian Lewe)
c375e0b Grammar: Update function calls (Christian Lewe)
a8c23c0 Example: Update OP_CAT (Christian Lewe)
53ff1e0 Parse: Bit strings (Christian Lewe)
fd22e34 Parse: Byte strings (Christian Lewe)
5b510a4 Grammar: Update expressions (Christian Lewe)
59a2723 Grammar: Remove destruct_pair (Christian Lewe)
41c2649 Grammar: Update patterns (Christian Lewe)
ad19b1c Grammar: Update types (Christian Lewe)
530f78f Parse: Assert rule types (Christian Lewe)
e687ea2 Grammar: Add line comments (Christian Lewe)
0929716 Grammar: Update whitespace (Christian Lewe)
2396560 Cargo: Include rust-miniscript 11 (Christian Lewe)
536d60b Cargo: Use rust-simplicity 0.2.0 (Christian Lewe)

Pull request description:

  Implementation of new syntax and semantics from #6: types, values, match statements, unwraps.

  The Simplicity compiler panics on every error, as on master. I will fix this in a follow-up PR.

  Types and patterns are parsed nonrecursively. Expressions are more complicated and are currently parsed recursively. There will be a follow-up PR.

ACKs for top commit:
  apoelstra:
    utACK e6bca9e

Tree-SHA512: 831ee92fd585183b468abe574b142eb78c6181f485aedff0acb70f4feb3389bdbb603720e828a9f8dc66739d314696fec40621bf32b514b14f190e0bf76274c6
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

Successfully merging this pull request may close these issues.

3 participants