[Pomp-commits] r1068 - in pkg/pomp: . R

noreply at r-forge.r-project.org noreply at r-forge.r-project.org
Mon Feb 9 20:31:17 CET 2015


Author: kingaa
Date: 2015-02-09 20:31:17 +0100 (Mon, 09 Feb 2015)
New Revision: 1068

Modified:
   pkg/pomp/DESCRIPTION
   pkg/pomp/R/pomp.R
Log:
- fix bug in which any error in compilation on call to 'pomp' is not caught properly

Modified: pkg/pomp/DESCRIPTION
===================================================================
--- pkg/pomp/DESCRIPTION	2015-02-01 15:17:40 UTC (rev 1067)
+++ pkg/pomp/DESCRIPTION	2015-02-09 19:31:17 UTC (rev 1068)
@@ -1,8 +1,8 @@
 Package: pomp
 Type: Package
 Title: Statistical Inference for Partially Observed Markov Processes
-Version: 0.58-9
-Date: 2015-01-31
+Version: 0.58-10
+Date: 2015-02-09
 Authors at R: c(person(given=c("Aaron","A."),family="King",
 		role=c("aut","cre"),email="kingaa at umich.edu"),
 	  person(given=c("Edward","L."),family="Ionides",role=c("aut")),

Modified: pkg/pomp/R/pomp.R
===================================================================
--- pkg/pomp/R/pomp.R	2015-02-01 15:17:40 UTC (rev 1067)
+++ pkg/pomp/R/pomp.R	2015-02-09 19:31:17 UTC (rev 1068)
@@ -153,7 +153,7 @@
                            ),
                    silent=FALSE
                    )
-    if (inherits(PACKAGE,"try-error")) {
+    if (inherits(libname,"try-error")) {
       stop("error in building shared-object library from Csnippets")
     } else {
       .solibfile <- c(.solibfile,libname[2L])



More information about the pomp-commits mailing list