-
Notifications
You must be signed in to change notification settings - Fork 2
Version 1.20260803.0 #591
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
Merged
Merged
Version 1.20260803.0 #591
Changes from all commits
Commits
Show all changes
14 commits
Select commit
Hold shift + click to select a range
6c5497c
Versioning: updated our scripts to use NZ time.
agarny 1a9b718
New version.
agarny 3f94ccc
Python: configure KINSOL linear solvers in tests.
agarny 53381fa
Added some simulation benchmarks.
agarny 9f0fb0c
Compiler: target the host CPU.
agarny cd8f9f9
Logger: optimised logger issue counts with atomics and restore errors…
agarny 4dc000e
CellmlFileRuntime: consolidated the different methods.
agarny 5d3e5bd
JavaScript: dispatch CellML runtime functions via WebAssembly table s…
agarny 680df87
ODE solvers: cache computeRates().
agarny 825320a
KINSOL: some minor cleaning up.
agarny 7d77d52
KINSOL: cache its internals.
agarny 23b7ae4
KINSOL: addressed some coverage issues.
agarny 993b896
JavaScript: updated our playground.
agarny 6f6b8a0
Spelling issues.
agarny 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 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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,10 +1,14 @@ | ||
| afterAll(() => { | ||
| <!-- BG CVS MVP + Finbar's ANS + Peter's Blood volume Ctl model --> | ||
| <!-- controlling and modulating the resistance by ANS | ||
| IssuePtrs mErrors; | ||
| return !mErrors.empty(); | ||
| return mErrors.size(); | ||
| return mErrors; | ||
| mErrors.push_back(issue); | ||
| mErrors.clear(); | ||
| if (pIndex >= mErrors.size()) { | ||
| return mErrors[pIndex]; | ||
| mErrors.push_back(std::move(issue)); | ||
| mErrors.clear(); | ||
| mTasksErrors = mErrors; | ||
| mErrors.clear(); | ||
| // Note: the clearing of mIssues, mErrors, and mWarnings could be done using removeAllIssues(), but this would | ||
| mErrors = mTasksErrors; | ||
| mErrorCount.store(mErrors.size(), std::memory_order_release); | ||
| if ((document->getNumErrors() == 0) |
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1 +1 @@ | ||
| 1.20260723.2 | ||
| 1.20260803.0 |
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
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
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
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
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
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
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
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
Oops, something went wrong.
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.
Uh oh!
There was an error while loading. Please reload this page.