Fixes for named stoichiometries#1312
Merged
luciansmith merged 13 commits intodevelopfrom Mar 24, 2026
Merged
Conversation
The stoichiometry branch was failing all over the place; try to recreate the changes one by one instead.
It would work if we sent 'regenerateModel' the current SBML... but that breaks other things.
The fix has to go in LLVMModelGenerator.cpp, and the now-uncommented code has to go earlier.
Last time I got this close to working, calling steadyState twice didn't work. Now it does!
* Put stubs for init stoichiometries * Throw error on variable stoichiometries * Put stoichiometry names in ID list. * Allow 'init(n)' to set/get initial stoichiometries (which are actually unchanging: setting 'init' or not does the same thing) * Drop the function that claimed to set multiple stoichiometries, since it actually did not. * Add convenience function to get a particular stoichiometry id (either its name or "stoich(sp, rxn)") * Stoichiometry seletion record names fixed.
SAVE_STATE_21 was simply incorrect: it never should have worked. Technically, the test suite models that have an assignment rule that never changes will 'work' in roadrunner, but only coincidentally: the assignment rule is never evaluated in an context other than as an effective initial assignment. Model 1121 was another model like that; just switch to 1122 instead for the test (which wasn't supposed to be 'about' assigned stoichiometries anyway.)
This file contains hidden or 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
The stoichiometry branch was failing all over the place; try to recreate the changes one by one instead.