Skip to content
This repository has been archived by the owner on Jul 17, 2024. It is now read-only.

Commit

Permalink
use getTime__ instead of gitTime()
Browse files Browse the repository at this point in the history
  • Loading branch information
mattfidler committed Jan 14, 2024
1 parent 31d49ac commit 137806a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/comp.c
Original file line number Diff line number Diff line change
Expand Up @@ -817,7 +817,7 @@ SEXP _rxode2parse_compC(SEXP in, SEXP mv) {
0.0, 0.0, 1.0, 0.0, 0.0);
}
Cc[i]= Cc[i]*sm;
time[i] = getTime(ind->ix[i], ind);
time[i] = getTime__(ind->ix[i], ind, 0);
}
SEXP dfNames = PROTECT(Rf_allocVector(STRSXP, 19)); pro++;
SEXP dfVals = PROTECT(Rf_allocVector(VECSXP, 19)); pro++;
Expand Down
2 changes: 1 addition & 1 deletion tests/testthat/test-nmtest.R
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ solveEqual <- function(id) {
geom_line(data=d, aes(time, cp), col="blue", lty=2, linewidth=1.2))
}

## solveEqual(1)
solveEqual(1)

solveEqual(2)

Expand Down

0 comments on commit 137806a

Please sign in to comment.