Skip to content

Commit

Permalink
Add fast compression
Browse files Browse the repository at this point in the history
  • Loading branch information
mattfidler committed Jan 11, 2024
1 parent a16e0cd commit 7655742
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 2 deletions.
2 changes: 1 addition & 1 deletion DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
Package: rxode2
Version: 2.1.1
Version: 2.1.1.9000
Title: Facilities for Simulating from ODE-Based Models
Authors@R: c(
person("Matthew L.","Fidler",
Expand Down
6 changes: 6 additions & 0 deletions NEWS.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
# rxode2 (development version)

## Other changes

- `rxUi` compression now defaults to fast compression

# rxode2 2.1.0

## Breaking changes
Expand Down
2 changes: 1 addition & 1 deletion R/ui.R
Original file line number Diff line number Diff line change
Expand Up @@ -445,7 +445,7 @@ rxUiDecompress <- function(ui) {
rxUiCompress <- function(ui) {
if (!inherits(ui, "rxUi")) return(ui)
if (is.environment(ui)) {
.ret <- qs::qserialize(ui)
.ret <- qs::qserialize(ui, preset="fast")
class(.ret) <- c("rxUi", "raw")
return(.ret)
}
Expand Down

0 comments on commit 7655742

Please sign in to comment.