-
Notifications
You must be signed in to change notification settings - Fork 991
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
forderv handles complex input #3701
Merged
Merged
Changes from all commits
Commits
Show all changes
33 commits
Select commit
Hold shift + click to select a range
73a63ca
Closes #1444 -- setkey works on tables with complex columns
bdce4a5
extra test for group operation mentioned in issue
e6533dc
new tests for coverage
c210ede
missing arg
55bd501
Closes #1703 -- forderv handles complex input
2e8c996
slight re-tooling, now passing tests
e3a6aa6
more progress; but stonewalled by bmerge
37e8431
Merge branch 'master' of https://github.com/Rdatatable/data.table int…
52bcac0
moved new logic to C so e.g. bmerge can call it from there
bf59da2
some coverage tests, extension to rleid()
09c8b19
progress making ctwiddle (dtwiddle for cplx)
e5d1d1d
start preferring Rcomplex type
9a4cef4
switch to Rcomplex API
494468f
Merge branch 'master' of https://github.com/Rdatatable/data.table int…
e0b17b8
Merge branch 'cplx_setkey' into cplx_forder
761fe90
setkey now works on complex columns
7261011
ostensibly done uniqlist; progress on bmerge
25cdf0d
Merge branch 'master' into cplx_forder
681ab5d
Merge branch 'master' into cplx_forder
mattdowle 81a941a
Merge branch 'master' into cplx_forder
mattdowle 5f443cb
scale back attempts at bmerge, all of uniqlist
b922ee9
tidy up tests
b656541
unique also works
3c3228b
updated NEWS item & added coverage tests
009935c
one more nocov
f59dc57
actually hit LGLSXP branch!
0338226
more coverage
523ab00
Merge branch 'master' into cplx_forder
598097b
use direct double comparison instead of type punning
2df22a3
replaced big block with smaller modification to the main loop; also h…
mattdowle dd7b24a
memcmp for complex instead of == on double
mattdowle 5e81694
merge master
mattdowle a9d9165
news item tidy
mattdowle 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
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.
this
if
is redundant & contradictory -- just a few lines earlier (L47) hasif (!length(cols))
as awarning
. I guess this branch was some leftover or copy/paste fromsetkey
... revealed by Codecov