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 native SolutionArray / HDF support to C++ OneDim #1385
Add native SolutionArray / HDF support to C++ OneDim #1385
Changes from all commits
fdb43e3
23c09b7
7ab590e
90349a4
d4d56cb
4782c02
d5d1dc2
59e4194
28ce7b4
c56eabe
1a5dcc7
1c890eb
3758a6a
355fa1f
a29a826
1d7f137
5a9f85f
2af8662
c4363ac
1017b50
69f4c2d
542db8d
15a8422
8fa3656
4e1b8d0
a926764
91535c7
23d12d9
5410671
e113ed8
94990ea
998d28c
7c29a78
b9a552a
9503331
0849a23
cbe3fa2
97f793a
dbed7ed
28b567e
d00c17f
9c860c0
4df14db
73c4094
aef4de1
957740b
cd9f05a
8d6ca8e
66a122d
b65822a
1e577fb
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.
As mentioned elsewhere, I think we may be able to avoid needing to install the HighFive headers.
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.
I'm not sure that I am following: headers are required if Cantera is compiled from source (albeit only for HDF5 support in
Storage.cpp
)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.
If we have
#include
s of HighFive only from.cpp
files (as is currently the case), then those header files won't be needed to compile code that#include
s Cantera's public header files. But I guess installing these with Cantera is mostly harmless.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.
Based on the review comment, I believe it's ok to leave things as they are.