-
Notifications
You must be signed in to change notification settings - Fork 9
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
Feature: Add support for std::array parameters (Addresses issue #236) #244
Merged
nathanwbrei
merged 9 commits into
master
from
AyanRoy16-issue-236-Adding-array-in-Jparameter
Oct 2, 2023
Merged
Changes from all commits
Commits
Show all changes
9 commits
Select commit
Hold shift + click to select a range
476ef02
Adding array support in JParameterManager (90%) done
AyanRoy16 494f2d5
Minor test name change
AyanRoy16 d6cec80
Hopeful solution to template resolution conundrum
nathanwbrei aae225f
Demonstrate user override of parse(std::string, std::array<double,N>)
nathanwbrei 909b04f
Array of dynamic size (test cases are failing)
AyanRoy16 b504793
Merge branch 'AyanRoy16-issue-236-Adding-array-in-Jparameter' of http…
AyanRoy16 c24da69
Changing the test cases to incorporate the parse method
AyanRoy16 60197c8
Fix linking problem and excise ParseVector, etc
nathanwbrei 3de3221
Fixing the code for handling failed bool test cases
AyanRoy16 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
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.
It's probably fine here, but in general I'd advise against rearranging ugly logic unless it is truly necessary, particularly when parsing is involved. It's just so easy to introduce bugs or activate bugs that have been lying dormant. Particularly when our test cases are this light.