-
Notifications
You must be signed in to change notification settings - Fork 0
feat: add mixed equilibrium and kinetic reactions #4
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
Conversation
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## main #4 +/- ##
==========================================
Coverage 100.00% 100.00%
==========================================
Files 13 17 +4
Lines 520 713 +193
==========================================
+ Hits 520 713 +193 ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
…ini/mixed-reactions
|
this is now ready for review and potentially to be merged. |
| constexpr CArrayWrapper( CArrayWrapper const & src ) | ||
| { | ||
| for( std::size_t i = 0; i < DIM0; i++ ) | ||
| { | ||
| data[i] = src.data[i]; | ||
| } | ||
| } |
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.
was this used?
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 added these copy constructors so that I could do this:
| m_stoichiometricMatrix( stoichiometricMatrix ), |
Can't remembe if it's also done for 1d arrays.
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.
looks like it is here:
| m_rateConstantForward( rateConstantForward ), |
No description provided.