Skip to content

Commit

Permalink
Merge pull request #874 from ICB-DCM/release_0.10.15
Browse files Browse the repository at this point in the history
Release 0.10.15

Bugfix release incorrect sensitivities w.r.t. sigmas introduced in 0.10.14.
  • Loading branch information
dweindl authored Dec 3, 2019
2 parents 6360bfe + b602ad2 commit d549d93
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion python/amici/sbml_import.py
Original file line number Diff line number Diff line change
Expand Up @@ -934,7 +934,7 @@ def processObservables(self, observables: Dict[str, Dict[str, str]],
# set user-provided sigmas
for iy, obsName in enumerate(observables):
if obsName in sigmas:
sigmaYValues[iy] = sigmas[obsName]
sigmaYValues[iy] = sp.Symbol(sigmas[obsName], real=True)

measurementYSyms = sp.Matrix(
[sp.symbols(f'm{symbol}', real=True) for symbol in observableSyms]
Expand Down
2 changes: 1 addition & 1 deletion version.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.10.14
0.10.15

0 comments on commit d549d93

Please sign in to comment.