[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[45S
9N~ý¾ÆAËD9Ùl9Ô`@£ÑÇC7Éj¦uL3)
-3,ÔY&7Ì1¡e` ªÀøS34 &ë&A&µÐè¤ñhgt
-í,Aá¹cJÁgJÕD)m=0eQ)S^£dº ¢5ÓR£Þ0í¨½eFÒ ØÞ3«êÁvÀ¸ªfÎÁsÄ%sÞÓ Ì+{ͼ1
©LYÅà
LQ4 ¹* "¢6ĸ¯cO*LcB`h+=!> #aè Ía¾
·P5&OrÂÒÔPPe©ÁeIP
-©§®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éfjó5¤ÖR|5¹^æúL5äþJæk%_T<Õê<¶N"&SËM&fóà.w³\ÌÝ}îçÓTdÈ£ª|È©ÂDç óã4,´"§DSe¨, ¨._S3§¢Lno3O!?ÏsP.©ç±½Ê×ÌjHu¡.rù6_UÑFTë|ÍLºh!
-£m\pçn>ó²õèÔÌfÙÜÎÉÄËí}VgÈz yø_/%÷ʶzo2i;²QUgA{ÅôÑ,QBQaV
-E¢ÌynàY¸´4£-e¡,eY(ËByaê
²,e¡,e57ôBYʪPV
ò\mªP»*U¡¬e-T´®@P|w8Üo?@®ÔÞBbjü
?EÛn{ͬ=¡ÒÅ£ÝýIvÇAnUÆ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¾²ðÜê½-WM2ô;b×õÙõ×aØS¡Ç«¯#Ã6¸d]?Ë-Ã]w®ïÙî*½CÏ9èÎãS ÖÌÛM»ÂÑìÐG^ÕbÜ_×·-ñ·£
È÷µaÁÔ!¯ûLk /¦Ï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ÅÊ)²~p228F ÷ Ú)Ë)K¸cüf!hâCvÒÈ£Ãî$FÉwóO!å)?º&=1l6õ§uîkܪÃ\,Ö{º²´=åã/%Ïu|Ö»ÛÙDRfØïEof=2ÆDʵÿ\Ò`tË>Ký¼mmöê"yTÿËÜÎgÃÔ@ÅüÁàìft|B·Ðilð¿Çïóü!Äó'üþ?ç/øKþïñ}þÇ¿ç|Àßò!¶ãv¿§§~È ò#~4Âï~GàÇüüqvÒLøÿÊßñ17³?åÞòvÒð3~F4nºTF: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ÈsOâ(Î<={e¹Î=¾Çu)»
-3.üõ¥±êñÕõIýB¬UÐp0>h`U¼4¾åÏ2p¼tü{ <~à?@§pðÙ`rÈÐäí`øn6ÌNøÛ)M>˯Îa;¦sÜiN©{3IßÎcÞ|§}HT:¦-ôfºNLpé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â46ãL©¥(7ëoB/ÔAhX^äÔÔ¶"l³ÆU9¨ªª=½2·Äu«t;ü¥yÒ¼ôx2²òj[æ|pðí³WÀÿÎþx0éþ#õ0YbòzìßV]5
Üe¹rÞýÛG.SÙ=FÊ9r\ÐI1ãjDö9"Å5¸¥û[yO{ÀJ°B:Ê )LáÖxSê²¾3àÁP·°}$zÑËÑÕô¾X^ÅÞ-[ð¶q6Wcö^}ÿìå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}Ç¢j8F¦ê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$*ºäiJE ¢rz§©Øp"ÌNA®rEVö$3hÛ\TnZNÎî«°A5
-¿AVA,\
-iÒbÑеkÒ.¹òë\I ]s@]@!D 8 °¬*èÿE¢u%¡WZ e
-F3À°zà&A¸½ôëF%+úöAûhñS+uLàg½SüÜ$'i+#׵ؤ-CA¹L®vÉÜ°ÒXÌö¤³0h%LEïð
%GÁý賿ãm|¶BEǨ[RuÙÿY8o¸ø <É;Ì 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´Ñrbù¯ô.YöG]Zq£KÁYüüÓ¡÷D¹mSßÿ-Ð ´¾&$w¥}JµU¨ÿßhd{Jdôñ!mºÑ§yzßâྻÝøµ*¤È¤¥Ô}Kl@(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á~ÕLgÉ: DCkÐI-40i¬B&B=ˤ÷¨çª={¦TMBÒ/Ñ¿µh$ò1]pÅ´ð$i©H(ÓÎ@¨eFÖxïõ=³Úvp0TÓL æ\{É7èD1¯4î5óxF$- at Xf)Çw¸r-¬eƪ _lú(XMPp1:à9
+P&¤'P¢PôcÒ,=dáñ°¡f%t¡¡ +É:ÅP´N3]H¤ÆRöÉ^ÆS4¨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,Lg@ùÂÖè: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÷!Ý!äÒ[¯I0Iôz:_SWÂ¥«¬m~.!7O¥TùK[§Î¤.×JÜY6Â/M¯mîÓæê.WOÐdHPT°,ÏÊÉÈUkçÖÂåÛÔµÊUYk*ëK©Ô·2©²[Ö#â1_3¶ÜÜe½äÖ>×öù>¤{µ,õ¤e1e¬3õ¦MAlÌ:÷Z§öÚfy¾\Ósc³j¬Kp\î×ùÔ¯×I
!ãÙI~-±Â+ûêÝɤíÈGUVIñ¨:׫K¡¼¸»gñ»lFâÿR(£{º(e,çî]$Ë"YɲHE²,çE²*çÃQEò<¤T\ܽVE²*U¬d]$ë¹VÚI×L DX>5Å÷ÚÐ+շй%åOQ·Ûa3k/¦Clñíîá« â^þ ÂéVej¶ÃWM¹üåý°hó¡Øo¾éw0<þ`4u,{:Èì¹îýfFR*ø?ýL5*Es°U`ñð?§+pÒh2ogJ<oÏÎïï åö¤7)1 2Åz^(FÑÅ(ºE£èbSb¹³øëø}Y'Ã.ÖÉðwµÎXØ0cz°½¨Ì×åú ü@-|'l°j¦Ákã´ugæÌ«+Oî TìÕH`Jí î2×±¨µy.ÛdX½'¸¾7\Sf? \ßÛÜ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ÚØvdíhë*Z/¡æ«·]Dñt4y7GDÚ\SÜíú=ͼÈ4ûLÛ«pɽgÈNÛéÙ`ÌøÏ þú ë¦M©½è±4ÌØ%öèÞÁÏw¿|>:{{1;lÏ·áéZa
4ÐþFIÉôÁé`ÊdBÜ9n
+´SW)1ÇU4EQà¤ßºÓÜ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¥isÞLGíÿÿ~ÑvM|KéíÏø¬y©³ÑÞñîtÚ4¼û£åü=ÿàò¿ø_Í´½×}qèwh?Nh.úæ½Òw0Ç·Á¨¡_Óë£qC·¾¢>5Ó£n0
+ïNN°P¬Qs4!´bDç䯺æì&¦õ¢¤`üÇl|g-?¼ÿÝ·ß®ô|Ø\ôøL
qo©Â+ËíÃøz¡L«#o»ìïim~¨®IAO? ?颸4®±wDTyçs¹viÃ\ù»B"æ<("=Ge¹Î#¾ºÝ|}m¬Fü®¶ 6©IµJÎÒ'
+d×Æcþ$ÇPÇ¿ÈãGþdp
+&G|ÐMÞïfãÁì¿¢Øt1às9
ü*áµãñ`:çæì7tùý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³Ê<³áh4Mg©ÜÆG
+³wDKW%£H?ÇKyÐGgEÚ\½¾Ñɧó£>/f%Y"öYNvâjÒÆú}.N.1K\R§wôl²J$fH6
ó*>ôl¾Ä'ñIâ¤Fé¤0ÈƤ(7ëßBÔAX>䥦©mEf«}ª¢áYk+ëVKÍí0ù1i
+,=LFV^miδ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ªRBVËAWnu=_¥Uä:ö~ k?XJçýà#§=^Q]BSVNeSh÷ð´~åDç²¼DÚ´*ºúj¨·Ws½Pè e>Ð.½§Cø ·¿ùàòXì3ë-]´ÜmÏGFN!(«+Q®LóÂÎÂi^9&kUki_£¢S
»írç ùÔG9¿S§K>üå¤Ù;WÈòQ
|P!SÈÊ
r¦¡)GhĦoA~_DÿcWù´wÓi×5GË6á&´å$« l;ÓýßTT-ÐÂÛT] é02Gf´¨è¨ÑÝ|êjIF¹Êµ°pyÊ
Ç[Ã$é]>õî_¥¯@ý+ tb·®´Ç,àà´×D¥ü_¶µáÌùB¬ºKÀÓ ± â)èÊç×{Å$Ö1Y*:=¼ f35ͱ.jF+Si6ðä{C%7 O)»I",PAEüz¨ô:*dtU¯
+XÔt|[Ó¢NîDåô^
#Nmëµ ¾-èp;®t¤,A|®¥©è¨íQÉM¬3b® #L1¸¨²¤Å¦kgÌ}ê*lð+(ÃB«~UE :
+°æíéOdE§?®D]If*¬BLÐQjåLE§nofÿ¢`ËTA®3¨Cz¦´.4 E°zýÏÇÑK¨èïAÛ@ueå?² 7IÐÅ¿Ø@#W¶PzÞ±û§!"TsW6È/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éEP7j °H̼\ BBÿn Õ¦,RåZIËz¡)¹0Ø°¦¿97M»p9ÜQ3ºd9å5êúÃÒ¦
+.¥|²U¾øPÊçö¼LÜ=¼Å!]7J½®ÇòîÝÊ@Ëë JxgT,@Û57jë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