-
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
Candidate for 5.0.15 release #1036
Open
kushti
wants to merge
34
commits into
develop
Choose a base branch
from
v5.0.15
base: develop
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
34 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 00996ec
scrypto version updated
kushti f6288f7
Merge branch 'v5.0.15' of github.com:ScorexFoundation/sigmastate-inte…
kushti e6bf0f4
Merge pull request #976 from ergoplatform/i443
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 was deleted.
Oops, something went wrong.
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.
There is a problem with typing here. In a type like
Elem[V]
, the V should be a type of data value (Int, Long, Boolean, Coll, GroupElement). However, theV <: SType
part suggestsV
to be SInt, SLong, SBoolean, etc.The compiler is not complaining likely because of
.asInstanceOf[]
being used.It should be
..., e: Elem[V#WrappedType]) extends Def[V#WrappedType] ...