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

Commit

Permalink
update last Rprintf()
Browse files Browse the repository at this point in the history
  • Loading branch information
mattfidler committed Jan 29, 2024
1 parent 94be647 commit 795de08
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 6 deletions.
7 changes: 3 additions & 4 deletions cran-comments.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
# Cran comments

- Fixes the issues requested flagged by CRAN
- Also changes solving structure; The reverse dependencies
rxode2random rxode2et and rxode2 need updates after this
- Once updated the rxode2 reverse dependencies all successfully check
- Fixes the m1mac issues flagged by CRAN, including the overlooked issue on 1323:19
- Removes solved systems with gradients for intel c++ compilers (because they didn't compile)
- Have updated reverse dependencies to check if linear compartment solutions are present before running tests
4 changes: 2 additions & 2 deletions src/etTran.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1320,10 +1320,10 @@ List etTransParse(List inData, List mv, bool addCmt=false,
Rf_setAttrib(dvidTrans, R_ClassSymbol, wrap("data.frame"));
Rf_setAttrib(dvidTrans, R_RowNamesSymbol,
IntegerVector::create(NA_INTEGER, -dvidDF.size()));
Rprintf(_("'DVID'/'CMT' translation:\n"));
Rprintf("%s", _("'DVID'/'CMT' translation:\n"));
print(dvidTrans);
if (dvidCol != -1){
Rprintf(("'DVID': %d\t"), inDvid[i]);
Rprintf("'DVID': %d\t", inDvid[i]);
}
Rprintf("'CMT': %d\n", cmt);
stop(_("'dvid'->'cmt' or 'cmt' on observation record on a undefined compartment (use 'cmt()' 'dvid()') id: %s row: %d"),
Expand Down

0 comments on commit 795de08

Please sign in to comment.