[Pomp-commits] r1187 - pkg/pomp/man www/vignettes

noreply at r-forge.r-project.org noreply at r-forge.r-project.org
Fri Jun 5 18:10:05 CEST 2015


Author: kingaa
Date: 2015-06-05 18:10:04 +0200 (Fri, 05 Jun 2015)
New Revision: 1187

Added:
   pkg/pomp/man/package.Rd
Removed:
   pkg/pomp/man/pomp-package.Rd
Modified:
   pkg/pomp/man/mif2.Rd
   pkg/pomp/man/plugins.Rd
   pkg/pomp/man/pomp.Rd
   pkg/pomp/man/spect.Rd
   www/vignettes/pomp.pdf
Log:
- fix up the help pages

Modified: pkg/pomp/man/mif2.Rd
===================================================================
--- pkg/pomp/man/mif2.Rd	2015-06-05 13:19:40 UTC (rev 1186)
+++ pkg/pomp/man/mif2.Rd	2015-06-05 16:10:04 UTC (rev 1187)
@@ -60,7 +60,7 @@
   \item{start}{
     named numerical vector;
     the starting guess of the parameters.
-    By default, \code{start=coef(object)}.
+    By default, \preformatted{start=coef(object).}
   }
   \item{Np}{
     the number of particles to use in filtering.

Copied: pkg/pomp/man/package.Rd (from rev 1186, pkg/pomp/man/pomp-package.Rd)
===================================================================
--- pkg/pomp/man/package.Rd	                        (rev 0)
+++ pkg/pomp/man/package.Rd	2015-06-05 16:10:04 UTC (rev 1187)
@@ -0,0 +1,76 @@
+\name{pomp-package}
+\title{Inference for partially observed Markov processes}
+\docType{package}
+\alias{The pomp package}
+\alias{pomp-package}
+\alias{pomp package}
+\description{
+  The \pkg{pomp} package provides facilities for inference on time series data using partially-observed Markov process (\acronym{POMP}) models.
+  These models are also known as state-space models or nonlinear stochastic dynamical systems.
+  One can use \pkg{pomp} to fit nonlinear, non-Gaussian dynamic models to time-series data.
+  The package is both a set of tools for data analysis and a platform upon which statistical inference methods for \acronym{POMP} models can be implemented.
+}
+\section{Data analysis using \pkg{pomp}}{
+  The first step in using \pkg{pomp} is to encode one's model(s) and data in objects of class \code{pomp}.
+  One does this via a call to \code{\link{pomp}}, which involves specifying the unobserved state process and the measurement process of the model.
+  Details on this are given in the documentation for the \code{\link{pomp}} constructor function.
+  Examples are given in the tutorials on the \href{http://pomp.r-forge.r-project.org}{package website}, in the demos (\code{demo(package='pomp')}), and via the \code{\link{pompExample}} function.
+
+  \pkg{pomp} version \Sexpr[echo=F,stage=install,results=text]{packageDescription("pomp",fields="Version")} provides algorithms for
+  \enumerate{
+    \item simulation of stochastic dynamical systems; see \code{\link[=simulate-pomp]{simulate}}
+    \item particle filtering (AKA sequential Monte Carlo or sequential importance sampling); see \code{\link{pfilter}}
+    \item the iterated filtering methods of Ionides et al. (2006, 2011, 2015);
+    see \code{\link{mif}} and \code{\link{mif2}}
+    \item the nonlinear forecasting algorithm of Kendall et al. (2005); see \code{\link{nlf}}
+    \item the particle MCMC approach of Andrieu et al. (2010); see \code{\link{pmcmc}}
+    \item the probe-matching method of Kendall et al. (1999, 2005); see \code{\link{probe.match}}
+    \item a spectral probe-matching method (Reuman et al. 2006, 2008); see \code{\link{spect.match}}
+    \item synthetic likelihood a la Wood (2010); see \code{\link{probe}}
+    \item approximate Bayesian computation (Toni et al. 2009); see \code{\link{abc}}
+    \item the approximate Bayesian sequential Monte Carlo scheme of Liu & West (2001); see \code{\link{bsmc}}
+    \item simple trajectory matching; see \code{\link{traj.match}}.
+  }
+  The package also provides various tools for plotting and extracting information on models and data.
+}
+\section{Developing inference tools on the \pkg{pomp} platform}{
+  \pkg{pomp} provides a very general interface to the components of \acronym{POMP} models.
+  All the inference algorithms in \pkg{pomp} interact with the models and data via this interface.
+  One goal of the \pkg{pomp} project has been to facilitate the development of new algorithms in an environment where they can be tested and compared on a growing body of models and datasets.
+  
+  The low-level interface relevant to developers is documented \link[=rprocess]{here}.
+}
+\section{Comments, bug reports, feature requests}{
+  Contributions are welcome, as are comments, feature requests, and bug reports.
+  See the package website \url{http://pomp.r-forge.r-project.org} for more information, access to the package mailing list, links to the authors' websites, references to the literature, and up-to-date versions of the package source and documentation.
+}
+\section{Documentation}{
+  A number of tutorials, demonstrating the construction of \code{pomp} objects and the application of various inference algorithms, are available on the package homepage: \url{http://pomp.r-forge.r-project.org}.
+  Several examples of the construction of \code{pomp} objects are provided with the package and are documented in the help pages: to view a full list of these, execute \code{pompExample()}.
+  In addition, there are a number of demos, which can be viewed by executing \code{demo(package="pomp")}.
+}    
+\section{History}{
+  Much of the groundwork for \pkg{pomp} was laid by a working group of the National Center for Ecological Analysis and Synthesis (\acronym{NCEAS}), \dQuote{Inference for Mechanistic Models}.
+}
+\section{License}{
+  \pkg{pomp} is provided under the \acronym{GNU} Public License (\acronym{GPL}).
+}
+\references{
+  See the package website, \url{http://pomp.r-forge.r-project.org}, for the references.
+}
+\author{Aaron A. King \email{kingaa at umich dot edu}}
+\seealso{
+  \code{\link{pomp}},
+  \link{pomp low-level interface}, 
+  \code{\link{pfilter}},
+  \code{\link[=simulate-pomp]{simulate}},
+  \code{\link{mif}},
+  \code{\link{nlf}},
+  \code{\link{probe}},
+  \code{\link{traj.match}},
+  \code{\link{bsmc2}},
+  \code{\link{pmcmc}}
+}
+\keyword{models}
+\keyword{datasets}
+\keyword{ts}

Modified: pkg/pomp/man/plugins.Rd
===================================================================
--- pkg/pomp/man/plugins.Rd	2015-06-05 13:19:40 UTC (rev 1186)
+++ pkg/pomp/man/plugins.Rd	2015-06-05 16:10:04 UTC (rev 1187)
@@ -31,7 +31,7 @@
     \code{params} is a named numeric vector containing parameters,
     and \code{delta.t} is the length of the Euler time-step.
 
-    If \code{step.fun} is the name of a native function, it must be of type \code{pomp_onestep_sim} as defined in the header file \file{pomp.h}, which is included with the \pkg{pomp} package.
+    If \code{step.fun} is the name of a native function, it must be of type \preformatted{pomp_onestep_sim} as defined in the header file \file{pomp.h}, which is included with the \pkg{pomp} package.
     Do \preformatted{file.show(system.file("include/pomp.h",package="pomp"))} to view this header file.
     For details on how to write such codes, see Details.
   }
@@ -44,7 +44,7 @@
 
     For examples on the use of \code{\link{Csnippet}} to write fast simulators easily, see tutorials on the \href{http://pomp.r-forge.r-project.org}{package website}.
 
-    If \code{rate.fun} is a native function, it must be of type \code{pomp_ssa_rate_fn} as defined in the header \file{pomp.h}, which is included with the package.
+    If \code{rate.fun} is a native function, it must be of type \preformatted{pomp_ssa_rate_fn} as defined in the header \file{pomp.h}, which is included with the package.
     For details on how to write such codes, see Details.
   }
   \item{v, d}{
@@ -62,7 +62,7 @@
     Here, \code{x1} and \code{x2} are named numeric vectors containing the values of the state process at times \code{t1} and \code{t2},
     \code{params} is a named numeric vector containing parameters.
 
-    If \code{dens.fun} is the name of a native function, it should be of type \code{pomp_onestep_pdf} as defined in the header \file{pomp.h}, which is included with the \pkg{pomp} package.
+    If \code{dens.fun} is the name of a native function, it should be of type \preformatted{pomp_onestep_pdf} as defined in the header \file{pomp.h}, which is included with the \pkg{pomp} package.
     This function should return the log likelihood of a transition from \code{x1} at time \code{t1} to \code{x2} at time \code{t2}, assuming that no intervening transitions have occurred.
     For details on how to write such codes, see Details.
   }
@@ -101,7 +101,7 @@
   This is accomplished via interpolation of the user-supplied covariate table.
   Additional arguments may be given: these will be filled by the correspondingly-named elements in the \code{userdata} slot of the \code{pomp} object (see \code{\link{pomp}}).
 
-  If \code{step.fun} is written in a native language, it must be a function of type \code{pomp_onestep_sim} as specified in the header \file{pomp.h} included with the package.
+  If \code{step.fun} is written in a native language, it must be a function of type \preformatted{pomp_onestep_sim} as specified in the header \file{pomp.h} included with the package.
   Execute \preformatted{file.show(system.file("include/pomp.h",package="pomp.h"))} to view this file.
 
   If \code{rate.fun} is written as an \R function, it must have at least the arguments \code{j}, \code{x}, \code{t}, \code{params}, and \code{\dots}.
@@ -110,7 +110,7 @@
   \code{params} is a named vector containing parameters.
   If the argument \code{covars} is included and a covariate table has been included in the \code{pomp} object, then on a call to this function, \code{covars} will be filled with the values, at time \code{t}, of the covariates.
   This is accomplished via interpolation of the covariate table.
-  If \code{rate.fun} is a native function, it must be of type \code{pomp_ssa_rate_fn} as defined in the header \file{pomp.h}; see above for instructions on how to view this file.
+  If \code{rate.fun} is a native function, it must be of type \preformatted{pomp_ssa_rate_fn} as defined in the header \file{pomp.h}; see above for instructions on how to view this file.
   
   In writing \code{dens.fun}, you must assume that no state transitions have occurred between \code{t1} and \code{t2}.
   If \code{dens.fun} is written as an \R function, it must have at least the arguments \code{x1}, \code{x2}, \code{t1}, \code{t2}, \code{params}, and \code{\dots}.
@@ -120,7 +120,7 @@
   If the argument \code{covars} is included and a covariate table has been included in the \code{pomp} object, then on a call to this function, \code{covars} will be filled with the values, at time \code{t1}, of the covariates.
   This is accomplished via interpolation of the covariate table.
   As above, any additional arguments will be filled by the correspondingly-named elements in the \code{userdata} slot of the \code{pomp} object (see \code{\link{pomp}}).
-  If \code{dens.fun} is written in a native language, it must be a function of type \code{pomp_onestep_pdf} as defined in the header \file{pomp.h} included with the package; see above for instructions on how to view this file.
+  If \code{dens.fun} is written in a native language, it must be a function of type \preformatted{pomp_onestep_pdf} as defined in the header \file{pomp.h} included with the package; see above for instructions on how to view this file.
 }
 \value{
   \code{onestep.sim}, \code{euler.sim}, \code{discrete.time.sim}, and \code{gillespie.sim} each return functions suitable for use as the argument \code{rprocess} argument in \code{\link{pomp}}.

Deleted: pkg/pomp/man/pomp-package.Rd
===================================================================
--- pkg/pomp/man/pomp-package.Rd	2015-06-05 13:19:40 UTC (rev 1186)
+++ pkg/pomp/man/pomp-package.Rd	2015-06-05 16:10:04 UTC (rev 1187)
@@ -1,75 +0,0 @@
-\name{pomp-package}
-\title{Inference for partially observed Markov processes}
-\docType{package}
-\alias{The pomp package}
-\alias{pomp-package}
-\alias{pomp package}
-\description{
-  The \pkg{pomp} package provides facilities for inference on time series data using partially-observed Markov process (\acronym{POMP}) models.
-  These models are also known as state-space models or nonlinear stochastic dynamical systems.
-  One can use \pkg{pomp} to fit nonlinear, non-Gaussian dynamic models to time-series data.
-  The package is both a set of tools for data analysis and a platform upon which statistical inference methods for \acronym{POMP} models can be implemented.
-}
-\section{Data analysis using \pkg{pomp}}{
-  The first step in using \pkg{pomp} is to encode one's model(s) and data in objects of class \code{pomp}.
-  One does this via a call to \code{\link{pomp}}, which involves specifying the unobserved state process and the measurement process of the model.
-  Details on this are given in the documentation for the \code{\link{pomp}} constructor function.
-  Examples are given in the tutorials on the \href{http://pomp.r-forge.r-project.org}{package website}, in the demos (\code{demo(package='pomp')}), and via the \code{\link{pompExample}} function.
-
-  \pkg{pomp} version \Sexpr[echo=F,stage=install,results=text]{packageDescription("pomp",fields="Version")} provides algorithms for
-  \enumerate{
-    \item simulation of stochastic dynamical systems; see \code{\link[=simulate-pomp]{simulate}}
-    \item particle filtering (AKA sequential Monte Carlo or sequential importance sampling); see \code{\link{pfilter}}
-    \item the iterated filtering method of Ionides et al. (2006, 2011, 2015); see \code{\link{mif}}
-    \item the nonlinear forecasting algorithm of Kendall et al. (2005); see \code{\link{nlf}}
-    \item the particle MCMC approach of Andrieu et al. (2010); see \code{\link{pmcmc}}
-    \item the probe-matching method of Kendall et al. (1999, 2005); see \code{\link{probe.match}}
-    \item a spectral probe-matching method (Reuman et al. 2006, 2008); see \code{\link{spect.match}}
-    \item synthetic likelihood a la Wood (2010); see \code{\link{probe}}
-    \item approximate Bayesian computation (Toni et al. 2009); see \code{\link{abc}}
-    \item the approximate Bayesian sequential Monte Carlo scheme of Liu & West (2001); see \code{\link{bsmc}}
-    \item simple trajectory matching; see \code{\link{traj.match}}.
-  }
-  The package also provides various tools for plotting and extracting information on models and data.
-}
-\section{Developing inference tools on the \pkg{pomp} platform}{
-  \pkg{pomp} provides a very general interface to the components of \acronym{POMP} models.
-  All the inference algorithms in \pkg{pomp} interact with the models and data via this interface.
-  One goal of the \pkg{pomp} project has been to facilitate the development of new algorithms in an environment where they can be tested and compared on a growing body of models and datasets.
-  
-  The low-level interface relevant to developers is documented \link[=rprocess]{here}.
-}
-\section{Comments, bug reports, feature requests}{
-  Contributions are welcome, as are comments, feature requests, and bug reports.
-  See the package website \url{http://pomp.r-forge.r-project.org} for more information, access to the package mailing list, links to the authors' websites, references to the literature, and up-to-date versions of the package source and documentation.
-}
-\section{Documentation}{
-  A number of tutorials, demonstrating the construction of \code{pomp} objects and the application of various inference algorithms, are available on the package homepage: \url{http://pomp.r-forge.r-project.org}.
-  Several examples of the construction of \code{pomp} objects are provided with the package and are documented in the help pages: to view a full list of these, execute \code{pompExample()}.
-  In addition, there are a number of demos, which can be viewed by executing \code{demo(package="pomp")}.
-}    
-\section{History}{
-  Much of the groundwork for \pkg{pomp} was laid by a working group of the National Center for Ecological Analysis and Synthesis (\acronym{NCEAS}), \dQuote{Inference for Mechanistic Models}.
-}
-\section{License}{
-  \pkg{pomp} is provided under the \acronym{GNU} Public License (\acronym{GPL}).
-}
-\references{
-  See the package website, \url{http://pomp.r-forge.r-project.org}, for the references.
-}
-\author{Aaron A. King \email{kingaa at umich dot edu}}
-\seealso{
-  \code{\link{pomp}},
-  \link{pomp low-level interface}, 
-  \code{\link{pfilter}},
-  \code{\link[=simulate-pomp]{simulate}},
-  \code{\link{mif}},
-  \code{\link{nlf}},
-  \code{\link{probe}},
-  \code{\link{traj.match}},
-  \code{\link{bsmc2}},
-  \code{\link{pmcmc}}
-}
-\keyword{models}
-\keyword{datasets}
-\keyword{ts}

Modified: pkg/pomp/man/pomp.Rd
===================================================================
--- pkg/pomp/man/pomp.Rd	2015-06-05 13:19:40 UTC (rev 1186)
+++ pkg/pomp/man/pomp.Rd	2015-06-05 16:10:04 UTC (rev 1187)
@@ -80,7 +80,7 @@
     This can be specified in one of four ways:
     \enumerate{
       \item as a function of prototype \preformatted{rmeasure(x,t,params,\dots)} that makes a draw from the observation process given states \code{x}, time \code{t}, and parameters \code{params}.
-      \item as the name of a native (compiled) routine with prototype \code{pomp_measure_model_simulator} as defined in the header file \file{pomp.h}.
+      \item as the name of a native (compiled) routine of type \preformatted{pomp_measure_model_simulator} as defined in the header file \file{pomp.h}.
       (To view the header file, execute \preformatted{file.show(system.file("include/pomp.h",package="pomp"))} in an \R session.)
       \item using the formula-based \code{measurement.model} facility (see below).
       \item as a snippet of C code (via \code{\link{Csnippet}}) that draws from the observation process as above.
@@ -92,7 +92,7 @@
     This can be specified in one of four ways:
     \enumerate{
       \item as a function of prototype \preformatted{dmeasure(y,x,t,params,log,\dots)} that computes the p.d.f. of \code{y} given \code{x}, \code{t}, and \code{params}.
-      \item as the name of a native (compiled) routine with prototype \code{pomp_measure_model_density} as defined in the header file \file{pomp.h}.
+      \item as the name of a native (compiled) routine of type \preformatted{pomp_measure_model_density} as defined in the header file \file{pomp.h}.
       (To view the header file, execute \preformatted{file.show(system.file("include/pomp.h",package="pomp"))} in an \R session.)
       \item using the formula-based \code{measurement.model} facility (see below).
       \item as a snippet of C code (via \code{\link{Csnippet}}) that computes the p.d.f. as above.
@@ -119,7 +119,7 @@
     The skeleton function can be specified in one of three ways:
     \enumerate{
       \item as an \R function of prototype \preformatted{skeleton(x,t,params,\dots)} that evaluates the deterministic skeleton at state \code{x} and time \code{t} given the parameters \code{params},
-      \item as the name of a native (compiled) routine with prototype \code{pomp_skeleton} as defined in the header file \file{pomp.h}.
+      \item as the name of a native (compiled) routine of type \preformatted{pomp_skeleton} as defined in the header file \file{pomp.h}.
       (To view the header file, execute \preformatted{file.show(system.file("include/pomp.h",package="pomp"))} in an \R session.)
       \item as a snippet of C code (via \code{\link{Csnippet}}) that performs this evaluation.
       The latter is typically the preferred option, for reasons of computational efficiency.
@@ -137,7 +137,7 @@
     This can be specified in one of three ways:
     \enumerate{
       \item as an \R function of prototype \preformatted{rprior(params,\dots)} that makes a draw from the prior distribution given \code{params},
-      \item as the name of a native (compiled) routine with prototype \code{pomp_rprior} as defined in the header file \file{pomp.h}, or
+      \item as the name of a native (compiled) routine of type \preformatted{pomp_rprior} as defined in the header file \file{pomp.h}, or
       (To view the header file, execute \preformatted{file.show(system.file("include/pomp.h",package="pomp"))} in an \R session.)
       \item as a snippet of C code (via \code{\link{Csnippet}}).
     }
@@ -148,7 +148,7 @@
     This can be specified in one of three ways:
     \enumerate{
       \item as an \R function of prototype \preformatted{dprior(params,log=FALSE,\dots)} that evaluates the prior probability density,
-      \item as the name of a native (compiled) routine with prototype \code{pomp_dprior} as defined in the header file \file{pomp.h}, or
+      \item as the name of a native (compiled) routine of type \preformatted{pomp_dprior} as defined in the header file \file{pomp.h}, or
       (To view the header file, execute \preformatted{file.show(system.file("include/pomp.h",package="pomp"))} in an \R session.)
       \item as a snippet of C code (via \code{\link{Csnippet}}).
     }
@@ -187,7 +187,7 @@
     When working with such an algorithm and a model for which the parameters are constrained, it can be useful to transform parameters.
     \code{toEstimationScale} and \code{fromEstimationScale} are transformations from the model scale to the estimation scale, and vice versa, respectively.
     These functions must have arguments \code{params} and \code{\dots}.
-    \code{toEstimationScale} should transform parameters from the scale that \code{rprocess}, \code{dprocess}, \code{rmeasure}, \code{dmeasure}, \code{skeleton}, and \code{initializer} use internally to the scale used in estimation.
+    \code{toEstimationScale} should transform parameters from the scale that \code{rprocess}, \code{dprocess}, \code{rmeasure}, \code{dmeasure}, and \code{skeleton} use internally to the scale used in estimation.
     \code{fromEstimationScale} should be the inverse of \code{toEstimationScale}.
     The parameter transformations can be defined (as above) using either \R functions, native routines, or \code{\link{Csnippet}}s.
 
@@ -203,7 +203,7 @@
   }
   \item{globals}{
     optional character;
-    C code that will be included in the source for (and therefore hard-coded into) the shared-object library created when the call to \code{pomp} uses \code{Csnippets}.
+    C code that will be included in the source for (and therefore hard-coded into) the shared-object library created when the call to \code{pomp} uses \code{\link{Csnippet}}s.
     If no \code{Csnippet}s are used, \code{globals} has no effect.
   }
   \item{\dots}{
@@ -277,7 +277,7 @@
 }
 \section{The observation process model}{
   The following is a guide to writing the measurement model components as \R functions.
-  For a description on how to write these components using \code{Csnippet}s, see the tutorials on the \href{http://pomp.r-forge.r-project.org}{package website}.
+  For a description on how to write these components using \code{\link{Csnippet}}s, see the tutorials on the \href{http://pomp.r-forge.r-project.org}{package website}.
   \describe{
     \item{\code{rmeasure}}{
       if provided, must take at least the arguments \code{x}, \code{t}, \code{params}, and \code{\dots}.
@@ -304,7 +304,7 @@
 }
 \section{The deterministic skeleton}{
   The following describes how to specify the deterministic skeleton as an \R function.
-  For a description on how to write this component using \code{Csnippet}s, see the tutorials on the \href{http://pomp.r-forge.r-project.org}{package website}.
+  For a description on how to write this component using \code{\link{Csnippet}}s, see the tutorials on the \href{http://pomp.r-forge.r-project.org}{package website} and the \code{\link{Csnippet}} help.
 
   If \code{skeleton} if provided, must have at least the arguments \code{x}, \code{t}, \code{params}, and \code{\dots}.
   \code{x} is a numeric vector containing the coordinates of a point in state space at which evaluation of the skeleton is desired.

Modified: pkg/pomp/man/spect.Rd
===================================================================
--- pkg/pomp/man/spect.Rd	2015-06-05 13:19:40 UTC (rev 1186)
+++ pkg/pomp/man/spect.Rd	2015-06-05 16:10:04 UTC (rev 1187)
@@ -124,7 +124,7 @@
     \item{detrend}{detrending option used.}
   }
   
-  \code{spect.match} returns an object of class \code{spect.matched.pomp}, which is derived from class \code{{spect.pomp}} and therefore has all the slots of that class.
+  \code{spect.match} returns an object of class \code{spect.matched.pomp}, which is derived from class \code{spect.pomp} and therefore has all the slots of that class.
   In addition, \code{spect.matched.pomp} objects have the following slots:
   \describe{
     \item{est, weights, fail.value}{values of the corresponding arguments in the call to \code{spect.match}.}

Modified: www/vignettes/pomp.pdf
===================================================================
--- www/vignettes/pomp.pdf	2015-06-05 13:19:40 UTC (rev 1186)
+++ www/vignettes/pomp.pdf	2015-06-05 16:10:04 UTC (rev 1187)
@@ -1,33 +1,27 @@
 %PDF-1.5
 %¿÷¢þ
 1 0 obj
-<< /Type /ObjStm /Length 3924 /Filter /FlateDecode /N 96 /First 813 >>
+<< /Type /ObjStm /Length 3836 /Filter /FlateDecode /N 96 /First 813 >>
 stream
-xœå\is7ý¾¿ßbWʃÁ
-¤R®òÇçJN”£R[45’S…9N~ý¾ÆAË”D9Ùl9Ô`@£ÑÇC7Éj¦˜uL3)
-3,ԁY&”7Ì1¡e`ž	ƒªÀ„øS34ž	&ë€&­A&µÐè¤ñhg˜t
-í,“Aá¹cJÁ„gJÕD„)m=ˆ0eQ)S^£“dº– ¢˜5ÓR£Þ0í¨½eFÒ Ž™ØÞ3«êÁvÀ¸ªfΉÁ˜sÄ%sÞÓ Ì+{ͼ1…©LYœÅàŽ… ˆ	LQ4 ¹*Œ "¢6ĸ¯­cO*‚Lc‚B`h+=!> #aè		Ía¾”…·P–5&Or‘ÂÒÔPP™e©Á†eIƒP–
-©§®3Ž
-¤ñTð Ê
-Ì2[S½03¡Xµ’
-˜‚e¥IËš
-cԍe‰²Å\,Qv½ˆ²‡X,Qö.0G”=ïˆr at _Êse3YGf@Æà@Yí@Y;M:¡øt ¬=FMÁ-ƒrP at _ʦ†=(4G6ž½¦ˆÀ<Q Ï”Â¤0}aÌГÁZêNVèÀg e`t %l
-S+ 7ÌQXÊAS]@SX[TR+FVnm¨ÿõõ׌¿hºÁá °àá:{Œ¿:ïÆ£I3ƒ×Äû׃cÜètó揳†ñh?nÙÝ»‘ăi3èFíäá kØ­‡_ÁLmkShHÜ©õuýÅíÜ®²[{ƒ³ö¼y?j&xü¢=üTÏ×Óöð|Ø ë“×ÏÙ““vÖ͆ÓÑYÇBU4x3êÆ ðt2l'³vþnϹkÏ'Iœ?ÎØÏä‘4ÿÂMè’æsNWˆ–®²N2éf“jó5¤ÖRŠ|5¹^æúL5äþJæk%_T<Õê<¶N"—&S˝M&fóà.w›³\˜ÌÝ}îçÓTdÈ£ª|›È©ÂDç óã4•›‹,´"§DSe¨, ¨._S3•§¢Lno3O!?ÏsP.ž©ç±½Ê×ÌjH­už¡.rù6_UÑFTë|ÍLˆºh!
-£m\pçn>ó²õèÔÌfÙÜÎÉÄ­Ëí}VgÈz	yø_Š/%÷ʶzo2i;²QUgA{ÅôŠÑ,ŒQ–BQaV
-E¢ÌynàY¸´4£-”e¡,eY(ËByaê…²,”e¡,e57ôBYʪPV…ò\mªPž»‹*”U¡¬e-ŠT´“®™@ˆP|w8Üo?@®ÔÞBbjü…„?EÛn{ͬ=Ÿ¡ÒţݓýŽ€IvǏAœnU†Æi;Üo:Ðå¯>†F›ÈÞ½ÛWî2azüñh:ëXš>˜Él¥¹íÃfFT“(ø?þD-*Ek°‘U`“óñ˜øIWØI³É¸!ñ¬==»s6¾+·×ì,ƒ‹QÙ¨Ó¥¨@¥èù“¢]”¢‹RtQŠ)J1EÝy”í¨]i's_´“gqYí,Ó»a,{zb˸k2evÄ”ï3®ÀÔÜvl½I«v7|f4N|G¾²ðÜŽ˜êš½Š™-„W–M2ô;b×õÙõ×”aØS¡Ç”«¯#Ã6¸d]?‡Ë‚-Ã]w®ïÙî*ž½˜CÏ9èÎãS ÖÌÛ„M“»ÂÑìÐG‹^ÕbÜŽ–_×·-‹ñ›Â·£…È÷ƒµaÁÔŽ!¯ûL™k	/¦ÏS2Ê”ç¬"‡æ9F¾ò~“Øw´¢	ß·®d ‘æ>ãßí=-õ÷†”Ó¦G·Nºîì+Î)˜ª¦wŽÚéqƒëÙ´ýµvnoGÊ÷Ûé!²Ô4“:N8Þ M§›=4ƽ¦¢©HE[J2H\
-r
-W)„Ïh¹þ¶‹\<MÞÍ9"M¬©En´é-Ã;û‹n¯²ŒÜPµžÆŒ¿zýÂàož±nzÞ”Ö‹K—Á¬‰CòOï?øéÞ—/G§oÏg{íéË6<¿CóB/¤û‡£É1ÅÊ)²~p2˜2™8F ÷	Ú)Ë)K¸cüf!hâCvÒÈ£Ãî$FÉ“wóO!å)?º—&=“1l6õ§uîkÜ‚ªÃ\,Ö{º–²´=åã/%Ïu|Ö»˜ÛÙ˜DR™fØïEof=2ÆDʵÿ\Ò`tŸË>—Ký¼mmöê"y‚TÿËÜÎgØÔ@ÅüÁàì›ft|B·Ði‘lð¿Çïóü!Äó'üþ”?ç/øKþšïñ}þ†Ç¿ç|Àßò!¶ãv‚¿§§~È	ò#~4Âï~GàÇü„ŸüqvÒLøˆÿÊßñ17³?åÞòvÒð3~F4nŽºTšF:gÍtÔòßøoçm×ÄÚXJµS>ã³æ=¨ÎFxÇ»“iÓðî÷–Ÿó÷üwþÿÁÿä6ÓövLãÔïÐ6<Óž\´ÍûÉ¥ï DˆµÁ‹(¡_RõãѸ¡\×óÝ—ƒÓæBgzÚ
-Æ£á½É1²Æ-G³\+ú@4N¾ß5§ß3 ®ç%=ã?dåh¬¨knü퓇ß<z´2ò^s|Þwc³…÷òæäÆH3·wãë¹2Y¬ŽHvJ¶í²½Ì¥É¶qjúQ[Bƒä‚~ä	 ?wéì¢ä¸4“â®qtxT©ó¹\\»ôn.ļ®@A‚ƒÈsžOâ(Η<={e¹Î=¾Çu)»
-3.üõ¥±êñ—ÕõIýˆB¬UÐp0–>h`U¼4¾åÏ2p¼tü{	<~à?@§pðÙ`rÈÐäí`øn6ÌNøÛ)ŠM>—“˯Îa;¦sÜiN©{3I—ßÎcÞ|Ž§}HT:¦-ôfºŽNL“péSèD‚é£T3£0'ÔáÛñ¼°€.ܤÞ@Úé(ÍrnI,Ëw>At4¶Óæ"´þ#h‡õ.ÖF]“nWá®··‘àîÐÙî„ø$Ü!QZƒ»7û?>Ú{ñeï…DçJþ8Ç9¥×.¬Å+vеßM ûC
-ÕJ¢´ü6FÛBÓvqÉòÝUz]\ó±¿73Ÿí9_V“ó{ï³5Q‹%£Pƒ
-¬¢Ïl8
-GÓáùi*w£ñaƒ"¹åìA@¨™ÃQvÖ+£TÄ¥£¥ é£P4”"MÎOß‚éÑñ§§>4Ïg%Š"XZŽœ..Õ¤íû #œ. c–@¦Nu)+)jaÊîÃa6ùù*´>ôa	hâ“4ˆ™6ãL–©¥(7ëoBˆ/œÔ•AhX^äÔÔ¶"l³ÆU9¨ªª=½2·•Äu«t;žü¥yÒ¼ôx2²òj[žæ|pðí³ƒWÀÿÎþx0éþ#õ0Y­bòzì™ßV]5…Üe¹“–rޏýÛG.SÙ=FÊ9r\ÐI1ãjDö9"Å5¸¥—û[„yO{ÀJ°šB:Ê	)LáÖxSê—²¾3àÁP·š°}$zÑËшÕô¾ŽX^Ŗޏ„-[ð¶qŒ6WŠcö^}ÿìåhܾû”Tó"÷Yہ‰ümå>õ§ûr.s½=˜bª}ªäñ×s®~²UÚ“+Qê¸ì„1¥«ëyº–ÒËuÞûŽP®}g)NVž÷gÎ9m¾ôœŒÚ7%¥*»E—ÿ·1ZqOë·ÙºYŽ~.ںɹӦtéêiRoçz[7¡À²—e<Ð.Õ‡ÚnăÞë„Œûb	Ä\/§Ñòr‹|>a²tVAY]ÑQÇ•e^xQY`éXæ•c²V•¡³‚h´¸äöw>&’φä“!ù\H>’OoäSùPC>ÒPN%øʇòQ†|¡c(mò9›å
-w¿«Ó¢ÿÂFˆ«¼±Ù¹Æ´Du
-¼Ñ²"»„uTtêÍÐao·ÔØg}Ç¢j8F¦êJH:ëãÌŒCÚa|›d-	Ò(WY³fù–N ð¨¥³ÁÔr•¡¢W6»dÊ­3e•©B°«\)%«x°×וö@# ÍÇ *å·|µ%Wz+2&7Yµ9t€©AdAÑAâºòdz`Îëò$6HJ«JÂJVyº²qKÔEÉh%€\XãJ^¾3®Ô:W"Ȩ˜Uý¤M$*˜ºäiJ›E ¢rz§©œØp"Ì‡NA®rEV„ö$3hÛ\TnZšŠNÎî’«°Aƒ5
-¿AV‘A,\”
-iÒbÑеkÒ.¹òë\I ]s@]ƒ‰@!D 8 °¬*è›ÿE¢u%¡WZ e
-ˆF‡Š•3À°zà&A¸½ôëF%+úöAûhñˆS+uLàg½SüÜ$'i+#׵ؤ-CA¹L‚®vɔܰÒXÌšö¤³0h%LEïð–…%GÁý賐¿ã’m|“¶BEǨ[RuÙÿY8„o¸ø	<É;Ì hâþ–B–"T멆=˜èB¶òHB4B½[ºLJäHîmé“!°ÐÑ©…/mÅÔ¨|P½<¡í¹|Ôœn,S%ú¦¬æåÀò)v¾çËç×o”ê–”[G&ÂÁÝ
-m™Ú`©´£°Émü%¸}¼’MPÒòFßÃi2TpàMåÜ_´Ü	D'’ˆ¦à=™Ë1õÔꥁ ”ss`1n±í*¸ó4BPúlÜ‚+„/!òMpu	°ˆ[¼\p…àŠ6¥o€«íƒ+Jyê…¤$V­@š^†§ÏÅ àrvar´†Ñr—bù¯ô.YöG]Zq£KÁYüüÓ¡÷Dœ¹mSßÿ-Р´Œ¾&$w¥}JµU¨ÿßhd{Jd”ôñ!mºÑ§y’’zßâྻݑøˆµ*¤Ȥ¥Ô}K­l@’(SÑ—³7΀”ôZÝÅ„ŸJ£cØ-¥Š›]7Î íªÑ·Þ@t±b xëLEŸïÞ<NUN-0¢®}‹þ¹ºÇâ+\]yEFh+¨#¾~@ª¹ÛàM1àÛµ˜NB1žþ¿…-GÙ®¸$[ƒY3õÊF“{“Ùhñàáè訙6z½ð3½ˆ=á¹ÈÇíKÓ«ÓSõ^Ñ‘¶ÅùÀDŒ†Á´gK§…nzÉÿ_à6¡endstream
+xœÝ\ksÛ6ý¾¿ßšL'ñ:Î$N“æuÒ¦éì(2m«‘EW¢Ó´¿~ÏÅC¢q$[nº;©M.îãà„+YͳŽi&¥a†…:0Ë„ò†9&´Ì3að*0á~ÕLg‚É: ŠDCkЂI-4š0i¬B&B=ˤ÷¨ç˜ª=ž{¦TMB˜Ò/Ñ¿µh$˜òŠ„1]“pÅ´ð$”i©H(ÓÎ@¨eFÖxõ=³šÚvp0TÓL	æ\{Éœ7èD1¯4î5óxF$- at X†fŠ)Ç‚w¸r-¬eŠÆª _l­ú(XM€Pp1ž:à9
+”P€&„¤'P¢Pôc†žÒ,=dáñ°„¡f’%tŽ¡¡  +É’:ÅP„´N3Œ]H¤ÆRš“öÉ^ÆS4¨€V’• +¨ {XHVÍÈ6
+¢¡6¨¯h=…X2¼®£?e ÆB²rP74…ŒæH²ƒIö5Ü„$“êðŸÐ5èÈ
+ž;HÖŠž@²ÖhëÈ©,zwž
+èÈA²vèÝC²ö@å!ÙÔp(ɆÀ“ß×ól4†	÷ÆbìÞRc'3c÷ä°ñ
+84,L€g@ùÂÖè:H*Àý`Da:
+l%ZAºB¼Å薼ܢ×}ý5ãÏšnp4èð„Î!ã/.ºñhÒÌ5ñþåà7:ݼþó¼aü õÇí	ûæ›(â`ÚºQ;¹?èvëþWpgSÛÚÀ“”²wjýE]q;×k§ìÖáàü”=mޏš	?k>Õòå´=º6húðåSöð´u³áttÞ±PÕ^º1$<šÛɬßí9ºöbÒ‘Æù“ÑÑŒýBIc1ñ7„.iìðâtE<Ç«L÷!Ý!äÒ[‘¯I0IôžŸ—z:_SWÂ¥«¬m~ž.!7O­¥TùšK•[§Î¤.×JšÜY6Â/ƒM¯mîÓæê.WOÐdHPT°,ÏÊÉÈUškçÖÂåÛԵʊUYk*ëK©Ô·2©™²[Ö#â1_3¶ÜÜe½äÖ>×öù>¤{µ,“õ¤e1e¬3õ¦M‘A‡lÌ:÷Z§öÚfy¾\Ós“c³j¬Kp\î×ùÔ¯×I…!ãÙI~-±”Â+ûêÝɤíÈGUVIñ¨:׫K¡¼¸˜»gñ»lFâÿR(£›{º(’e‘,çî]$Ë"YɲH–E²,’犗E²*’çÃQEò<¤T‘\ܽVE²*’U‘¬Šd]$ë¹VÚI×L DX>5ō÷ÚÐ+շИƒ¹%åOQ·Ûa3k/¦C˜ƒlñí‡îá«Žˆ	â^þ ÂéVejœ¶ÃWM¹üåý°hó¡ƒØo¾éw™‡0<þ`4u,ƒ{:˜‘Èì¹îýfFR“*ø?ýL5*Es°‘U`“‹ñ˜ð?§ƒ+pÒh2ogJ<oÏÎï åöšŸ™¤7“)1	2Åz^(FÑÅ(ºE£èbSŒbŠ¹³øëø}Y'Ã.ÖÉðwµÎXØ0cz°Œ½¨Ì‘×åú ü@-|'l°j¦Ákã´ugæÌ«+Oî	TŸìÕH`Jí	”îƒ2×±¨µy.ÛdX½'¸¾7\S‡f? \ßÛÜU¼m®ÃìkÙºYk§³›k÷4†~d»kE¶›Syá}Sx¿äºµ)¼¿™ö6õ.n¯eŸ„åT2§t>™ÊëMãØÓ$åûs¿Ê\°ÃÆèÜÓœåûÑ鯝sœ¡Þ€ÓïiËÉ™S÷qF‰¯ÿþðQywHËØôèÖiםÅ9åOÕôÎq;=ip=Ÿ¶¿5îÂíí(ù^;=ÂÂ4£ŽÃ7X™ÓÍ!*ã^HS)LÚØŠv‘díhë*Z/¡æ«‹·]Dñt4y7GDÚ\S­Ü”íú=ͼÈ4ûL‚Û«pɽgÈNÛéÙ`Ìø‹—Ï þú	ë¦M©½è±4ÌšØ%öèÞÁÏw¿|>:{{1;lÏž·áéZa…4šœÐþFIÉôÁé`ÊdBŒÜ9n
+´S–W)1ÇŽU–4EQञߌŽºÓ˜ÜDÆÛÏ?Z—º—&=“1S6õ§êÜÖ¸…T‡±Äý&ÚŽÊe+h—ÐÇŸ´P®ãó€LÞÅ圍ëF*ÓûíaèÍÐ#TÖZϯýç’:£û\ö¹\ÞÏÛ ê½‹ ò éý¯s?Ÿ
+ã:&æƒóïšÑÉ)ÝÂvdEòÁ[ü.¿Çø}þ-Àòïø#þ”?ãÏùK~È_ñ×ü{þÃü-òa;n'ø}v6àG¼áQ ?æÇ#ü÷¾áÇ~ÂOùéŸç§Í„øoüóq3›ñ3>á-o'
+?ççAãæ¸K¥i”sÞLGíÿÿ~ÑvM|Kéí”Ïø¬y©³ÑÞñîtÚ4¼û£åü=ÿƒàò¿ø_Í´½×}qèwhˆ?Nh.úæ½Òw0Ç·Á‹¨¡_Óë£qC›·¾—¢>œ5—Ó£n0
+ïNN°P¬Qs4›!´bDç䯺æì&¦õ¢¤`üÇl|g-Œ?¼ÿÝ·ß®ô|Øœ\ôøLŒ—…qo©œÂ+ËíÃøz¡L«#’Ÿ’o»ìïiŠm‚š~¨®ŒI†AO?	?颸4’®±wDTyçs¹„viÃ\ˆù»B‰"æ<ž„(Ž—"=Ge¹Î#¾‡º”݆|}m¬Fü®¶ 6©Iˆ„µJÎÒ'
+d×—’Æcþ$ÇPÇ¿—ÈãGþdp† Ÿ
+&G|ЁMÞ†ïfãÁ씿¢Øt1às9…ü*áµãñ`:çæ숚7“tùýb0æ͇áxpÖ§¤qa¥Ú5o¦ëìDÄ4—>ÅN¤˜>K53JsI½ÏêÂMj}	¥Ò(ä–Ô²LqdG³a;m.c;á?Âv˜ïâÛhk²í*Ýõ¶~Ý]B:ÛҝŸ¤;,CÖèîÞϯ~~üeïDŸçì*Ï)½Nta-_±ˆ®ý~ÝQªæ—¾Ë¬’ßÆLb[jÚ./Y¾»J«Ëß|ì÷ÍŒçrÔ¥·µDÅÁ*wßgO¢K$.g >ÿöy³Ê<³áh4M‡g©ÜÆG
+Š’³wDKW%£H?ÇKyÐGgžEÚ™\œ½¾Ñɧó£>/f%Y"öYNvâjÒÆú}.N.1K\R§wô‡l²J$f•H6…ó*ƒ>ôl¾Ä'ñIâ¤F›é¤0ÈƤ(7ëßBˆŸœÔ•AX>䥦©mEf«}‚ª¢áYk+‰ëVKÍí0ù1i
+,=LFV^m‹iδoÞ<~òæÅŽ¿ój<˜tÿÈ{zÔ«V©w=ÅÌß¡®ºRÜçjq9õìóÎeÿ6¥‹ËR6%‰QrNrRj¸šxý	á³Ògû-²¹G=%M™-ýh¹—²ªñ¦^Zܝƒˆ†ºÕuÙG’½œ¤ÐA€øš¾ÄäUn)sÿœ[¶ràmÓm®”®¼9|ñÓç0P¿ýð)»A—…ÏÚFKÄ·UøÔŸvîÝBæz[-ÅUûR)<âO/¸úkªRŸB‰VˆËAWnu=_•¥Uä:ö~ ”k?XJ•çýà™#§=–^Q]BSVNeSh÷Ÿ•ð´~›šåD粚¼DÚ´*ºúj¨·Ws½šPè ‹”e>Ð.½§C›ø ·¿šùàòXì3’˜ë-]´Üm’ÏGF–N!(«+‰Q®Ló‹ŠÎƒi^9&kUki_£¢S…»írç ùÔG9¿S§K>ü“å¤Ù;WȇòQ…|P!SȇÊ…rˆ¦œ¡)GhĦoA~_DÿcWù´wÓi‰×5ˆGËŠ6á&•”´å$«€	l;Óý­ßTT-ÐÂÛT]	é02Gf´¨è¨ÑÝ|êjI‘F¹Êšµ°pyÊ…Ç[Ã$é•]†Š>õî”_¥¯@ý+ ”’•–tb·®´Ç,àà´×D¥ü–_Ÿ¶µáÌù’B”¬ºœKÀÓ ± â)èÊ“çœ×{Å$Ö1Y­*:=¼Š	f35ͱ.jF+SiŠ6ð­ä{C%7 ‚O)»ŽŠ–I",PAEüz¨ô:*dt—U¯
+XÔ‘t|[Ó¢N‘îDåô^š…#—ˆNmëµ Œ¾-èp;®t¤,A|®¥©è¨íQÉM¬€3bƒ® #ƒL1¸¨²¤Å”¦kgÌ}ê*lð+(ÃB‰«~UE Œ:
+°æíéOdE§œ?“®D]I–f*¬BLÐQjåLE§nofÿ¢`‚ËTA®3¨Cz¦´.4	E°zýÏœ­€ÇÑ–K¨èïAÛ@ueå?² 7IÐÅ¿Ø@#W¶PzÞ±û§!–"TsWš6È/lå‘økÌöz[¿ØžôH>képT }Ӂ€”šlê¹J>ö]žÐ–X>¸M7–©’è:Çä¼X>ν`ù4øJÝû|+œ…¦h›ÒÆ™
+ÜXiG)ŠÛ~fû_ÒàgµËös{vlI3ýÍš&÷o*ç>ÓÌ€Å>I¿ …˜¤¿ôÙ	Ôÿ¡Uw¦+P¸ÓÍéÊX›Øï2nû…€ õ¯qT˜éEP7‚j‡ °H̼\ BBÿn Õ¦,R‚åZI˃z¡)‰¹0Ø°¦¿97ˆM»p9š•ÜQŸ3ºd9å5êúÃÒ¦
+.¥|ž²U‡¾øPÊçö¼LÜ=¼‘Å!]„7J‹½®ÇòîÝÊ@Ëë JxgT,@Û57jëm©mEŽ=åe¥oÒö›44Ñ–CÁ¤$)î&@í²BÄZ^bõ<e@‹jGŸú¬³ãö>\E‰áU"®†}åãßšã¹þ¬ÉüM1…¥•+ýŸh+ZaýçàŸw¤ƒY3ÿÊߌ&w'³ÑâÁýÑñq3m&´Õÿ}=á'Ž,u/U¯.ÞÞûfEÇÉgóöÚÿ:Óž-á¹é1lÿ_ü”endstream
 endobj
 98 0 obj
 << /Subtype /XML /Type /Metadata /Length 1340 >>
@@ -36,12 +30,12 @@
 <?adobe-xap-filters esc="CRLF"?>
 <x:xmpmeta xmlns:x='adobe:ns:meta/' x:xmptk='XMP toolkit 2.9.1-13, framework 1.6'>
 <rdf:RDF xmlns:rdf='http://www.w3.org/1999/02/22-rdf-syntax-ns#' xmlns:iX='http://ns.adobe.com/iX/1.0/'>
[TRUNCATED]

To get the complete diff run:
    svnlook diff /svnroot/pomp -r 1187


More information about the pomp-commits mailing list