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.
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
Add the LFController unit tests #46
Add the LFController unit tests #46
Changes from all commits
3ae60ce
3411e2b
9bb4851
2dd175c
71c4dcb
a5fb97e
8e57ee4
3090752
0e4a8e8
af2cc97
fff3c54
c0a4331
8be4dbe
b8b0af5
0a16c43
2010a10
cb13cdc
ba9e6d4
590e839
9d49491
9e9b9a7
4d6ef41
9cb7ec0
463ec79
9fadb46
fa4fa02
aef647a
332796b
e707f4e
47bc072
4d3478b
4f33f62
0ddd46c
d9e43b6
d24269c
d323484
28d0bbd
fde8554
c37c6b1
99b399c
e0c4838
eac4e70
0e8622c
1f33867
3b323f2
758fba3
ddcf5b0
1a998db
d625e6a
e3d6482
1de6d9e
8f2c6ef
bf2e2b5
ea21689
efb8c80
b5a5149
3c677f1
fc9e52b
554d46d
2b3def1
2049ffe
7b939b7
7200daa
80dac66
ad767dc
File filter
Filter by extension
Conversations
Jump to
There are no files selected for viewing
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.
Shouldn't at least one of those have
+1
? It seems that you are leaving value in bottom right corner unset. Even though it is very minor issue I think it would be nice to fix itThere 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.
No, because of the
Grow()
above, the sizes match.It's the opposite in fact, we are updating the bottom right element twice, but I'd say that it's not very important.
Also I guess Eigen would have report a size mismatch if it was the case (not sure ?).
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.
At this point, I am also not 100% sure, but I wouldn't assume it's all fine. When you compile in
RelWithDebInfo
orRelease
I think Eigen is stopping dynamic size checking. Maybe a good idea would to enforce that tests are build inDebug
so that all possible asserts will be triggered. From my experience ifDebug
works all the rest will as wellThis file was deleted.