Skip to content

Commit c51efee

Browse files
authored
Merge pull request #306 from mrc-ide/mrc-4636
2 parents 09dea08 + cd084e7 commit c51efee

File tree

3 files changed

+4
-2
lines changed

3 files changed

+4
-2
lines changed

DESCRIPTION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Package: odin
22
Title: ODE Generation and Integration
3-
Version: 1.5.8
3+
Version: 1.5.9
44
Authors@R: c(person("Rich", "FitzJohn", role = c("aut", "cre"),
55
email = "rich.fitzjohn@gmail.com"),
66
person("Thibaut", "Jombart", role = "ctb"),

R/ir_serialise.R

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -265,6 +265,8 @@ ir_serialise_expression <- function(expr) {
265265
jsonlite::unbox(as.character(expr))
266266
} else if (is.atomic(expr)) {
267267
jsonlite::unbox(expr)
268+
} else if (is.null(expr)) {
269+
NULL
268270
} else if (is.call(expr)) {
269271
c(list(jsonlite::unbox(as.character(expr[[1L]]))),
270272
lapply(expr[-1L], ir_serialise_expression))

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,7 @@ In other languages:
131131

132132
* [`Paraiso`](https://hackage.haskell.org/package/Paraiso) in Haskell
133133
* [`VFGEN`](https://github.com/WarrenWeckesser/vfgen) in C++
134-
* [`pygom`](https://github.com/PublicHealthEngland/pygom) in Python for solving compartmental models
134+
* [`pygom`](https://github.com/ukhsa-collaboration/pygom) in Python for solving compartmental models
135135

136136
## Installation
137137

0 commit comments

Comments
 (0)