-
Notifications
You must be signed in to change notification settings - Fork 41
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
Finish executeFromVar implementation #976
Merged
Changes from all commits
Commits
Show all changes
32 commits
Select commit
Hold shift + click to select a range
6241e86
6.0.0 version set in readme
kushti 727ed8d
evolution version
kushti 048add3
comments fixed
kushti e7e4c1d
Merge pull request #939 from ScorexFoundation/v6.0.0-activation
kushti be98cc8
Merge branch 'master' into v6.0.0
kushti f985679
versioned tests
kushti fbaaa13
merging w. 5.0.14 RC
kushti 0216468
Merge branch 'v5.0.14-RC' of github.com:ScorexFoundation/sigmastate-i…
kushti 815b224
importing tonbits method for playing with
kushti 4fc62c6
version test for nbits
kushti 72814c0
merging w. develop
kushti 98e2756
moving failing test from #612 to here
kushti 038afc7
Merge branch 'develop' of github.com:ScorexFoundation/sigmastate-inte…
kushti 2c6bd15
Merge branch 'v6.0.0' of github.com:ScorexFoundation/sigmastate-inter…
kushti 624558f
executeFromVar tests are passing
kushti 690a3e2
Global.deserialize method
kushti 023ad09
deserialize int - test passing
kushti 7648182
unused code removal
kushti 79b4d11
executeFromVar is passing for SigmaProp
kushti a470406
more executeFromVar and deserialize tests, all passing
kushti c1947d4
negative test for DeserializeContext in executeFromVar, new stubs for…
kushti cec0add
long roundtrip
kushti 838a617
box rouundtrip test
kushti fd589a8
bigInt test
kushti 4404741
Short test
kushti 7d69ebc
group elem impl & test
kushti 48f112a
sigmaprop test & impl
kushti 63f8ccc
non evaluated sigmaprop test
kushti 516f05d
avltree test & impl
kushti 9b2d56e
removing 6.0 related code
kushti d4d77f8
merging w. develop, Scaladoc
kushti f6288f7
Merge branch 'v5.0.15' of github.com:ScorexFoundation/sigmastate-inte…
kushti File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The connection between SType and Elem[T] is a bit more nuanced.
V <: SType corresponds to Elem[V#WrappedType], in other words, V is a descriptor for V#WrappedType and Elem[T] is a descriptor for T.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
What does that mean ? What do you propose?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It should be
e: Elem[V#WrappedType]
.There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Isn't the type right for e.g. Coll[Byte]: CollElem<Coll[Byte]> ?