diff --git a/docs/pdf/background.tex b/docs/pdf/background.tex index 072019fc..5e23a6db 100644 --- a/docs/pdf/background.tex +++ b/docs/pdf/background.tex @@ -1,4 +1,6 @@ \section{Multi-level Domain Decomposition Background\label{sec:background}} +\markboth{\underline{MLD2P4 User's and Reference Guide}} + {\underline{\ref{sec:background} Background}} \emph{Domain Decomposition} (DD) preconditioners, coupled with Krylov iterative solvers, are widely used in the parallel solution of large and sparse linear systems. @@ -56,12 +58,12 @@ interpolation \cite{StubenGMD69_99}. MLD2P4 uses a pure algebraic approach for building the sequence of coarse matrices starting from the original matrix. The algebraic approach is based on the \emph{smoothed -aggregation} algorithm \cite{Brezina_Vanek_,Vanek_Mandel_Brezina_}. A decoupled version +aggregation} algorithm \cite{BREZINA_VANEK,VANEK_MANDEL_BREZINA}. A decoupled version of this algorithm is implemented, where the smoothed aggregation is applied locally -to each submatrix \cite{Tuminaro_Tong_00}. In the next two subsections we provide +to each submatrix \cite{TUMINARO_TONG}. In the next two subsections we provide a brief description of the multi-level Schwarz preconditioners and on the smoothed aggregation technique as implemented in MLD2P4. For further details the user -is referred to \cite{para_04,apnum_07,aaecc_07,dd2_96}. +is referred to \cite{para_04,aaecc_07,apnum_07,dd2_96}. \subsection{Multi-level Schwarz Preconditioners\label{sec:multilevel}} @@ -112,7 +114,7 @@ three steps: A variant of the classical AS preconditioner that outperforms it in terms of both convergence rate and of computation and communication time on parallel distributed-memory computers is the so-called \emph{Restricted AS -(RAS)} preconditioner~\cite{Cai_Sarkis,Efstathiou_Gander}. It +(RAS)} preconditioner~\cite{CAI_SARKIS,EFSTATHIOU}. It is obtained by zeroing the components of $w_i$ corresponding to the overlapping vertices when applying the prolongation. Therefore, RAS differs from classical AS by the prolongation operators, @@ -209,20 +211,63 @@ coarse-level system. The corresponding preconditioners are called \emph{multi-le One more reason for the multi-level approach is that it may significantly reduce the computational cost of preconditioning with respect to the two-level case (see \cite[Chapter 3]{dd2_96}). Additive and hybrid multilevel preconditioners -are obtained as direct extensions of the two-level counterparts. Other combinations -of the smoothers and coarse-level corrections are possible, leading to variants +are obtained as direct extensions of the two-level counterparts. +The algorithm for applying a multi-level version of the two-level hybrid +post-smoothed preconditioner is reported in Figure~\ref{fig:mlhpost_alg}. +Other combinations of the smoothers and coarse-level corrections are possible, leading to variants of the previous algorithms. For a detailed descrition of them, the reader is referred to \cite[Chapter 3]{dd2_96}. -\textbf{DESCRIZIONE ALGORITMICA, a titolo di esempio, -di un precondizionatore multilevel, ad esempio quello ibrido con pre- o post-smoothing, -sul tipo della descrizione in figura 1 della guida di Trilinos ML 4.0.} +% +\begin{figure}[t] +\begin{center} +\framebox{ +\begin{minipage}{.85\textwidth} {\small +\begin{tabbing} +\quad \=\quad \=\quad \=\quad \\[-1mm] +! assigned the finest matrix\\ +$A_1 \leftarrow A$;\\[1mm] +! defined the number of levels $nlev$ \\[1mm] +! defined $nlev-1$ prolongators\\ +$R_l^T, l=2, \ldots, nlev$;\\[1mm] +! defined $nlev-1$ coarser matrices\\ +$A_l \leftarrow R_lA_{l-1}R_l^T, \; l=2, \ldots, nlev$;\\[1mm] +! defined the $nlev-1$ basic Schwarz preconditioners\\ +$M_l$, basic preconditioner for $A_l \; l=1, \ldots, nlev-1$;\\[1mm] +! assigned a vector $v$\\ +$v_1 \leftarrow v$; \\[2mm] +\textbf{for $l=2, nlev$ do}\\[1mm] +\> ! transfer $v_{l-1}$ to the next coarser level\\ +\> $v_l \leftarrow R_lv_{l-1}$; \\[1mm] +\textbf{endfor} \\[2mm] +! apply the coarsest-level correction\\[1mm] +$y_{nlev} \leftarrow A_{nlev}^{-1}*v_{nlev}$;\\[2mm] +\textbf{for $l=nlev -1 , 1, -1$ do}\\[1mm] +\> ! transfer $y_{l+1}$ to the next finer level\\ +\> $y_l \leftarrow R_{l+1}^T*y_{l+1}$;\\[1mm] +\> ! compute the residual at the current level\\ +\> $r_l \leftarrow v_l-A_l^{-1}*y_l$;\\[1mm] +\> ! apply the basic Schwarz preconditioner to $r_l$\\ +\> $r_l \leftarrow M_l^{-1}*r_l$\\[1mm] +\> ! update $y_l$\\ +\> $y_l \leftarrow y_l+r_l$\\ +\textbf{endfor} \\[1mm] +! preconditioned vector +$w \leftarrow y_1$; +\end{tabbing} +} +\end{minipage} +} +\caption{Multi-level hybrid post-smoothed preconditioner.\label{fig:mlhpost_alg}} +\end{center} +\end{figure} +% \subsection{Smoothed Aggregation\label{sec:aggregation}} To define the restriction operator $R_C$, which is used to compute the coarse-level matrix $A_C$, MLD2P4 uses the \emph{smoothed aggregation} -algorithm described in \cite{Brezina_Vanek_,Vanek_Mandel_Brezina_}. +algorithm described in \cite{BREZINA_VANEK,VANEK_MANDEL_BREZINA}. The basic idea of this algorithm is to build a coarse set of vertices $W_C$ by suitably grouping the vertices of $W$ into disjoint subsets (aggregates), and to define the coarse-to-fine space transfer operator $R_C^T$ by @@ -238,7 +283,7 @@ Three main steps can be identified in the smoothed aggregation procedure: %\textbf{NOTA: Controllare cosa fa trilinos dopo il primo passo.} To perform the coarsening step, we have implemented the aggregation algorithm sketched -in \cite{apnum_07}. According to \cite{brezina_vanek}, a modification of this algorithm +in \cite{apnum_07}. According to \cite{BREZINA_VANEK}, a modification of this algorithm has been actually considered, in which each aggregate $N_r$ is made of vertices of $W$ that are \emph{strongly coupled} to a certain root vertex $r \in W$, i.e.\ @@ -256,7 +301,7 @@ i.e.\ near vertices adjacent to vertices in other processors, and is strongly dependent on the number of processors and on the initial partitioning of the matrix $A$. Nevertheless, this algorithm has been chosen for the implementation in MLD2P4, since it has been shown to produce good results in practice -\cite{Tuminaro_Tong_00,apnum_07,aaecc_07}. +\cite{aaecc_07,apnum_07,TUMINARO_TONG}. The prolongator $P_C=R_C^T$ is built starting from a \emph{tentative prolongator} $P \in \Re^{n \times n_C}$, defined as @@ -276,14 +321,14 @@ P_C = S P, \end{equation} in order to remove oscillatory components from the range of the prolongator and hence to improve the convergence properties of the multi-level -Schwarz method \cite{Brezina_Vanek_,StubenGMD69_99}. +Schwarz method \cite{BREZINA_VANEK,StubenGMD69_99}. A simple choice for $S$ is the damped Jacobi smoother: \begin{equation} S = I - \omega D^{-1} A , \label{eq:jac_smoother} \end{equation} where the value of $\omega$ can be chosen -using some estimate of the spectral radius of $D^{-1}A$ \cite{Brezina_Vanek}. +using some estimate of the spectral radius of $D^{-1}A$ \cite{BREZINA_VANEK}. % %\textbf{NOTA: filtering di $A$ nello smoothing, da implementare?} % diff --git a/docs/pdf/bibliography.tex b/docs/pdf/bibliography.tex index ecc6e8ee..9599bdb9 100644 --- a/docs/pdf/bibliography.tex +++ b/docs/pdf/bibliography.tex @@ -1,25 +1,41 @@ -\begin{thebibliography}{99} +\section{Bibliography\label{sec:bib}} +\markboth{\underline{MLD2P4 User's and Reference Guide}} + {\underline{\ref{sec:bib} Bibliography}} +\let\refname\relax +\begin{thebibliography}{99} +% +%\bibitem{PARA04FOREST} +%G.~Bella, S.~Filippone, A.~De Maio, A., Testa, M.: +%A Simulation Model for Forest Fires. +%In: Dongarra, J., Madsen, K., Wasniewski, J. (eds.): +%Proceedings of PARA~04 Workshop on State of the Art +%in Scientific Computing. Lecture Notes in Computer Science, 3732. Berlin: +%Springer, 2005 +% +\bibitem{BREZINA_VANEK} +M.~Brezina, P.~Van{\v e}k, +{\em A Black-Box Iterative Solver Based on a Two-Level Schwarz Method}, +Computing, 63, 1999, 233--263. % -\bibitem{PARA04FOREST} -Bella, G., Filippone, S., De Maio, A., Testa, M.: -A Simulation Model for Forest Fires. -In: Dongarra, J., Madsen, K., Wasniewski, J. (eds.): +\bibitem{para_04} +A.~Buttari, P.~D'Ambra, D.~di Serafino, S.~Filippone, +{\em Extending PSBLAS to Build Parallel Schwarz Preconditioners}, +in , J.~Dongarra, K.~Madsen, J.~Wasniewski, editors, Proceedings of PARA~04 Workshop on State of the Art -in Scientific Computing. Lecture Notes in Computer Science, 3732. Berlin: -Springer, 2005 +in Scientific Computing, Lecture Notes in Computer Science, +Springer, 2005, 593--602. % -\bibitem{aaecc_07} A. Buttari, D. di Serafino, P. D'Ambra, S. Filippone,\newblock -2LEV-D2P4: a package of high-performance preconditioners,\newblock +\bibitem{aaecc_07} A.~Buttari, P.~D'Ambra, D.~di~Serafino, S.~Filippone, +{\em 2LEV-D2P4: a package of high-performance preconditioners}, Applicable Algebra in Engineering, Communications and Computing, -Volume 18, Number 3, May, 2007, pp. 223-239 +18, 3, May, 2007, 223--239. %Published online: 13 February 2007, {\tt http://dx.doi.org/10.1007/s00200-007-0035-z} % -\bibitem{apnum_07} P. D'Ambra, S. Filippone, D. Di Serafino\newblock -On the Development of PSBLAS-based Parallel Two-level Schwarz Preconditioners -\newblock +\bibitem{apnum_07} P.~D'Ambra, S.~Filippone, D.~Di~Serafino, +{\em On the Development of PSBLAS-based Parallel Two-level Schwarz Preconditioners}, Applied Numerical Mathematics, Elsevier Science, -Volume 57, Issues 11-12, November-December 2007, Pages 1181-1196. +57, 11-12, 2007, 1181-1196. %published online 3 February 2007, {\tt % http://dx.doi.org/10.1016/j.apnum.2007.01.006} @@ -30,118 +46,127 @@ Volume 57, Issues 11-12, November-December 2007, Pages 1181-1196. %% (See also {\tt http://www.mgnet.org/~douglas/ccd-codes.html}) % % -\bibitem{para_04} -A.~Buttari, P.~D'Ambra, D.~di Serafino and S.~Filippone, -{\em Extending PSBLAS to Build Parallel Schwarz Preconditioners}, -in , J.~Dongarra, K.~Madsen, J.~Wasniewski, editors, -Proceedings of PARA~04 Workshop on State of the Art -in Scientific Computing, pp.~593--602, Lecture Notes in Computer Science, -Springer, 2005. -% %% \bibitem{CAI_SAAD} %% X.~C.~Cai and Y.~Saad, %% {\em Overlapping Domain Decomposition Algorithms for General Sparse Matrices}, %% Numerical Linear Algebra with Applications, 3(3), pp.~221--237, 1996. -%% % -%% \bibitem{CAI_SARKIS} -%% X.C.~Cai and M.~Sarkis, -%% {\em A Restricted Additive Schwarz Preconditioner for General Sparse Linear Systems}, -%% SIAM Journal on Scientific Computing, 21(2), pp.~792--797, 1999. +% +\bibitem{CAI_SARKIS} +X.~C.~Cai, M.~Sarkis, +{\em A Restricted Additive Schwarz Preconditioner for General Sparse Linear Systems}, +SIAM Journal on Scientific Computing, 21, 2, 1999, 792--797. % \bibitem{Cai_Widlund_92} -X.C.~Cai and O.~B.~Widlund, +X.~C.~Cai, O.~B.~Widlund, {\em Domain Decomposition Algorithms for Indefinite Elliptic Problems}, -SIAM Journal on Scientific and Statistical Computing, 13(1), pp.~243--258, 1992. +SIAM Journal on Scientific and Statistical Computing, 13, 1, 1992, 243--258. % \bibitem{dd1_94} T.~Chan and T.~Mathew, {\em Domain Decomposition Algorithms}, -in A.~Iserles, editor, Acta Numerica 1994, pp.~61--143, 1994. +in A.~Iserles, editor, Acta Numerica 1994, 61--143. Cambridge University Press. -%% % -%% \bibitem{UMFPACK} -%% T.A.~Davis, -%% {\em Algorithm 832: UMFPACK - an Unsymmetric-pattern Multifrontal -%% Method with a Column Pre-ordering Strategy}, -%% ACM Transactions on Mathematical Software, 30, pp.~196--199, 2004. -%% (See also {\tt http://www.cise.ufl.edu/~davis/}) -%% % -%% \bibitem{SUPERLU} -%% J.W.~Demmel, S.C.~Eisenstat, J.R.~Gilbert, X.S.~Li and J.W.H.~Liu, -%% A supernodal approach to sparse partial pivoting, -%% SIAM Journal on Matrix Analysis and Applications, 20(3), pp.~720--755, 1999. -% -\bibitem{BLACS} -J.~J.~Dongarra and R.~C.~Whaley, -{\em A User's Guide to the BLACS v.~1.1}, -Lapack Working Note 94, Tech.\ Rep.\ UT-CS-95-281, University of -Tennessee, March 1995 (updated May 1997). -% -\bibitem{sblas_97} -I.~Duff, M.~Marrone, G.~Radicati and C.~Vittoli, -{\em Level 3 Basic Linear Algebra Subprograms for Sparse Matrices: -a User Level Interface}, -ACM Transactions on Mathematical Software, 23(3), pp.~379--401, 1997. -% -\bibitem{sblas_02} -I.~Duff, M.~Heroux and R.~Pozo, -{\em An Overview of the Sparse Basic Linear -Algebra Subprograms: the New Standard from the BLAS Technical Forum}, -ACM Transactions on Mathematical Software, 28(2), pp.~239--267, 2002. +% +\bibitem{UMFPACK} +T.A.~Davis, +{\em Algorithm 832: UMFPACK - an Unsymmetric-pattern Multifrontal +Method with a Column Pre-ordering Strategy}, +ACM Transactions on Mathematical Software, 30, 2004, 196--199. +(See also {\tt http://www.cise.ufl.edu/~davis/}) +% +\bibitem{SUPERLU} +J.W.~Demmel, S.C.~Eisenstat, J.R.~Gilbert, X.S.~Li and J.W.H.~Liu, +A supernodal approach to sparse partial pivoting, +SIAM Journal on Matrix Analysis and Applications, 20, 3, 1999, 720--755. +% +%\bibitem{BLACS} +%J.~J.~Dongarra and R.~C.~Whaley, +%{\em A User's Guide to the BLACS v.~1.1}, +%Lapack Working Note 94, Tech.\ Rep.\ UT-CS-95-281, University of +%Tennessee, March 1995 (updated May 1997). +% +%\bibitem{sblas_97} +%I.~Duff, M.~Marrone, G.~Radicati and C.~Vittoli, +%{\em Level 3 Basic Linear Algebra Subprograms for Sparse Matrices: +%a User Level Interface}, +%ACM Transactions on Mathematical Software, 23(3), pp.~379--401, 1997. +% +%\bibitem{sblas_02} +%I.~Duff, M.~Heroux and R.~Pozo, +%{\em An Overview of the Sparse Basic Linear +%Algebra Subprograms: the New Standard from the BLAS Technical Forum}, +%ACM Transactions on Mathematical Software, 28(2), pp.~239--267, 2002. +% +\bibitem{EFSTATHIOU} +E.~Efstathiou, J.~G.~Gander, +{\em Why Restricted Additive Schwarz Converges Faster than Additive Schwarz}, +BIT Numerical Mathematics, 43, 2003, 945--959. +% +\bibitem{PSBLASGUIDE} +S.~Filippone, A.~Buttari, +{\em PSBLAS-2.1 User's Guide. A Reference Guide for the Parallel Sparse BLAS Library}, +xxxxx. % \bibitem{psblas_00} -S.~Filippone and M.~Colajanni, +S.~Filippone, M.~Colajanni, {\em PSBLAS: A Library for Parallel Linear Algebra Computation on Sparse Matrices}, -\newblock -ACM Transactions on Mathematical Software, 26(4), pp.~527--550, 2000. -% -\bibitem{KIVA3PSBLAS} -S.~Filippone, P.~D'Ambra, M.~Colajanni, -{\em Using a Parallel Library of Sparse Linear Algebra in a Fluid Dynamics -Applications Code on Linux Clusters}, -in G.~Joubert, A.~Murli, F.~Peters, M.~Vanneschi, editors, -Parallel Computing - Advances \& Current Issues, -pp.~441--448, Imperial College Press, 2002. -% -\bibitem{METIS} -Karypis, G. and Kumar, V., -{\em {METIS}: Unstructured Graph Partitioning and Sparse Matrix - Ordering System}. -Minneapolis, MN 55455: University of Minnesota, Department of - Computer Science, 1995. -Internet Address: {\verb|http://www.cs.umn.edu/~karypis|}. -\bibitem{BLAS1} -Lawson, C., Hanson, R., Kincaid, D. and Krogh, F., - Basic {L}inear {A}lgebra {S}ubprograms for {F}ortran usage, -{ACM Trans. Math. Softw.} vol.~{5}, 38--329, 1979. - -\bibitem{machiels} -{Machiels, L. and Deville, M.} -{\em Fortran 90: An entry to object-oriented programming for the solution - of partial differential equations.} -{ACM Trans. Math. Softw.} vol.~{23}, 32--49. -\bibitem{metcalf} -{Metcalf, M., Reid, J. and Cohen, M.} -{\em Fortran 95/2003 explained.} -{Oxford University Press}, 2004. - +ACM Transactions on Mathematical Software, 26, 4, 2000, 527--550. +\bibitem{SUPERLUDIST} +X.~S.~Li, J.~W.~Demmel, {\em SuperLU\_DIST: A Scalable Distributed-memory Sparse Direct Solver for Unsymmetric Linear Systems}, +ACM Transactions on Mathematical Software, 29, 2, 2003, 110--140. +% +%\bibitem{KIVA3PSBLAS} +%S.~Filippone, P.~D'Ambra, M.~Colajanni, +%{\em Using a Parallel Library of Sparse Linear Algebra in a Fluid Dynamics +%Applications Code on Linux Clusters}, +%in G.~Joubert, A.~Murli, F.~Peters, M.~Vanneschi, editors, +%Parallel Computing - Advances \& Current Issues, +%pp.~441--448, Imperial College Press, 2002. +% +%\bibitem{METIS} +%Karypis, G. and Kumar, V., +%{\em {METIS}: Unstructured Graph Partitioning and Sparse Matrix +% Ordering System}. +%Minneapolis, MN 55455: University of Minnesota, Department of +% Computer Science, 1995. +%Internet Address: {\verb|http://www.cs.umn.edu/~karypis|}. +%\bibitem{BLAS1} +%Lawson, C., Hanson, R., Kincaid, D. and Krogh, F., +% Basic {L}inear {A}lgebra {S}ubprograms for {F}ortran usage, +%{ACM Trans. Math. Softw.} vol.~{5}, 38--329, 1979. +% +%\bibitem{machiels} +%{Machiels, L. and Deville, M.} +%{\em Fortran 90: An entry to object-oriented programming for the solution +% of partial differential equations.} +%{ACM Trans. Math. Softw.} vol.~{23}, 32--49. +%\bibitem{metcalf} +%{Metcalf, M., Reid, J. and Cohen, M.} +%{\em Fortran 95/2003 explained.} +%{Oxford University Press}, 2004. +% \bibitem{dd2_96} -B.~Smith, P.~Bjorstad and W.~Gropp, +B.~Smith, P.~Bjorstad, W.~Gropp, {\em Domain Decomposition: Parallel Multilevel Methods for Elliptic Partial Differential Equations}, Cambridge University Press, 1996. - +% \bibitem{MPI1} -M.~Snir, S.~Otto, S.~Huss-Lederman, D.~Walker and J.~Dongarra, +M.~Snir, S.~Otto, S.~Huss-Lederman, D.~Walker, J.~Dongarra, {\em MPI: The Complete Reference. Volume 1 - The MPI Core}, second edition, MIT Press, 1998. % -\bibitem{BREZINA_VANEK} -M.~Brezina and P.~Van{\v e}k, -{\em A Black-Box Iterative Solver Based on a Two-Level Schwarz Method}, -Computing, 1999, 63, 233-263. +\bibitem{StubenGMD69_99} +K.~St\"{u}ben, +{\em Algebraic Multigrid (AMG): an Introduction with Applications}, +in A.~Sch\"{u}ller, U.~Trottenberg, C.~Oosterlee, editors, Multigrid, +Academic Press, 2000. % +\bibitem{TUMINARO_TONG} +R.~S.~Tuminaro, C.~Tong, +{\em Parallel Smoothed Aggregation Multigrid: Aggregation Strategies on Massively Parallel Machines}, +in J. Donnelley, editor, Proceedings of SuperComputing 2000, Dallas, 2000. % \bibitem{VANEK_MANDEL_BREZINA} P.~Van{\v e}k, J.~Mandel and M.~Brezina, @@ -149,4 +174,4 @@ P.~Van{\v e}k, J.~Mandel and M.~Brezina, Computing, 1996, 56, 179-196. % -\end{thebibliography} \ No newline at end of file +\end{thebibliography} diff --git a/docs/pdf/building.tex b/docs/pdf/building.tex index 22af9d95..6b28bf2f 100644 --- a/docs/pdf/building.tex +++ b/docs/pdf/building.tex @@ -1,4 +1,6 @@ \section{Configuring and Building MLD2P4\label{sec:configuring}} +\markboth{\underline{MLD2P4 User's and Reference Guide}} + {\underline{\ref{sec:configuring} Configuring and Building}} - uso di GNU autoconf e automake \\ - software di base necessario (MPI, BLACS, BLAS, PSBLAS, UMFPACK ? - specificare versioni)\\ - software opzionale (SuperLU, SuperLUdist - specificare versioni e opzioni di configure)\\ diff --git a/docs/pdf/conventions.tex b/docs/pdf/conventions.tex index fb727ff7..2f59b148 100644 --- a/docs/pdf/conventions.tex +++ b/docs/pdf/conventions.tex @@ -1,4 +1,7 @@ \section{Notational Conventions\label{sec:conventions}} +\markboth{\underline{MLD2P4 User's and Reference Guide}} + {\underline{\ref{sec:conventions} Notational conventions}} + - caratteri tipografici usati nella guida (vedi guida ML recente e guida Aztec) \\ - convenzioni sui nomi di routine (differenza nei nomi tra high-level e medium-level), strutture dati, moduli, costanti, etc. (vedi guida psblas) \\ diff --git a/docs/pdf/distribution.tex b/docs/pdf/distribution.tex index 75a22a02..f6cd18b8 100644 --- a/docs/pdf/distribution.tex +++ b/docs/pdf/distribution.tex @@ -1,4 +1,6 @@ -\section{Code Distribution\label{sec:distribution}} +\section{License\label{sec:distribution}} +\markboth{\underline{MLD2P4 User's and Reference Guide}} + {\underline{\ref{sec:distribution} License}} The MLD2P4 is freely distributable under the following copyright terms: {\small diff --git a/docs/pdf/errors.tex b/docs/pdf/errors.tex index 5952557d..a427ca97 100644 --- a/docs/pdf/errors.tex +++ b/docs/pdf/errors.tex @@ -1,4 +1,6 @@ \section{Error Handling}\label{sec:errors} +\markboth{\underline{MLD2P4 User's and Reference Guide}} + {\underline{\ref{sec:errors} Error handling}} Error handling - Breve descrizione con rinvio alla guida di PSBLAS diff --git a/docs/pdf/gettingstarted.tex b/docs/pdf/gettingstarted.tex index 67373b8e..79350a5e 100644 --- a/docs/pdf/gettingstarted.tex +++ b/docs/pdf/gettingstarted.tex @@ -1,7 +1,9 @@ \section{Getting Started\label{sec:started}} +\markboth{\underline{MLD2P4 User's and Reference Guide}} + {\underline{\ref{sec:started} Getting started}} We describe the basics for building and applying MLD2P4 one-level and multi-level -Schwarz preconditioners with the Krylov solvers included in PSBLAS \cite{}. +Schwarz preconditioners with the Krylov solvers included in PSBLAS \cite{PSBLASGUIDE}. The following steps are required: \begin{enumerate} \item \emph{Declare the preconditioner data structure}. It is a derived data type, @@ -50,11 +52,12 @@ preconditioner has been chosen by taking into account that, on parallel machines, it often leads to the smallest execution time when applied to linear systems coming from finite-difference discretizations of basic elliptic PDE problems, considered as standard tests for multi-level Schwarz -preconditioners \cite{apnum_07,aaecc_07}. However, this solver does not correspond -to the smallest number of iterations of the preconditioned Krylov method, which is -usually obtained by applying a direct solver, e.g.\ based on the LU factorization, at -the coarsest level (see Section~\ref{sec:userinterface} for coarsest-level -solvers available in MLD2P4). +preconditioners \cite{aaecc_07,apnum_07}. However, this solver does +not necessarily to the smallest number of iterations of the +preconditioned Krylov method, which is usually obtained by applying a +direct solver, e.g.\ based on the LU factorization, on a matrix +replicated at the coarsest level (see Section~\ref{sec:userinterface} +for coarsest-level solvers available in MLD2P4). \begin{table}[th] { @@ -108,7 +111,7 @@ in the directory \textbf{XXXXXX (COMPLETARE. DIRE CHE I FILE IN REALTA' SONO DUE LA GENERAZIONE DELLA MATRICE ED UNO CON LA LETTURA).} Note that the modules \verb|psb_base_mod| and \verb|psb_util_mod| at the beginning of the code are required by PSBLAS. \textbf{O psb\_base\_mod} E' RICHIESTO ANCHE DA MLD2P4?) -For details on the use of the PSBLAS routines, see the PSBLAS User's Guide \cite{}. +For details on the use of the PSBLAS routines, see the PSBLAS User's Guide \cite{PSBLASGUIDE}. \textbf{LE FIGURE SONO DECENTRATE, NONOSTANTE IL CENTER. CI VUOLE UNA MINIPAGE?} @@ -178,7 +181,7 @@ the default values of the preconditioner parameters. The code reported in Figure~\ref{fig:ex_3lh} shows how to set a three-level hybrid Schwarz preconditioner, which uses block Jacobi with ILU(0) on the local blocks as post-smoother, a coarsest matrix replicated on the processors, -and the LU factorization from UMFPACK as coarse-level solver. +and the LU factorization from UMFPACK~\cite{UMFPACK}, version 4.4, as coarse-level solver. The number of levels is specified by using \verb|mld_precinit|; the other preconditioner parameters are set by calling \verb|mld_precset|. Note that the type of multilevel framework (i.e.\ multiplicative among the levels @@ -189,13 +192,14 @@ which applies RAS, with overlap 1 and ILU(0) on the blocks, as pre- and post-smoother, and five block-Jacobi sweeps, with the UMFPACK LU factorization on the blocks, as distributed coarsest-level solver. Again, \verb|mld_precset| is used only to set -non-default values of the parameters (see Tables~\ref{tab:ptype}-\ref{tab:pcoarse}). +non-default values of the parameters (see Tables~\ref{tab:p_type}-\ref{tab:p_coarse}). In both cases, the construction and the application of the preconditioner are carried out as for the default multi-level preconditioner. -The code fragments shown in in Figures~\ref{fig:ex_3lh}-\ref{fig:3la} are +The code fragments shown in in Figures~\ref{fig:ex_3lh}-\ref{fig:ex_3la} are included in the example program file \verb|example_ml.f90|. \textbf{LO STESSO PROGRAMMA CONTIENE I TRE ESEMPI, CON UN SWITCH TRA L'UNO E L'ALTRO -O FACCIAMO 3 PROGRAMMI DISTINTI? NON RICORDO CHE COSA ABBIAMO DECISO.} +O FACCIAMO 3 PROGRAMMI DISTINTI? NON RICORDO CHE COSA ABBIAMO DECISO. +PASQUA: ABBIAMO DETTO CHE ERA PREFERIBILE UN UNICO PROGRAMMA CON SWITCH.} Finally, Figure~\ref{fig:ex_1l} shows the setup of a one-level additive Schwarz preconditioner, i.e. RAS with overlap 2. The corresponding code, diff --git a/docs/pdf/highlevelview.tex b/docs/pdf/highlevelview.tex index 7bab0e38..3da97d6e 100644 --- a/docs/pdf/highlevelview.tex +++ b/docs/pdf/highlevelview.tex @@ -1,4 +1,6 @@ \section{User Interface\label{sec:highlevel}} +\markboth{\underline{MLD2P4 User's and Reference Guide}} + {\underline{\ref{sec:overview} User Interface}} The basic user interface of MLD2P4 consists of six routines. The four routines \verb|mld_precinit|, \verb|mld_precset|, \verb|mld_precbld| and \verb|mld_precaply| encapsulate all the functionalities diff --git a/docs/pdf/intro.tex b/docs/pdf/intro.tex index f8db18b6..864ab263 100644 --- a/docs/pdf/intro.tex +++ b/docs/pdf/intro.tex @@ -1,4 +1,6 @@ \section{Introduction}\label{sec:intro} +\markboth{\underline{MLD2P4 User's and Reference Guide}} + {\underline{\ref{sec:overview} Introduction}} The MLD2P4 library provides .... diff --git a/docs/pdf/methods.tex b/docs/pdf/methods.tex index 221ca03a..acb678fd 100644 --- a/docs/pdf/methods.tex +++ b/docs/pdf/methods.tex @@ -1,5 +1,7 @@ \section{Iterative Methods} \label{sec:methods} +\markboth{\underline{MLD2P4 User's and Reference Guide}} + {\underline{\ref{sec:methods} Iterative Methods}} In this chapter we provide routines for preconditioners and iterative methods. The interfaces for Krylov subspace methods are available in diff --git a/docs/pdf/overview.tex b/docs/pdf/overview.tex index 743232cf..0425ca52 100644 --- a/docs/pdf/overview.tex +++ b/docs/pdf/overview.tex @@ -4,7 +4,7 @@ {\underline{\ref{sec:overview} General Overview}} The \textsc{Multi-Level Domain Decomposition Parallel Preconditioners Package based on -PSBLAS (MLD2P4}) provides \emph{multi-level Schwarz preconditioners}~\cite{DD2}, +PSBLAS (MLD2P4}) provides \emph{multi-level Schwarz preconditioners}~\cite{dd2_96}, to be used in the iterative solutions of sparse linear systems: \begin{equation} Ax=b, @@ -18,24 +18,25 @@ where $A$ is a square, real or complex, sparse matrix with a symmetric sparsity % These preconditioners have the following general features: \begin{itemize} -\item both \emph{additive and hybrid multilevel} variants, i.e.\ multiplicative among the levels -and additive inside a level, are implemented; the basic additive Schwarz preconditioners -are obtained by considering only one level; +\item both \emph{additive and hybrid multilevel} variants are implemented, +i.e.\ variants that are additive among the levels and inside each level, and variants +that are multiplicative among the levels and additive inside each level; the basic Additive Schwarz (AS) preconditioners are obtained by considering only one level; \item a \emph{purely algebraic} approach is used to -generate a sequence of coarse-level corrections to a basic preconditioner, without +generate a sequence of coarse-level corrections to a basic AS preconditioner, without explicitly using any information on the geometry of the original problem (e.g.\ the discretization of a PDE). The \emph{smoothed aggregation} technique is applied -as algebraic coarsening strategy~\cite{Vanek_Mandel_Brezina,Brezina_Vanek}. +as algebraic coarsening strategy~\cite{BREZINA_VANEK,VANEK_MANDEL_BREZINA}. \end{itemize} The package is written in \emph{Fortran~95}, following an \emph{object-oriented approach} -through the exploitation of features such as abstract data type creation, functional overloading and -dynamic memory management, while providing a smooth path towards the integration in -legacy application codes. The parallel implementation is based on a Single Program Multiple Data -(SPMD) paradigm for distributed-memory architectures. +through the exploitation of features such as abstract data type creation, functional +overloading and dynamic memory management, while providing a smooth path towards the integration in legacy application codes. +\textbf{NON MI PIACE QUESTO PERIODO, E' TROPPO LUNGO. RIUSCITE A SCRIVERLO MEGLIO?} +The parallel implementation is based +on a Single Program Multiple Data (SPMD) paradigm for distributed-memory architectures. Single and double precision implementations of MLD2P4 are available for both the real and the complex case, that can be used through a single interface. -\textbf{SALVATORE, funziona tutto?} + MLD2P4 has been designed to implement scalable and easy-to-use multilevel preconditioners in the context of the \emph{PSBLAS (Parallel Sparse BLAS) computational framework}~\cite{psblas_00}. @@ -67,7 +68,7 @@ by expert users to build new versions of multi-level Schwarz preconditioners. We provide here a description of the upper-layer routines, but not of the medium-layer ones. -This guide is organized as follows:\textbf{organizzazione della guida} +This guide is organized as follows: \textbf{ORGANIZZAZIONE DELLA GUIDA} %%% Local Variables: %%% mode: latex diff --git a/docs/pdf/precs.tex b/docs/pdf/precs.tex index 6166b796..510606cf 100644 --- a/docs/pdf/precs.tex +++ b/docs/pdf/precs.tex @@ -1,5 +1,7 @@ \section{Preconditioner routines} \label{sec:precs} +\markboth{\underline{MLD2P4 User's and Reference Guide}} + {\underline{\ref{sec:precs} Preconditioners}} % \section{Preconditioners} \label{sec:psprecs} diff --git a/docs/pdf/userguide.tex b/docs/pdf/userguide.tex index 7485e946..4725534f 100644 --- a/docs/pdf/userguide.tex +++ b/docs/pdf/userguide.tex @@ -83,6 +83,7 @@ \newcommand{\precdata}{\hyperlink{precdata}{{\tt mld\_prec\_type}}} \newcommand{\descdata}{\hyperlink{descdata}{{\tt psb\_desc\_type}}} \newcommand{\spdata}{\hyperlink{spdata}{{\tt psb\_spmat\_type}}} +\newcommand{\Ref}[1]{\mbox{(\ref{#1})}} \begin{document} \include{title} @@ -111,7 +112,6 @@ \include{overview} \include{conventions} -\include{distribution} \include{building} \include{background} \include{gettingstarted} @@ -119,6 +119,9 @@ %\include{advanced} \include{errors} %\include{listofroutines} +\cleardoublepage +\appendix +\include{distribution} \cleardoublepage diff --git a/docs/pdf/userinterface.tex b/docs/pdf/userinterface.tex index 3afab284..c49a091b 100644 --- a/docs/pdf/userinterface.tex +++ b/docs/pdf/userinterface.tex @@ -1,4 +1,6 @@ \section{User Interface\label{sec:userinterface}} +\markboth{\underline{MLD2P4 User's and Reference Guide}} + {\underline{\ref{sec:userinterface} User Interface}} The basic user interface of MLD2P4 consists of six routines. The four routines \verb|mld_precinit|, \verb|mld_precset|, \verb|mld_precbld| and \verb|mld_precaply| encapsulate all the functionalities for the setup and application of any one-level and multi-level @@ -48,8 +50,7 @@ according to the preconditioner type chosen by the user. \subsubsection*{Arguments} \begin{tabular}{p{1.2cm}p{11.5cm}} -\verb|p| & \verb|type(mld_|\emph{x}\verb|prec_type), intent(inout)|. - \textbf{CONTROLLARE SE DEVE ESSERE INOUT O SOLO OUT} \\ +\verb|p| & \verb|type(mld_|\emph{x}\verb|prec_type), intent(inout)|.\\ & The preconditioner data structure. Note that \emph{x} must be chosen according to the real/complex, single/double precision version of MLD2P4 under use.\\ @@ -147,10 +148,9 @@ ACCESSIBILE ALL'UTENTE.} MULTILEVEL.} \\ \verb|mld_smoother_pos_| & \verb|character(len=*)| & 'PRE' \ \ \ 'POST' \ \ \ 'TWOSIDE' - & 2,...,\verb|nlev| + & 'POST' & ``position'' of the smoother: pre-smoother, post-smoother, - pre-/post-smoother \textbf{PREFERISCO TWOSIDE A BOTH - PERCHE' E' DIVERSO DA TRILINOS} \\ + pre-/post-smoother \\ \hline \end{tabular} \end{center} @@ -168,31 +168,33 @@ ACCESSIBILE ALL'UTENTE.} \verb|mld_sub_ovr| & \verb|integer| & any number $\ge 0$ & 1 - & \textbf{CAMBIARE NOME PARAMETRO NEL SW} \\ -\verb|mld_sub_restr_| & - & - & - & \\ -\verb|mld_sub_prol_| & - & - & - & \\ -\verb|mld_sub_solve_| & - & - & - & \\ -\verb|mld_sub_fillin_| & - & - & - & \textbf{CAMBIARE NOME PARAMETRO NEL SW} \\ -\verb|mld_sub_thresh_| & - & - & - & \\ -\verb|mld_sub_ren_| & - & + & \textbf{CAMBIARE NOME PARAMETRO NEL SW} number of overlap in the basic Schwarz preconditioner \\ +\verb|mld_sub_restr_| & \verb|character(len=*)| + & 'HALO' \ \ \ 'NONE' + & 'HALO' + & type of restriction operator used in basic Schwarz preconditioner: 'HALO' for taking into account contributions from the overlap \\ +\verb|mld_sub_prol_| & \verb|character(len=*)| + & 'SUM' \ \ \ 'NONE' + & 'NONE' + & type of prolongator operator used in basic Schwarz preconditioner: 'NONE' for neglecting contributions from the overlap \\ +\verb|mld_sub_solve_| & \verb|character(len=*)| + & 'ILU' \ \ \ 'MILU' \ \ \ 'ILUT' \ \ \ 'UMF' \ \ \ 'SLU' + & 'UMF' + & available local solver: 'ILU' for incomplete LU, 'MILU' for modified incomplete LU, 'ILUT' +for incomplete LU with threshold, 'UMF' for complete LU using UMFPACK~\cite{UMFPACK} version 4.4, 'SLU' for complete LU using SuperLU~\cite{SUPERLU}, version 3.0 \\ +\verb|mld_sub_fillin_| & \verb|integer| + & any number $\ge 0$ + & 0 + & \textbf{CAMBIARE NOME PARAMETRO NEL SW} fill-in level for 'ILU', 'MILU' and 'ILUT' of local blocks\\ +\verb|mld_sub_thresh_| & \verb|real| + & any number $\ge 0.$ + & 0. + & drop tolerance for 'ILUT' +\textbf{NELLA DOCUMENTAZIONE INTERNA DELLA ROUTINE DI FATTORIZZAZIONE C'E' INTERO, CAMBIARE!}\\ +\verb|mld_sub_ren_| & \verb|character(len=*)| + & \textbf{MANCA COSTANTE STRINGA ASSOCIATA} & - & \textbf{MANCA COSTANTE STRINGA ASSOCIATA} \\ + & reordering algorithm for the local blocks \\ \hline \end{tabular} @@ -208,22 +210,23 @@ ACCESSIBILE ALL'UTENTE.} \verb|what| & \emph{data type} & \verb|val| & \emph{default} & \emph{comments} \\ \hline %\multicolumn{5}{|c|}{\emph{aggregation algorithm}} \\ \hline -\verb|mld_aggr_alg_| & - & - & - & \\ -\verb|mld_aggr_kind_| & - & - & - & \\ -\verb|mld_aggr_thresh_| & - & - & - & \\ -\verb|mld_aggr_eig_| & - & - & - & \textbf{MANCA STRINGA CORRISPONDENTE a mld\_max\_norm} \\ +\verb|mld_aggr_alg_| & \verb|character(len=*)| + & 'DEC' + & 'DEC' + & define the aggregation scheme. Now, only decoupled aggregation is available\\ +\verb|mld_aggr_kind_| & \verb|character(len=*)| + & 'SMOOTH', 'RAW' + & 'SMOOTH' + & define the type of aggregation technique (smoothed or nonsmoothed). \\ +\verb|mld_aggr_thresh_| & \verb|real| + & any number $\in [0, 1]$ + & 0. + & dropping threshold in aggregation \\ +\verb|mld_aggr_eig_| & \verb|character(len=*)| + & \textbf{MANCA STRINGA CORRISPONDENTE a mld\_max\_norm} + & 'ANORM'??? + & define the algorithm to evaluate the maximum eigenvalue of $D^{-1}A$ for smoothed +aggregation. Now, only the A-norm of the matrix is available\\ \hline \end{tabular} \end{center} @@ -238,30 +241,32 @@ ACCESSIBILE ALL'UTENTE.} \verb|what| & \emph{data type} & \verb|val| & \emph{default} & \emph{comments} \\ \hline %\multicolumn{5}{|c|}{\emph{coarse-space correction at the coarsest level}}\\ \hline -\verb|mld_coarse_mat_| & - & - & - & \\ -\verb|mld_coarse_solve_| & - & - & - & \textbf{VEDI OSSERVAZIONI EMAIL 15-16/06/08}\\ -\verb|mld_coarse_subsolve_| & - & - & - & \textbf{VEDI OSSERVAZIONI EMAIL 15-16/06/08}\\ -\verb|mld_coarse_sweeps_|& - & - & - & \\ -\verb|mld_coarse_fillin_| & - & - & - & \textbf{MODIFICA NOME PARAM. NEL SW} \\ -\verb|mld_coarse_thresh_| & - & - & - & \\ \hline +\verb|mld_coarse_mat_| & \verb|character(len=*)| + & 'DISTR', 'REPL' + & 'DISTR' + & Coarse matrix: distributed or replicated \\ +\verb|mld_coarse_solve_| & \verb|character(len=*)| + & 'BJAC' \ \ \ 'UMF' \ \ \ 'SLUDIST' + & 'BJAC' + & \textbf{VEDI OSSERVAZIONI EMAIL 15-16/06/08} available solver for coarse system. +Only 'BJAC' and 'SLUDIST' can be used for distributed coarse matrix. 'BJAC' corresponds to some sweeps of a block-Jacobi solver, while 'SLUDIST' corresponds +to the use of the external package SuperLU\_Dist~\cite{SUPERLUDIST}, version 2.0, for distributed sparse factorization and solve. \\ +\verb|mld_coarse_subsolve_| & \verb|character(len=*)| + & 'ILU' \ \ \ 'MILU' \ \ \ 'ILUT' \ \ \ 'UMF' \ \ \ 'SLU' + & 'UMF' + & \textbf{VEDI OSSERVAZIONI EMAIL 15-16/06/08} available solver for diagonal local blocks of the coarse matrix, when 'BJAC' is used as coarse solver\\ +\verb|mld_coarse_sweeps_|& \verb|integer| + & any number $> 0$ + & 4 + & number of Block-Jacobi sweeps when 'BJAC' is used as coarse solver \\ +\verb|mld_coarse_fillin_| & \verb|integer| + & any number $\ge 0$ + & 0 + & fill-in level in incomplete factorization of local diagonal blocks of the coarse matrix, when 'BJAC' is used as coarse solver and 'ILU' or 'MILU' is used as local solver \textbf{MODIFICA NOME PARAM. NEL SW} \\ +\verb|mld_coarse_thresh_| & \verb|real| + & any number $\ge 0.$ + & 0. + & drop tolerance in incomplete factorization of local diagonal blocks of the coarse matrix, when 'BJAC' is used as coarse solver and 'ILUT' is used as local solver \\ \hline \end{tabular} \end{center} \caption{Parameters defining the coarse-space correction at the coarsest @@ -287,10 +292,10 @@ the user through the routines \verb|mld_precinit| and \verb|mld_precset|. & The sparse matrix structure containing the local part of the matrix to be preconditioned. Note that \emph{x} must be chosen according to the real/complex, single/double precision version of MLD2P4 under use. - See the PSBLAS User's Guide for details \cite{ }.\\ + See the PSBLAS User's Guide for details \cite{PSBLASGUIDE}.\\ \verb|desc_a| & \verb|type(psb_desc_type), intent(in)|. \\ & The communication descriptor of a. See the PSBLAS User's Guide for - details \cite{ }.\\ + details \cite{PSBLASGUIDE}.\\ \verb|p| & \verb|type(mld_|\emph{x}\verb|prec_type), intent(inout)|.\\ & The preconditioner data structure. Note that \emph{x} must be chosen according to the real/complex, single/double precision version of MLD2P4 under use.\\ diff --git a/docs/userguide.pdf b/docs/userguide.pdf index d81b7a30..3804ee4f 100644 --- a/docs/userguide.pdf +++ b/docs/userguide.pdf @@ -21,78 +21,84 @@ endobj << /S /GoTo /D (section.3) >> endobj 20 0 obj -(3 Code Distribution) +(3 Configuring and Building MLD2P4) endobj 21 0 obj << /S /GoTo /D (section.4) >> endobj 24 0 obj -(4 Configuring and Building MLD2P4) +(4 Getting Started) endobj 25 0 obj -<< /S /GoTo /D (section.5) >> +<< /S /GoTo /D (subsection.4.1) >> endobj 28 0 obj -(5 Getting Started) +(4.1 Examples) endobj 29 0 obj -<< /S /GoTo /D (subsection.5.1) >> +<< /S /GoTo /D (section.5) >> endobj 32 0 obj -(5.1 Examples) +(5 User Interface) endobj 33 0 obj -<< /S /GoTo /D (section.6) >> +<< /S /GoTo /D (subsection.5.1) >> endobj 36 0 obj -(6 User Interface) +(5.1 Subroutine mld\137precinit) endobj 37 0 obj -<< /S /GoTo /D (subsection.6.1) >> +<< /S /GoTo /D (subsection.5.2) >> endobj 40 0 obj -(6.1 Subroutine mld\137precinit) +(5.2 Subroutine mld\137precset) endobj 41 0 obj -<< /S /GoTo /D (subsection.6.2) >> +<< /S /GoTo /D (subsection.5.3) >> endobj 44 0 obj -(6.2 Subroutine mld\137precset) +(5.3 Subroutine mld\137precbld) endobj 45 0 obj -<< /S /GoTo /D (subsection.6.3) >> +<< /S /GoTo /D (subsection.5.4) >> endobj 48 0 obj -(6.3 Subroutine mld\137precbld) +(5.4 Subroutine mld\137precaply) endobj 49 0 obj -<< /S /GoTo /D (subsection.6.4) >> +<< /S /GoTo /D (subsection.5.5) >> endobj 52 0 obj -(6.4 Subroutine mld\137precaply) +(5.5 Subroutine mld\137precfree) endobj 53 0 obj -<< /S /GoTo /D (subsection.6.5) >> +<< /S /GoTo /D (subsection.5.6) >> endobj 56 0 obj -(6.5 Subroutine mld\137precfree) +(5.6 Subroutine mld\137precdescr) endobj 57 0 obj -<< /S /GoTo /D (subsection.6.6) >> +<< /S /GoTo /D (section.6) >> endobj 60 0 obj -(6.6 Subroutine mld\137precdescr) +(6 Error Handling) endobj 61 0 obj -<< /S /GoTo /D (section.7) >> +<< /S /GoTo /D (section.A) >> endobj 64 0 obj -(7 Error Handling) +(A License) endobj 65 0 obj -<< /S /GoTo /D [66 0 R /Fit ] >> +<< /S /GoTo /D (section.B) >> +endobj +68 0 obj +(B Bibliography) +endobj +69 0 obj +<< /S /GoTo /D [70 0 R /Fit ] >> endobj -68 0 obj << +72 0 obj << /Length 1822 >> stream @@ -145,7 +151,7 @@ ET 0 g 0 G 1 0 0 1 -356.4871 -273.4401 cm BT -/F29 11.9552 Tf 361.4684 273.4401 Td[(Soft)28(w)27(are)-326(v)27(ersion:)-435(1)1(.0)]TJ 36.6483 -13.9477 Td[(June)-327(2)1(4,)-326(20)1(08)]TJ +/F29 11.9552 Tf 361.4684 273.4401 Td[(Soft)28(w)27(are)-326(v)27(ersion:)-435(1)1(.0)]TJ 36.6483 -13.9477 Td[(June)-327(2)1(5,)-326(20)1(08)]TJ ET 1 0 0 1 124.802 90.4377 cm 0 g 0 G @@ -153,27 +159,27 @@ ET 0 g 0 G endstream endobj -66 0 obj << +70 0 obj << /Type /Page -/Contents 68 0 R -/Resources 67 0 R +/Contents 72 0 R +/Resources 71 0 R /MediaBox [0 0 595.2756 841.8898] -/Parent 80 0 R +/Parent 84 0 R >> endobj -69 0 obj << -/D [66 0 R /XYZ 124.802 740.9981 null] +73 0 obj << +/D [70 0 R /XYZ 124.802 740.9981 null] >> endobj -70 0 obj << -/D [66 0 R /XYZ 124.802 716.0915 null] +74 0 obj << +/D [70 0 R /XYZ 124.802 716.0915 null] >> endobj 6 0 obj << -/D [66 0 R /XYZ 124.802 716.0915 null] +/D [70 0 R /XYZ 124.802 716.0915 null] >> endobj -67 0 obj << -/Font << /F18 73 0 R /F20 76 0 R /F29 79 0 R >> +71 0 obj << +/Font << /F18 77 0 R /F20 80 0 R /F29 83 0 R >> /ProcSet [ /PDF /Text ] >> endobj -83 0 obj << +87 0 obj << /Length 135 >> stream @@ -187,20 +193,20 @@ stream 0 g 0 G endstream endobj -82 0 obj << +86 0 obj << /Type /Page -/Contents 83 0 R -/Resources 81 0 R +/Contents 87 0 R +/Resources 85 0 R /MediaBox [0 0 595.2756 841.8898] -/Parent 80 0 R +/Parent 84 0 R >> endobj -84 0 obj << -/D [82 0 R /XYZ 124.802 740.9981 null] +88 0 obj << +/D [86 0 R /XYZ 124.802 740.9981 null] >> endobj -81 0 obj << +85 0 obj << /ProcSet [ /PDF ] >> endobj -87 0 obj << +91 0 obj << /Length 4270 >> stream @@ -246,22 +252,22 @@ ET 0 g 0 G endstream endobj -86 0 obj << +90 0 obj << /Type /Page -/Contents 87 0 R -/Resources 85 0 R +/Contents 91 0 R +/Resources 89 0 R /MediaBox [0 0 595.2756 841.8898] -/Parent 80 0 R +/Parent 84 0 R >> endobj -88 0 obj << -/D [86 0 R /XYZ 124.802 740.9981 null] +92 0 obj << +/D [90 0 R /XYZ 124.802 740.9981 null] >> endobj -85 0 obj << -/Font << /F8 91 0 R /F32 94 0 R /F33 97 0 R /F31 100 0 R >> +89 0 obj << +/Font << /F8 95 0 R /F32 98 0 R /F33 101 0 R /F31 104 0 R >> /ProcSet [ /PDF /Text ] >> endobj -103 0 obj << -/Length 7516 +107 0 obj << +/Length 7765 >> stream 1 0 0 1 124.802 740.9981 cm @@ -304,11 +310,11 @@ ET 0 0 1 rg 0 0 1 RG 1 0 0 1 -124.802 -640.3754 cm BT -/F37 9.9626 Tf 124.802 640.3754 Td[(3)-925(Co)-32(d)1(e)-384(Distributi)-1(on)]TJ +/F37 9.9626 Tf 124.802 640.3754 Td[(3)-925(Con)1(\014guring)-384(an)1(d)-384(Buildi)-1(ng)-383(ML)1(D2P4)]TJ ET -1 0 0 1 230.8082 640.3754 cm +1 0 0 1 316.6857 640.3754 cm 0 g 0 G -1 0 0 1 -230.8082 -640.3754 cm +1 0 0 1 -316.6857 -640.3754 cm BT /F37 9.9626 Tf 462.7846 640.3754 Td[(4)]TJ ET @@ -316,65 +322,53 @@ ET 0 0 1 rg 0 0 1 RG 1 0 0 1 -124.802 -618.4576 cm BT -/F37 9.9626 Tf 124.802 618.4576 Td[(4)-925(Con)1(\014guring)-384(an)1(d)-384(Buildi)-1(ng)-383(ML)1(D2P4)]TJ +/F37 9.9626 Tf 124.802 618.4576 Td[(4)-925(Gett)-1(ing)-383(Started)]TJ ET -1 0 0 1 316.6857 618.4576 cm +1 0 0 1 219.1907 618.4576 cm 0 g 0 G -1 0 0 1 -316.6857 -618.4576 cm +1 0 0 1 -219.1907 -618.4576 cm BT /F37 9.9626 Tf 462.7846 618.4576 Td[(5)]TJ ET -1 0 0 1 124.802 596.5397 cm +1 0 0 1 139.746 606.5024 cm 0 0 1 rg 0 0 1 RG -1 0 0 1 -124.802 -596.5397 cm +1 0 0 1 -139.746 -606.5024 cm BT -/F37 9.9626 Tf 124.802 596.5397 Td[(5)-925(Gett)-1(ing)-383(Started)]TJ +/F8 9.9626 Tf 139.746 606.5024 Td[(4.1)-1022(Ex)1(am)-1(p)1(les)]TJ ET -1 0 0 1 219.1907 596.5397 cm +1 0 0 1 204.6417 606.5024 cm 0 g 0 G -1 0 0 1 -219.1907 -596.5397 cm +1 0 0 1 -204.6417 -606.5024 cm BT -/F37 9.9626 Tf 462.7846 596.5397 Td[(6)]TJ +/F8 9.9626 Tf 212.5273 606.5024 Td[(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-500(.)-499(.)-500(.)]TJ ET -1 0 0 1 139.746 584.5846 cm -0 0 1 rg 0 0 1 RG -1 0 0 1 -139.746 -584.5846 cm -BT -/F8 9.9626 Tf 139.746 584.5846 Td[(5.1)-1022(Ex)1(am)-1(p)1(les)]TJ -ET -1 0 0 1 204.6417 584.5846 cm -0 g 0 G -1 0 0 1 -204.6417 -584.5846 cm -BT -/F8 9.9626 Tf 212.5273 584.5846 Td[(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-500(.)-499(.)-500(.)]TJ -ET -1 0 0 1 463.5317 584.5846 cm +1 0 0 1 463.5317 606.5024 cm 0 g 0 G -1 0 0 1 -463.5317 -584.5846 cm +1 0 0 1 -463.5317 -606.5024 cm BT -/F8 9.9626 Tf 463.5317 584.5846 Td[(7)]TJ +/F8 9.9626 Tf 463.5317 606.5024 Td[(6)]TJ ET -1 0 0 1 468.5131 584.5846 cm +1 0 0 1 468.5131 606.5024 cm 0 g 0 G 1 0 0 1 -343.7111 -21.9178 cm 0 0 1 rg 0 0 1 RG -1 0 0 1 -124.802 -562.6668 cm +1 0 0 1 -124.802 -584.5846 cm BT -/F37 9.9626 Tf 124.802 562.6668 Td[(6)-925(Us)1(er)-383(In)32(t)-1(er)1(f)-1(ace)]TJ +/F37 9.9626 Tf 124.802 584.5846 Td[(5)-925(Us)1(er)-383(In)32(t)-1(er)1(f)-1(ace)]TJ ET -1 0 0 1 211.0975 562.6668 cm +1 0 0 1 211.0975 584.5846 cm 0 g 0 G -1 0 0 1 -211.0975 -562.6668 cm +1 0 0 1 -211.0975 -584.5846 cm BT -/F37 9.9626 Tf 457.0561 562.6668 Td[(11)]TJ +/F37 9.9626 Tf 457.0561 584.5846 Td[(10)]TJ ET -1 0 0 1 139.746 550.7116 cm +1 0 0 1 139.746 572.6294 cm 0 0 1 rg 0 0 1 RG -1 0 0 1 -139.746 -550.7116 cm +1 0 0 1 -139.746 -572.6294 cm BT -/F8 9.9626 Tf 139.746 550.7116 Td[(6.1)-1022(Su)1(br)1(outin)1(e)-334(mld)]TJ +/F8 9.9626 Tf 139.746 572.6294 Td[(5.1)-1022(Su)1(br)1(outin)1(e)-334(mld)]TJ ET -1 0 0 1 230.8102 550.7116 cm +1 0 0 1 230.8102 572.6294 cm q []0 d 0 J @@ -383,31 +377,31 @@ q 2.9888 0.1992 l S Q -1 0 0 1 -230.8102 -550.7116 cm +1 0 0 1 -230.8102 -572.6294 cm BT -/F8 9.9626 Tf 233.7991 550.7116 Td[(pr)1(e)-1(cin)1(it)]TJ +/F8 9.9626 Tf 233.7991 572.6294 Td[(pr)1(e)-1(cin)1(it)]TJ ET -1 0 0 1 267.0356 550.7116 cm +1 0 0 1 267.0356 572.6294 cm 0 g 0 G -1 0 0 1 -267.0356 -550.7116 cm +1 0 0 1 -267.0356 -572.6294 cm BT -/F8 9.9626 Tf 274.5161 550.7116 Td[(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)]TJ +/F8 9.9626 Tf 274.5161 572.6294 Td[(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)]TJ ET -1 0 0 1 458.5504 550.7116 cm +1 0 0 1 458.5504 572.6294 cm 0 g 0 G -1 0 0 1 -458.5504 -550.7116 cm +1 0 0 1 -458.5504 -572.6294 cm BT -/F8 9.9626 Tf 458.5504 550.7116 Td[(11)]TJ +/F8 9.9626 Tf 458.5504 572.6294 Td[(10)]TJ ET -1 0 0 1 468.5131 550.7116 cm +1 0 0 1 468.5131 572.6294 cm 0 g 0 G 1 0 0 1 -328.7671 -11.9552 cm 0 0 1 rg 0 0 1 RG -1 0 0 1 -139.746 -538.7564 cm +1 0 0 1 -139.746 -560.6742 cm BT -/F8 9.9626 Tf 139.746 538.7564 Td[(6.2)-1022(Su)1(br)1(outin)1(e)-334(mld)]TJ +/F8 9.9626 Tf 139.746 560.6742 Td[(5.2)-1022(Su)1(br)1(outin)1(e)-334(mld)]TJ ET -1 0 0 1 230.8102 538.7564 cm +1 0 0 1 230.8102 560.6742 cm q []0 d 0 J @@ -416,31 +410,31 @@ q 2.9888 0.1992 l S Q -1 0 0 1 -230.8102 -538.7564 cm +1 0 0 1 -230.8102 -560.6742 cm BT -/F8 9.9626 Tf 233.7991 538.7564 Td[(pr)1(e)-1(cs)-1(et)]TJ +/F8 9.9626 Tf 233.7991 560.6742 Td[(pr)1(e)-1(cs)-1(et)]TJ ET -1 0 0 1 264.3235 538.7564 cm +1 0 0 1 264.3235 560.6742 cm 0 g 0 G -1 0 0 1 -264.3235 -538.7564 cm +1 0 0 1 -264.3235 -560.6742 cm BT -/F8 9.9626 Tf 274.5161 538.7564 Td[(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)]TJ +/F8 9.9626 Tf 274.5161 560.6742 Td[(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)]TJ ET -1 0 0 1 458.5504 538.7564 cm +1 0 0 1 458.5504 560.6742 cm 0 g 0 G -1 0 0 1 -458.5504 -538.7564 cm +1 0 0 1 -458.5504 -560.6742 cm BT -/F8 9.9626 Tf 458.5504 538.7564 Td[(12)]TJ +/F8 9.9626 Tf 458.5504 560.6742 Td[(11)]TJ ET -1 0 0 1 468.5131 538.7564 cm +1 0 0 1 468.5131 560.6742 cm 0 g 0 G -1 0 0 1 -328.7671 -11.9552 cm +1 0 0 1 -328.7671 -11.9551 cm 0 0 1 rg 0 0 1 RG -1 0 0 1 -139.746 -526.8012 cm +1 0 0 1 -139.746 -548.7191 cm BT -/F8 9.9626 Tf 139.746 526.8012 Td[(6.3)-1022(Su)1(br)1(outin)1(e)-334(mld)]TJ +/F8 9.9626 Tf 139.746 548.7191 Td[(5.3)-1022(Su)1(br)1(outin)1(e)-334(mld)]TJ ET -1 0 0 1 230.8102 526.8012 cm +1 0 0 1 230.8102 548.7191 cm q []0 d 0 J @@ -449,31 +443,31 @@ q 2.9888 0.1992 l S Q -1 0 0 1 -230.8102 -526.8012 cm +1 0 0 1 -230.8102 -548.7191 cm BT -/F8 9.9626 Tf 233.7991 526.8012 Td[(pr)1(e)-1(cbl)1(d)]TJ +/F8 9.9626 Tf 233.7991 548.7191 Td[(pr)1(e)-1(cbl)1(d)]TJ ET -1 0 0 1 265.9286 526.8012 cm +1 0 0 1 265.9286 548.7191 cm 0 g 0 G -1 0 0 1 -265.9286 -526.8012 cm +1 0 0 1 -265.9286 -548.7191 cm BT -/F8 9.9626 Tf 274.5161 526.8012 Td[(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)]TJ +/F8 9.9626 Tf 274.5161 548.7191 Td[(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)]TJ ET -1 0 0 1 458.5504 526.8012 cm +1 0 0 1 458.5504 548.7191 cm 0 g 0 G -1 0 0 1 -458.5504 -526.8012 cm +1 0 0 1 -458.5504 -548.7191 cm BT -/F8 9.9626 Tf 458.5504 526.8012 Td[(17)]TJ +/F8 9.9626 Tf 458.5504 548.7191 Td[(16)]TJ ET -1 0 0 1 468.5131 526.8012 cm +1 0 0 1 468.5131 548.7191 cm 0 g 0 G -1 0 0 1 -328.7671 -11.9551 cm +1 0 0 1 -328.7671 -11.9552 cm 0 0 1 rg 0 0 1 RG -1 0 0 1 -139.746 -514.8461 cm +1 0 0 1 -139.746 -536.7639 cm BT -/F8 9.9626 Tf 139.746 514.8461 Td[(6.4)-1022(Su)1(br)1(outin)1(e)-334(mld)]TJ +/F8 9.9626 Tf 139.746 536.7639 Td[(5.4)-1022(Su)1(br)1(outin)1(e)-334(mld)]TJ ET -1 0 0 1 230.8102 514.8461 cm +1 0 0 1 230.8102 536.7639 cm q []0 d 0 J @@ -482,31 +476,31 @@ q 2.9888 0.1992 l S Q -1 0 0 1 -230.8102 -514.8461 cm +1 0 0 1 -230.8102 -536.7639 cm BT -/F8 9.9626 Tf 233.7991 514.8461 Td[(pr)1(e)-1(capl)1(y)]TJ +/F8 9.9626 Tf 233.7991 536.7639 Td[(pr)1(e)-1(capl)1(y)]TJ ET -1 0 0 1 270.6332 514.8461 cm +1 0 0 1 270.6332 536.7639 cm 0 g 0 G -1 0 0 1 -270.6332 -514.8461 cm +1 0 0 1 -270.6332 -536.7639 cm BT -/F8 9.9626 Tf 274.5161 514.8461 Td[(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)]TJ +/F8 9.9626 Tf 274.5161 536.7639 Td[(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)]TJ ET -1 0 0 1 458.5504 514.8461 cm +1 0 0 1 458.5504 536.7639 cm 0 g 0 G -1 0 0 1 -458.5504 -514.8461 cm +1 0 0 1 -458.5504 -536.7639 cm BT -/F8 9.9626 Tf 458.5504 514.8461 Td[(18)]TJ +/F8 9.9626 Tf 458.5504 536.7639 Td[(17)]TJ ET -1 0 0 1 468.5131 514.8461 cm +1 0 0 1 468.5131 536.7639 cm 0 g 0 G 1 0 0 1 -328.7671 -11.9552 cm 0 0 1 rg 0 0 1 RG -1 0 0 1 -139.746 -502.8909 cm +1 0 0 1 -139.746 -524.8087 cm BT -/F8 9.9626 Tf 139.746 502.8909 Td[(6.5)-1022(Su)1(br)1(outin)1(e)-334(mld)]TJ +/F8 9.9626 Tf 139.746 524.8087 Td[(5.5)-1022(Su)1(br)1(outin)1(e)-334(mld)]TJ ET -1 0 0 1 230.8102 502.8909 cm +1 0 0 1 230.8102 524.8087 cm q []0 d 0 J @@ -515,31 +509,31 @@ q 2.9888 0.1992 l S Q -1 0 0 1 -230.8102 -502.8909 cm +1 0 0 1 -230.8102 -524.8087 cm BT -/F8 9.9626 Tf 233.7991 502.8909 Td[(pr)1(e)-1(cfr)1(e)-1(e)]TJ +/F8 9.9626 Tf 233.7991 524.8087 Td[(pr)1(e)-1(cfr)1(e)-1(e)]TJ ET -1 0 0 1 267.8935 502.8909 cm +1 0 0 1 267.8935 524.8087 cm 0 g 0 G -1 0 0 1 -267.8935 -502.8909 cm +1 0 0 1 -267.8935 -524.8087 cm BT -/F8 9.9626 Tf 274.5161 502.8909 Td[(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)]TJ +/F8 9.9626 Tf 274.5161 524.8087 Td[(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)]TJ ET -1 0 0 1 458.5504 502.8909 cm +1 0 0 1 458.5504 524.8087 cm 0 g 0 G -1 0 0 1 -458.5504 -502.8909 cm +1 0 0 1 -458.5504 -524.8087 cm BT -/F8 9.9626 Tf 458.5504 502.8909 Td[(18)]TJ +/F8 9.9626 Tf 458.5504 524.8087 Td[(17)]TJ ET -1 0 0 1 468.5131 502.8909 cm +1 0 0 1 468.5131 524.8087 cm 0 g 0 G -1 0 0 1 -328.7671 -11.9552 cm +1 0 0 1 -328.7671 -11.9551 cm 0 0 1 rg 0 0 1 RG -1 0 0 1 -139.746 -490.9357 cm +1 0 0 1 -139.746 -512.8536 cm BT -/F8 9.9626 Tf 139.746 490.9357 Td[(6.6)-1022(Su)1(br)1(outin)1(e)-334(mld)]TJ +/F8 9.9626 Tf 139.746 512.8536 Td[(5.6)-1022(Su)1(br)1(outin)1(e)-334(mld)]TJ ET -1 0 0 1 230.8102 490.9357 cm +1 0 0 1 230.8102 512.8536 cm q []0 d 0 J @@ -548,160 +542,191 @@ q 2.9888 0.1992 l S Q -1 0 0 1 -230.8102 -490.9357 cm +1 0 0 1 -230.8102 -512.8536 cm BT -/F8 9.9626 Tf 233.7991 490.9357 Td[(pr)1(e)-1(cdes)-1(cr)]TJ +/F8 9.9626 Tf 233.7991 512.8536 Td[(pr)1(e)-1(cdes)-1(cr)]TJ ET -1 0 0 1 274.3138 490.9357 cm +1 0 0 1 274.3138 512.8536 cm 0 g 0 G -1 0 0 1 -274.3138 -490.9357 cm +1 0 0 1 -274.3138 -512.8536 cm BT -/F8 9.9626 Tf 282.2647 490.9357 Td[(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-499(.)-500(.)]TJ +/F8 9.9626 Tf 282.2647 512.8536 Td[(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-500(.)-499(.)-500(.)-500(.)-500(.)-499(.)-500(.)]TJ ET -1 0 0 1 458.5504 490.9357 cm +1 0 0 1 458.5504 512.8536 cm 0 g 0 G -1 0 0 1 -458.5504 -490.9357 cm +1 0 0 1 -458.5504 -512.8536 cm BT -/F8 9.9626 Tf 458.5504 490.9357 Td[(19)]TJ +/F8 9.9626 Tf 458.5504 512.8536 Td[(18)]TJ ET -1 0 0 1 468.5131 490.9357 cm +1 0 0 1 468.5131 512.8536 cm 0 g 0 G -1 0 0 1 -343.7111 -21.9178 cm +1 0 0 1 -343.7111 -21.9179 cm +0 0 1 rg 0 0 1 RG +1 0 0 1 -124.802 -490.9357 cm +BT +/F37 9.9626 Tf 124.802 490.9357 Td[(6)-925(Er)1(ror)-383(Handling)]TJ +ET +1 0 0 1 216.7001 490.9357 cm +0 g 0 G +1 0 0 1 -216.7001 -490.9357 cm +BT +/F37 9.9626 Tf 457.0561 490.9357 Td[(19)]TJ +ET +1 0 0 1 124.802 469.0179 cm 0 0 1 rg 0 0 1 RG 1 0 0 1 -124.802 -469.0179 cm BT -/F37 9.9626 Tf 124.802 469.0179 Td[(7)-925(Er)1(ror)-383(Handling)]TJ +/F37 9.9626 Tf 124.802 469.0179 Td[(A)-631(License)]TJ ET -1 0 0 1 216.7001 469.0179 cm +1 0 0 1 176.2976 469.0179 cm 0 g 0 G -1 0 0 1 -216.7001 -469.0179 cm +1 0 0 1 -176.2976 -469.0179 cm BT /F37 9.9626 Tf 457.0561 469.0179 Td[(20)]TJ ET +1 0 0 1 124.802 447.1001 cm +0 0 1 rg 0 0 1 RG +1 0 0 1 -124.802 -447.1001 cm +BT +/F37 9.9626 Tf 124.802 447.1001 Td[(B)-682(Bi)-1(b)1(l)-1(iograph)32(y)]TJ +ET +1 0 0 1 204.0116 447.1001 cm +0 g 0 G +1 0 0 1 -204.0116 -447.1001 cm +BT +/F37 9.9626 Tf 457.0561 447.1001 Td[(21)]TJ +ET 1 0 0 1 124.802 90.4377 cm 0 g 0 G 1 0 0 1 343.7111 0 cm 0 g 0 G endstream endobj -102 0 obj << +106 0 obj << /Type /Page -/Contents 103 0 R -/Resources 101 0 R +/Contents 107 0 R +/Resources 105 0 R /MediaBox [0 0 595.2756 841.8898] -/Parent 80 0 R -/Annots [ 106 0 R 110 0 R 111 0 R 112 0 R 113 0 R 114 0 R 115 0 R 116 0 R 117 0 R 118 0 R 119 0 R 120 0 R 121 0 R 122 0 R ] +/Parent 84 0 R +/Annots [ 110 0 R 114 0 R 115 0 R 116 0 R 117 0 R 118 0 R 119 0 R 120 0 R 121 0 R 122 0 R 123 0 R 124 0 R 125 0 R 126 0 R 127 0 R ] >> endobj -106 0 obj << +110 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [123.8057 683.2148 230.9659 692.1258] /Subtype /Link /A << /S /GoTo /D (section.1) >> >> endobj -110 0 obj << +114 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [123.8057 661.2969 259.0908 670.208] /Subtype /Link /A << /S /GoTo /D (section.2) >> >> endobj -111 0 obj << +115 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] -/Rect [123.8057 639.3791 231.8044 648.2901] +/Rect [123.8057 637.4419 317.6819 648.2901] /Subtype /Link /A << /S /GoTo /D (section.3) >> >> endobj -112 0 obj << +116 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] -/Rect [123.8057 615.5241 317.6819 626.3723] +/Rect [123.8057 615.5241 220.1869 626.3723] /Subtype /Link /A << /S /GoTo /D (section.4) >> >> endobj -113 0 obj << +117 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [138.7497 603.569 205.6379 614.4172] +/Subtype /Link +/A << /S /GoTo /D (subsection.4.1) >> +>> endobj +118 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] -/Rect [123.8057 593.6063 220.1869 604.4545] +/Rect [123.8057 583.5883 212.0937 592.4993] /Subtype /Link /A << /S /GoTo /D (section.5) >> >> endobj -114 0 obj << +119 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] -/Rect [138.7497 581.6511 205.6379 592.4993] +/Rect [138.7497 569.696 268.0319 580.5442] /Subtype /Link /A << /S /GoTo /D (subsection.5.1) >> >> endobj -115 0 obj << +120 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] -/Rect [123.8057 561.6705 212.0937 570.5815] +/Rect [138.7497 557.7408 265.3198 568.589] /Subtype /Link -/A << /S /GoTo /D (section.6) >> +/A << /S /GoTo /D (subsection.5.2) >> >> endobj -116 0 obj << +121 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] -/Rect [138.7497 547.7781 268.0319 558.6263] +/Rect [138.7497 545.7856 266.9249 556.6338] /Subtype /Link -/A << /S /GoTo /D (subsection.6.1) >> +/A << /S /GoTo /D (subsection.5.3) >> >> endobj -117 0 obj << +122 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] -/Rect [138.7497 535.823 265.3198 546.6712] +/Rect [138.7497 533.8305 271.6295 544.6787] /Subtype /Link -/A << /S /GoTo /D (subsection.6.2) >> +/A << /S /GoTo /D (subsection.5.4) >> >> endobj -118 0 obj << +123 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] -/Rect [138.7497 523.8678 266.9249 534.716] +/Rect [138.7497 521.8753 268.8897 532.7235] /Subtype /Link -/A << /S /GoTo /D (subsection.6.3) >> +/A << /S /GoTo /D (subsection.5.5) >> >> endobj -119 0 obj << +124 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] -/Rect [138.7497 511.9126 271.6295 522.7608] +/Rect [138.7497 509.9201 275.3101 520.7683] /Subtype /Link -/A << /S /GoTo /D (subsection.6.4) >> +/A << /S /GoTo /D (subsection.5.6) >> >> endobj -120 0 obj << +125 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] -/Rect [138.7497 499.9575 268.8897 510.8057] +/Rect [123.8057 488.0023 217.6963 498.8505] /Subtype /Link -/A << /S /GoTo /D (subsection.6.5) >> +/A << /S /GoTo /D (section.6) >> >> endobj -121 0 obj << +126 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] -/Rect [138.7497 488.0023 275.3101 498.8505] +/Rect [123.8057 468.0217 177.2939 476.9327] /Subtype /Link -/A << /S /GoTo /D (subsection.6.6) >> +/A << /S /GoTo /D (section.A) >> >> endobj -122 0 obj << +127 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] -/Rect [123.8057 466.0845 217.6963 476.9327] +/Rect [123.8057 444.1667 205.0078 455.0149] /Subtype /Link -/A << /S /GoTo /D (section.7) >> +/A << /S /GoTo /D (section.B) >> >> endobj -104 0 obj << -/D [102 0 R /XYZ 124.802 740.9981 null] +108 0 obj << +/D [106 0 R /XYZ 124.802 740.9981 null] >> endobj -105 0 obj << -/D [102 0 R /XYZ 124.802 696.2631 null] +109 0 obj << +/D [106 0 R /XYZ 124.802 696.2631 null] >> endobj -101 0 obj << -/Font << /F8 91 0 R /F18 73 0 R /F37 109 0 R >> +105 0 obj << +/Font << /F8 95 0 R /F18 77 0 R /F37 113 0 R >> /ProcSet [ /PDF /Text ] >> endobj -125 0 obj << -/Length 11699 +130 0 obj << +/Length 11874 >> stream 1 0 0 1 124.802 740.9981 cm @@ -734,67 +759,115 @@ ET 0 g 0 G 1 0 0 1 -468.5131 -740.9981 cm BT -/F18 14.3462 Tf 124.802 706.1289 Td[(1)-1125(G)-1(ener)-1(al)-375(Ov)31(ervi)-1(ew)]TJ/F8 9.9626 Tf 0 -21.821 Td[(The)]TJ/F33 9.9626 Tf 21.4036 0 Td[(Mul)66(ti-Level)-476(Do)1(mai)-1(n)-475(Decomp)1(osition)-475(P)88(a)-1(ral)-1(lel)-475(Precondi)-1(tioners)]TJ -21.4036 -11.9551 Td[(P)88(a)22(cka)22(ge)-443(based)-444(o)1(n)-444(P)1(S)-1(B)1(L)-1(AS)-443(\050MLD2P4)]TJ/F8 9.9626 Tf 190.6202 0 Td[(\051)-396(p)1(ro)28(vid)1(e)-1(s)]TJ/F19 9.9626 Tf 47.8173 0 Td[(mu)1(lti-l)1(evel)-415(Schw)-1(ar)1(z)-415(p)-1(r)52(e-)]TJ -238.4375 -11.9552 Td[(c)51(onditioners)]TJ/F8 9.9626 Tf 56.9679 0 Td[([)]TJ/F37 9.9626 Tf 2.7674 0 Td[(?)]TJ/F8 9.9626 Tf 5.4103 0 Td[(],)-333(to)-333(b)-27(e)-334(use)-1(d)-333(i)1(n)-333(the)-333(ite)-1(r)1(ativ)28(e)-334(solut)1(ions)-334(of)-332(s)-1(p)1(ars)-1(e)-333(lin)1(e)-1(ar)-333(sys)-1(t)1(e)-1(ms)-1(:)]TJ/F11 9.9626 Tf 89.1335 -20.4476 Td[(Ax)]TJ/F8 9.9626 Tf 15.9333 0 Td[(=)]TJ/F11 9.9626 Tf 10.5161 0 Td[(b;)]TJ +/F18 14.3462 Tf 124.802 706.1289 Td[(1)-1125(G)-1(ener)-1(al)-375(Ov)31(ervi)-1(ew)]TJ/F8 9.9626 Tf 0 -21.821 Td[(The)]TJ/F33 9.9626 Tf 21.4036 0 Td[(Mul)66(ti-Level)-476(Do)1(mai)-1(n)-475(Decomp)1(osition)-475(P)88(a)-1(ral)-1(lel)-475(Precondi)-1(tioners)]TJ -21.4036 -11.9551 Td[(P)88(a)22(cka)22(ge)-443(based)-444(o)1(n)-444(P)1(S)-1(B)1(L)-1(AS)-443(\050MLD2P4)]TJ/F8 9.9626 Tf 190.6202 0 Td[(\051)-396(p)1(ro)28(vid)1(e)-1(s)]TJ/F19 9.9626 Tf 47.8173 0 Td[(mu)1(lti-l)1(evel)-415(Schw)-1(ar)1(z)-415(p)-1(r)52(e-)]TJ -238.4375 -11.9552 Td[(c)51(onditioners)]TJ/F8 9.9626 Tf 56.9679 0 Td[([)]TJ +ET +1 0 0 1 184.5373 660.3976 cm +0 1 0 rg 0 1 0 RG +1 0 0 1 -184.5373 -660.3976 cm +BT +/F8 9.9626 Tf 184.5373 660.3976 Td[(14)]TJ +ET +1 0 0 1 194.5 660.3976 cm +0 g 0 G +1 0 0 1 -194.5 -660.3976 cm +BT +/F8 9.9626 Tf 194.5 660.3976 Td[(],)-333(to)-333(b)-27(e)-334(use)-1(d)-333(i)1(n)-333(the)-333(ite)-1(r)1(ativ)28(e)-334(solut)1(ions)-334(of)-332(s)-1(p)1(ars)-1(e)-333(lin)1(e)-1(ar)-333(sys)-1(t)1(e)-1(ms)-1(:)]TJ/F11 9.9626 Tf 84.5812 -21.9178 Td[(Ax)]TJ/F8 9.9626 Tf 15.9332 0 Td[(=)]TJ/F11 9.9626 Tf 10.5161 0 Td[(b;)]TJ +ET +1 0 0 1 455.783 638.4798 cm +0 g 0 G +1 0 0 1 -455.783 -638.4798 cm +BT +/F8 9.9626 Tf 455.783 638.4798 Td[(\0501\051)]TJ +ET +1 0 0 1 468.5131 638.4798 cm +0 g 0 G +1 0 0 1 -468.5131 -638.4798 cm +BT +/F8 9.9626 Tf 124.802 616.562 Td[(where)]TJ/F11 9.9626 Tf 28.989 0 Td[(A)]TJ/F8 9.9626 Tf 10.9732 0 Td[(is)-352(a)-351(s)-1(q)1(uare,)-356(r)1(e)-1(al)-351(or)-351(c)-1(ompl)1(e)-1(x,)-355(s)-1(p)1(arse)-352(m)-1(atr)1(ix)-351(with)-351(a)-352(symme)-1(tr)1(ic)-352(s)-1(p)1(arsit)28(y)]TJ -39.9622 -11.9552 Td[(pat)1(te)-1(r)1(n.)-444(Thes)-1(e)-334(p)1(rec)-1(on)1(diti)1(oners)-334(h)1(a)27(v)28(e)-333(the)-334(f)1(ollo)28(wing)-333(general)-333(featur)1(e)-1(s:)]TJ +ET +1 0 0 1 124.802 584.6815 cm +0 g 0 G +1 0 0 1 -124.802 -584.6815 cm +BT +/F14 9.9626 Tf 139.746 584.6815 Td[(\017)]TJ ET -1 0 0 1 455.783 639.95 cm +1 0 0 1 144.7273 584.6815 cm 0 g 0 G -1 0 0 1 -455.783 -639.95 cm +1 0 0 1 -144.7273 -584.6815 cm BT -/F8 9.9626 Tf 455.783 639.95 Td[(\0501\051)]TJ +/F8 9.9626 Tf 149.7086 584.6815 Td[(b)-27(oth)]TJ/F19 9.9626 Tf 23.0523 0 Td[(additive)-314(an)-1(d)-314(hybr)1(id)-314(mul)1(t)-1(i)1(level)]TJ/F8 9.9626 Tf 131.0259 0 Td[(v)56(arian)29(ts)-287(are)-286(impleme)-1(n)28(t)1(e)-1(d)1(,)-296(i.)1(e)-1(.)-286(v)56(ari)1(an)28(ts)]TJ -154.0782 -11.9552 Td[(th)1(at)-296(are)-297(ad)1(diti)1(v)28(e)-297(among)-296(th)1(e)-297(lev)28(e)-1(l)1(s)-297(and)-295(insid)1(e)-297(eac)27(h)-296(lev)28(el,)-304(an)1(d)-296(v)56(arian)29(ts)-297(th)1(at)]TJ 0 -11.9551 Td[(are)-248(m)27(u)1(ltip)1(licativ)28(e)-249(among)-248(th)1(e)-249(lev)28(e)-1(l)1(s)-249(an)1(d)-248(add)1(itiv)28(e)-248(inside)-248(e)-1(ac)28(h)-248(lev)28(e)-1(l)1(;)-277(th)1(e)-249(b)1(as)-1(ic)]TJ 0 -11.9552 Td[(Add)1(itiv)28(e)-379(S)1(c)27(h)28(w)28(arz)-379(\050AS\051)-378(precondi)1(tioners)-379(are)-379(ob)1(tained)-379(b)29(y)-379(considerin)1(g)-379(onl)1(y)]TJ 0 -11.9552 Td[(one)-333(le)-1(v)28(el;)]TJ ET -1 0 0 1 468.5131 639.95 cm +1 0 0 1 124.802 516.9356 cm 0 g 0 G -1 0 0 1 -468.5131 -639.95 cm +1 0 0 1 -124.802 -516.9356 cm BT -/F8 9.9626 Tf 124.802 619.5023 Td[(where)]TJ/F11 9.9626 Tf 28.989 0 Td[(A)]TJ/F8 9.9626 Tf 10.9732 0 Td[(is)-352(a)-351(s)-1(q)1(uare,)-356(r)1(e)-1(al)-351(or)-351(c)-1(ompl)1(e)-1(x,)-355(s)-1(p)1(arse)-352(m)-1(atr)1(ix)-351(with)-351(a)-352(symme)-1(tr)1(ic)-352(s)-1(p)1(arsit)28(y)]TJ -39.9622 -11.9551 Td[(pat)1(te)-1(r)1(n.)-444(Thes)-1(e)-334(p)1(rec)-1(on)1(diti)1(oners)-334(h)1(a)27(v)28(e)-333(the)-334(f)1(ollo)28(wing)-333(general)-333(featur)1(e)-1(s:)]TJ +/F14 9.9626 Tf 139.746 516.9356 Td[(\017)]TJ ET -1 0 0 1 124.802 588.798 cm +1 0 0 1 144.7273 516.9356 cm 0 g 0 G -1 0 0 1 -124.802 -588.798 cm +1 0 0 1 -144.7273 -516.9356 cm +BT +/F8 9.9626 Tf 149.7086 516.9356 Td[(a)]TJ/F19 9.9626 Tf 8.4053 0 Td[(pur)52(ely)-367(al)1(gebr)51(aic)]TJ/F8 9.9626 Tf 71.5505 0 Td[(app)1(roac)28(h)-344(i)1(s)-345(u)1(s)-1(ed)-343(to)-344(generate)-344(a)-344(se)-1(q)1(uence)-344(of)-344(coarse)-1(-lev)28(e)-1(l)]TJ -79.9558 -11.9552 Td[(correc)-1(ti)1(ons)-345(t)1(o)-345(a)-344(b)1(as)-1(ic)-344(AS)-344(p)1(re)-1(cond)1(ition)1(e)-1(r)1(,)-347(with)1(out)-344(expli)1(c)-1(it)1(ly)-344(using)-344(an)29(y)-344(in-)]TJ 0 -11.9552 Td[(for)1(m)-1(at)1(ion)-312(on)-311(the)-312(ge)-1(ometry)-312(of)-311(the)-312(ori)1(ginal)-311(prob)1(lem)-313(\050e.g.)-312(t)1(he)-312(disc)-1(r)1(e)-1(ti)1(z)-1(ation)]TJ 0 -11.9551 Td[(of)-444(a)-444(P)1(DE\051.)-444(The)]TJ/F19 9.9626 Tf 75.6773 0 Td[(smo)51(othe)51(d)-460(aggr)52(e)51(gat)-1(i)1(on)]TJ/F8 9.9626 Tf 97.988 0 Td[(tec)27(hn)1(iqu)1(e)-445(is)-444(app)1(lied)-444(as)-445(al)1(ge)-1(b)1(raic)]TJ -173.6653 -11.9552 Td[(coars)-1(eni)1(ng)-333(s)-1(tr)1(ate)-1(gy)-333([)]TJ +ET +1 0 0 1 239.8153 469.1149 cm +0 1 0 rg 0 1 0 RG +1 0 0 1 -239.8153 -469.1149 cm BT -/F14 9.9626 Tf 139.746 588.798 Td[(\017)]TJ +/F8 9.9626 Tf 239.8153 469.1149 Td[(1)]TJ ET -1 0 0 1 144.7273 588.798 cm +1 0 0 1 244.7967 469.1149 cm 0 g 0 G -1 0 0 1 -144.7273 -588.798 cm +1 0 0 1 -244.7967 -469.1149 cm +BT +/F8 9.9626 Tf 244.7967 469.1149 Td[(,)]TJ +ET +1 0 0 1 250.885 469.1149 cm +0 1 0 rg 0 1 0 RG +1 0 0 1 -250.885 -469.1149 cm BT -/F8 9.9626 Tf 149.7086 588.798 Td[(b)-27(oth)]TJ/F19 9.9626 Tf 23.1946 0 Td[(additive)-327(an)-1(d)-327(hybri)1(d)-328(mu)1(ltil)1(evel)]TJ/F8 9.9626 Tf 131.5607 0 Td[(v)56(arian)29(ts)-1(,)-307(i)1(.e)-1(.)-300(m)28(ult)1(ipli)1(c)-1(ativ)28(e)-300(am)-1(on)1(g)-301(t)1(he)]TJ -154.7553 -11.9552 Td[(lev)28(e)-1(l)1(s)-495(and)-494(ad)1(dit)1(iv)28(e)-495(in)1(s)-1(id)1(e)-495(a)-494(lev)28(e)-1(l,)-534(are)-494(im)-1(p)1(lem)-1(en)28(ted;)-574(the)-495(b)1(as)-1(i)1(c)-495(add)1(itiv)28(e)]TJ 0 -11.9551 Td[(Sc)28(h)28(w)28(arz)-334(p)1(re)-1(cond)1(ition)1(e)-1(r)1(s)-334(are)-334(ob)1(tain)1(e)-1(d)-333(b)29(y)-334(consid)1(e)-1(r)1(ing)-333(onl)1(y)-334(on)1(e)-334(lev)28(e)-1(l)1(;)]TJ +/F8 9.9626 Tf 250.885 469.1149 Td[(18)]TJ ET -1 0 0 1 124.802 545.5505 cm +1 0 0 1 260.8476 469.1149 cm 0 g 0 G -1 0 0 1 -124.802 -545.5505 cm +1 0 0 1 -260.8476 -469.1149 cm +BT +/F8 9.9626 Tf 260.8476 469.1149 Td[(].)]TJ -121.1017 -19.9253 Td[(The)-344(pac)28(k)56(age)-345(is)-344(wri)1(tte)-1(n)-343(in)]TJ/F19 9.9626 Tf 114.6216 0 Td[(F)77(ortr)51(an)-367(9)-1(5)]TJ/F8 9.9626 Tf 46.5714 0 Td[(,)-346(foll)1(o)27(win)1(g)-344(an)]TJ/F19 9.9626 Tf 62.3289 0 Td[(obje)51(ct-or)1(ient)-1(e)52(d)-368(appr)51(o)51(ach)]TJ/F8 9.9626 Tf -238.4658 -11.9552 Td[(th)1(rough)-364(the)-365(exploi)1(tation)-364(of)-365(f)1(e)-1(atu)1(res)-366(suc)27(h)-364(as)-365(abstract)-365(data)-365(t)28(yp)-27(e)-365(c)-1(r)1(e)-1(ati)1(on,)-373(f)1(un)1(c)-1(-)]TJ 0 -11.9551 Td[(tion)1(al)-253(o)28(v)28(e)-1(r)1(loadi)1(ng)-253(an)1(d)-253(d)1(ynamic)-253(me)-1(mory)-252(m)-1(an)1(age)-1(me)-1(n)29(t,)-269(whi)1(le)-254(p)1(ro)28(vid)1(in)1(g)-253(a)-253(s)-1(mo)-28(oth)]TJ 0 -11.9552 Td[(pat)1(h)-380(to)28(w)27(ar)1(ds)-380(the)-380(in)28(tegrati)1(on)-380(in)-379(legac)-1(y)-380(ap)1(pli)1(c)-1(ati)1(on)-380(co)-28(des)-1(.)]TJ/F37 9.9626 Tf 256.9236 0 Td[(NON)-437(M)1(I)-437(P)-1(IA)32(CE)]TJ -256.9236 -11.9552 Td[(QUE)1(STO)-255(PER)-1(IOD)1(O,)-256(E')-256(TR)32(OPPO)-256(L)1(UNGO.)-256(R)-1(IUS)1(CITE)-255(A)-256(SC)1(R)-1(IVERLO)]TJ 0 -11.9551 Td[(ME)1(GLIO?)]TJ/F8 9.9626 Tf 55.3338 0 Td[(The)-268(paral)1(le)-1(l)-267(implem)-1(en)28(tati)1(on)-268(is)-268(base)-1(d)-267(on)-268(a)-268(Si)1(ngle)-268(Pr)1(ogram)-268(Mult)1(iple)]TJ -55.3338 -11.9552 Td[(Data)-316(\050SP)1(MD\051)-316(p)1(aradi)1(gm)-317(for)-316(d)1(istrib)1(uted-me)-1(mory)-316(arc)28(hit)1(e)-1(ctur)1(e)-1(s.)-439(S)1(ingle)-316(and)-316(d)1(ou-)]TJ 0 -11.9552 Td[(bl)1(e)-404(pr)1(e)-1(cision)-403(impl)1(e)-1(me)-1(n)29(tations)-403(of)-403(MLD2P)1(4)-404(ar)1(e)-404(a)28(v)56(ailabl)1(e)-404(for)-403(b)-27(oth)-403(th)1(e)-404(r)1(e)-1(al)-403(and)]TJ 0 -11.9551 Td[(th)1(e)-334(c)-1(ompl)1(e)-1(x)-333(cas)-1(e,)-333(that)-333(can)-333(b)-28(e)-334(u)1(s)-1(ed)-333(th)1(rough)-332(a)-334(singl)1(e)-334(in)28(terf)1(ac)-1(e.)]TJ 14.944 -11.9552 Td[(MLD2P)1(4)-252(h)1(as)-252(b)-28(een)-252(d)1(e)-1(sign)1(e)-1(d)-251(to)-251(implem)-1(en)28(t)-251(s)-1(calab)1(le)-252(and)-251(eas)-1(y-to-use)-252(m)27(u)1(ltil)1(e)-1(v)28(el)]TJ -14.944 -11.9552 Td[(pr)1(e)-1(cond)1(ition)1(e)-1(r)1(s)-258(in)-256(the)-257(c)-1(on)29(te)-1(x)1(t)-257(of)-257(th)1(e)]TJ/F19 9.9626 Tf 157.996 0 Td[(PS)-1(B)1(L)-1(AS)-288(\050Par)51(al)-50(lel)-287(Sp)51(arse)-288(B)1(L)-1(AS\051)-288(c)52(o)-1(m)1(puta-)]TJ -157.996 -11.9551 Td[(tional)-347(fr)52(amewo)-1(r)1(k)]TJ/F8 9.9626 Tf 77.4931 0 Td[([)]TJ +ET +1 0 0 1 205.0625 317.6828 cm +0 1 0 rg 0 1 0 RG +1 0 0 1 -205.0625 -317.6828 cm BT -/F14 9.9626 Tf 139.746 545.5505 Td[(\017)]TJ +/F8 9.9626 Tf 205.0625 317.6828 Td[(12)]TJ ET -1 0 0 1 144.7273 545.5505 cm +1 0 0 1 215.0252 317.6828 cm 0 g 0 G -1 0 0 1 -144.7273 -545.5505 cm +1 0 0 1 -215.0252 -317.6828 cm BT -/F8 9.9626 Tf 149.7086 545.5505 Td[(a)]TJ/F19 9.9626 Tf 8.4053 0 Td[(pur)52(ely)-367(al)1(gebr)51(aic)]TJ/F8 9.9626 Tf 71.5505 0 Td[(app)1(roac)28(h)-344(i)1(s)-345(u)1(s)-1(ed)-343(to)-344(generate)-344(a)-344(se)-1(q)1(uence)-344(of)-344(coarse)-1(-lev)28(e)-1(l)]TJ -79.9558 -11.9552 Td[(correc)-1(ti)1(ons)-393(to)-393(a)-394(b)1(as)-1(i)1(c)-394(p)1(re)-1(cond)1(ition)1(e)-1(r)1(,)-408(with)1(out)-393(expli)1(c)-1(it)1(ly)-393(usin)1(g)-394(an)29(y)-393(inf)1(or-)]TJ 0 -11.9552 Td[(mation)-431(on)-431(the)-432(geom)-1(etry)-431(of)-431(the)-432(ori)1(ginal)-431(pr)1(oblem)-432(\050e)-1(.)1(g.)-432(th)1(e)-432(disc)-1(r)1(e)-1(ti)1(z)-1(ation)]TJ 0 -11.9551 Td[(of)-444(a)-444(P)1(DE\051.)-444(The)]TJ/F19 9.9626 Tf 75.6773 0 Td[(smo)51(othe)51(d)-460(aggr)52(e)51(gat)-1(i)1(on)]TJ/F8 9.9626 Tf 97.988 0 Td[(tec)27(hn)1(iqu)1(e)-445(is)-444(app)1(lied)-444(as)-445(al)1(ge)-1(b)1(raic)]TJ -173.6653 -11.9552 Td[(coars)-1(eni)1(ng)-333(s)-1(tr)1(ate)-1(gy)-333([)]TJ/F37 9.9626 Tf 90.1067 0 Td[(?)]TJ/F8 9.9626 Tf 5.4102 0 Td[(,)]TJ/F37 9.9626 Tf 6.0883 0 Td[(?)]TJ/F8 9.9626 Tf 5.4102 0 Td[(].)]TJ -116.9781 -18.7491 Td[(The)-344(pac)28(k)56(age)-345(is)-344(wri)1(tte)-1(n)-343(in)]TJ/F19 9.9626 Tf 114.6216 0 Td[(F)77(ortr)51(an)-367(9)-1(5)]TJ/F8 9.9626 Tf 46.5713 0 Td[(,)-346(foll)1(o)27(win)1(g)-344(an)]TJ/F19 9.9626 Tf 62.3289 0 Td[(obje)51(ct-or)1(ient)-1(e)52(d)-368(appr)51(o)51(ach)]TJ/F8 9.9626 Tf -238.4658 -11.9552 Td[(th)1(rough)-364(the)-365(exploi)1(tation)-364(of)-365(f)1(e)-1(atu)1(res)-366(suc)27(h)-364(as)-365(abstract)-365(data)-365(t)28(yp)-27(e)-365(c)-1(r)1(e)-1(ati)1(on,)-373(f)1(un)1(c)-1(-)]TJ 0 -11.9552 Td[(tion)1(al)-253(o)28(v)28(e)-1(r)1(loadi)1(ng)-253(an)1(d)-253(d)1(ynamic)-253(me)-1(mory)-252(m)-1(an)1(age)-1(me)-1(n)29(t,)-269(whi)1(le)-254(p)1(ro)28(vid)1(in)1(g)-253(a)-253(s)-1(mo)-28(oth)]TJ 0 -11.9551 Td[(pat)1(h)-403(to)27(w)28(ard)1(s)-404(the)-404(i)1(n)28(tegration)-403(in)-403(l)1(e)-1(gacy)-404(ap)1(pl)1(ic)-1(ati)1(on)-403(c)-1(o)-28(d)1(e)-1(s.)-655(Th)1(e)-404(paral)1(le)-1(l)-403(impl)1(e)-1(-)]TJ 0 -11.9552 Td[(me)-1(n)28(t)1(ation)-376(is)-377(base)-1(d)-376(on)-377(a)-376(Sin)1(gle)-377(Pr)1(ogram)-377(Mu)1(ltip)1(le)-377(Data)-377(\050S)1(PMD\051)-376(par)1(adigm)-377(f)1(or)]TJ 0 -11.9552 Td[(di)1(s)-1(tr)1(ibu)1(te)-1(d)1(-m)-1(em)-1(or)1(y)-280(ar)1(c)27(hi)1(te)-1(ctur)1(e)-1(s.)-427(S)1(in)1(gle)-280(and)-279(dou)1(ble)-280(p)1(rec)-1(ision)-279(impleme)-1(n)28(t)1(ations)]TJ 0 -11.9551 Td[(of)-382(M)1(LD2P4)-382(ar)1(e)-383(a)28(v)56(ailabl)1(e)-383(f)1(or)-382(b)-27(o)-1(t)1(h)-382(th)1(e)-383(real)-382(an)1(d)-382(the)-382(c)-1(omp)1(le)-1(x)-381(c)-1(ase)-1(,)-394(th)1(at)-382(c)-1(an)-381(b)-28(e)]TJ 0 -11.9552 Td[(used)-333(thr)1(ough)-333(a)-333(s)-1(i)1(ngle)-334(i)1(n)28(terface)-1(.)]TJ/F37 9.9626 Tf 140.7502 0 Td[(SAL)128(V)127(A)96(TOR)-1(E)1(,)-384(f)-1(u)1(nzi)-1(ona)-383(tutt)-1(o?)]TJ/F8 9.9626 Tf -125.8062 -11.9552 Td[(MLD2P)1(4)-252(h)1(as)-252(b)-28(een)-252(d)1(e)-1(sign)1(e)-1(d)-251(to)-251(implem)-1(en)28(t)-251(s)-1(calab)1(le)-252(and)-251(eas)-1(y-to-use)-252(m)27(u)1(ltil)1(e)-1(v)28(el)]TJ -14.944 -11.9551 Td[(pr)1(e)-1(cond)1(ition)1(e)-1(r)1(s)-258(in)-256(the)-257(c)-1(on)29(te)-1(x)1(t)-257(of)-257(th)1(e)]TJ/F19 9.9626 Tf 157.996 0 Td[(PS)-1(B)1(L)-1(AS)-288(\050Par)51(al)-50(lel)-287(Sp)51(arse)-288(B)1(L)-1(AS\051)-288(c)52(o)-1(m)1(puta-)]TJ -157.996 -11.9552 Td[(tional)-347(fr)52(amewo)-1(r)1(k)]TJ/F8 9.9626 Tf 77.4931 0 Td[([)]TJ +/F8 9.9626 Tf 215.0252 317.6828 Td[(].)-440(PS)1(B)-1(LAS)-321(i)1(s)-323(a)-321(lib)1(rary)-321(ori)1(ginall)1(y)-322(d)1(e)-1(v)28(elop)-27(e)-1(d)-321(to)-321(add)1(re)-1(ss)-322(th)1(e)]TJ -90.2232 -11.9552 Td[(par)1(allel)-339(impl)1(e)-1(me)-1(n)28(t)1(ation)-339(of)-338(iterativ)28(e)-339(s)-1(ol)1(v)28(e)-1(rs)-339(for)-338(s)-1(p)1(arse)-340(li)1(near)-339(sys)-1(tem,)-341(b)29(y)-339(pr)1(o)27(v)1(id-)]TJ 0 -11.9552 Td[(in)1(g)-263(basic)-263(lin)1(e)-1(ar)-262(algebra)-262(op)-28(erator)1(s)-264(an)1(d)-262(data)-263(manageme)-1(n)28(t)-262(faciliti)1(e)-1(s)-263(for)-262(di)1(s)-1(tr)1(ibu)1(te)-1(d)]TJ 0 -11.9551 Td[(sparse)-346(m)-1(at)1(rice)-1(s;)-352(it)-345(also)-346(in)1(c)-1(lu)1(des)-346(par)1(allel)-346(Kr)1(ylo)28(v)-346(solv)28(ers,)-349(b)1(uilt)-345(on)-345(the)-346(top)-345(of)-345(the)]TJ 0 -11.9552 Td[(basic)-354(PS)1(B)-1(LAS)-353(k)28(e)-1(r)1(nels.)-506(T)-1(h)1(e)-355(p)1(rec)-1(on)1(diti)1(oners)-354(a)27(v)56(ail)1(able)-354(in)-353(MLD2P4)-353(c)-1(an)-353(b)-28(e)-354(use)-1(d)]TJ 0 -11.9552 Td[(with)-258(th)1(e)-1(se)-259(Kryl)1(o)27(v)-258(solv)28(e)-1(r)1(s)-1(.)-419(The)-259(c)27(h)1(oice)-259(of)-259(P)1(SBLAS)-258(has)-259(b)-27(ee)-1(n)-258(mainl)1(y)-259(motiv)56(ated)-259(b)29(y)]TJ 0 -11.9551 Td[(th)1(e)-282(n)1(e)-1(ed)-281(of)-280(ha)28(vi)1(ng)-281(a)-281(p)-27(ort)1(able)-281(and)-280(e\016)-1(cien)28(t)-281(soft)28(w)27(ar)1(e)-281(inf)1(rastructu)1(re)-281(im)-1(p)1(lem)-1(en)28(tin)1(g)]TJ 0 -11.9552 Td[(\134de)-348(f)1(ac)-1(to")-348(stand)1(ard)-347(paral)1(le)-1(l)-347(s)-1(p)1(arse)-349(l)1(inear)-348(algebr)1(a)-348(k)28(e)-1(r)1(nels)-1(,)-351(to)-348(p)1(ur)1(s)-1(u)1(e)-349(goals)-348(suc)27(h)]TJ 0 -11.9552 Td[(as)-384(p)-27(e)-1(rf)1(ormance)-1(,)-396(p)-27(ort)1(abili)1(t)28(y)83(,)-396(mo)-28(du)1(lari)1(t)28(y)-384(ed)-383(e)-1(xtensib)1(ilit)28(y)-383(in)-383(the)-384(d)1(e)-1(v)28(elop)1(m)-1(en)28(t)-384(of)]TJ 0 -11.9551 Td[(th)1(e)-256(p)1(rec)-1(on)1(diti)1(oner)-255(pac)28(k)56(age)-1(.)-418(On)-254(the)-255(oth)1(e)-1(r)-254(han)1(d,)-270(the)-255(impleme)-1(n)28(t)1(ation)-255(of)-254(MLD2P)1(4)]TJ 0 -11.9552 Td[(has)-318(le)-1(d)-318(t)1(o)-319(som)-1(e)-318(revisions)-319(an)1(d)-318(e)-1(x)1(te)-1(n)29(tions)-318(of)-318(the)-319(P)1(SBLAS)-318(k)28(ernels,)-321(le)-1(ad)1(ing)-318(to)-318(the)]TJ 0 -11.9552 Td[(rec)-1(en)28(t)-425(P)1(SBLAS)-425(2.)1(0)-425(v)28(e)-1(rsion)-424([)]TJ ET -1 0 0 1 205.0625 359.429 cm +1 0 0 1 252.683 186.1759 cm 0 1 0 rg 0 1 0 RG -1 0 0 1 -205.0625 -359.429 cm +1 0 0 1 -252.683 -186.1759 cm BT -/F8 9.9626 Tf 205.0625 359.429 Td[(10)]TJ +/F8 9.9626 Tf 252.683 186.1759 Td[(11)]TJ ET -1 0 0 1 215.0252 359.429 cm +1 0 0 1 262.6456 186.1759 cm 0 g 0 G -1 0 0 1 -215.0252 -359.429 cm +1 0 0 1 -262.6456 -186.1759 cm BT -/F8 9.9626 Tf 215.0252 359.429 Td[(].)-440(PS)1(B)-1(LAS)-321(i)1(s)-323(a)-321(lib)1(rary)-321(ori)1(ginall)1(y)-322(d)1(e)-1(v)28(elop)-27(e)-1(d)-321(to)-321(add)1(re)-1(ss)-322(th)1(e)]TJ -90.2232 -11.9552 Td[(par)1(allel)-339(impl)1(e)-1(me)-1(n)28(t)1(ation)-339(of)-338(iterativ)28(e)-339(s)-1(ol)1(v)28(e)-1(rs)-339(for)-338(s)-1(p)1(arse)-340(li)1(near)-339(sys)-1(tem,)-341(b)29(y)-339(pr)1(o)27(v)1(id-)]TJ 0 -11.9552 Td[(in)1(g)-263(basic)-263(lin)1(e)-1(ar)-262(algebra)-262(op)-28(erator)1(s)-264(an)1(d)-262(data)-263(manageme)-1(n)28(t)-262(faciliti)1(e)-1(s)-263(for)-262(di)1(s)-1(tr)1(ibu)1(te)-1(d)]TJ 0 -11.9551 Td[(sparse)-346(m)-1(at)1(rice)-1(s;)-352(it)-345(also)-346(in)1(c)-1(lu)1(des)-346(par)1(allel)-346(Kr)1(ylo)28(v)-346(solv)28(ers,)-349(b)1(uilt)-345(on)-345(the)-346(top)-345(of)-345(the)]TJ 0 -11.9552 Td[(basic)-354(PS)1(B)-1(LAS)-353(k)28(e)-1(r)1(nels.)-506(T)-1(h)1(e)-355(p)1(rec)-1(on)1(diti)1(oners)-354(a)27(v)56(ail)1(able)-354(in)-353(MLD2P4)-353(c)-1(an)-353(b)-28(e)-354(use)-1(d)]TJ 0 -11.9552 Td[(with)-258(th)1(e)-1(se)-259(Kryl)1(o)27(v)-258(solv)28(e)-1(r)1(s)-1(.)-419(The)-259(c)27(h)1(oice)-259(of)-259(P)1(SBLAS)-258(has)-259(b)-27(ee)-1(n)-258(mainl)1(y)-259(motiv)56(ated)-259(b)29(y)]TJ 0 -11.9551 Td[(th)1(e)-282(n)1(e)-1(ed)-281(of)-280(ha)28(vi)1(ng)-281(a)-281(p)-27(ort)1(able)-281(and)-280(e\016)-1(cien)28(t)-281(soft)28(w)27(ar)1(e)-281(inf)1(rastructu)1(re)-281(im)-1(p)1(lem)-1(en)28(tin)1(g)]TJ 0 -11.9552 Td[(\134de)-348(f)1(ac)-1(to")-348(stand)1(ard)-347(paral)1(le)-1(l)-347(s)-1(p)1(arse)-349(l)1(inear)-348(algebr)1(a)-348(k)28(e)-1(r)1(nels)-1(,)-351(to)-348(p)1(ur)1(s)-1(u)1(e)-349(goals)-348(suc)27(h)]TJ 0 -11.9552 Td[(as)-384(p)-27(e)-1(rf)1(ormance)-1(,)-396(p)-27(ort)1(abili)1(t)28(y)83(,)-396(mo)-28(du)1(lari)1(t)28(y)-384(ed)-383(e)-1(xtensib)1(ilit)28(y)-383(in)-383(the)-384(d)1(e)-1(v)28(elop)1(m)-1(en)28(t)-384(of)]TJ 0 -11.9551 Td[(th)1(e)-256(p)1(rec)-1(on)1(diti)1(oner)-255(pac)28(k)56(age)-1(.)-418(On)-254(the)-255(oth)1(e)-1(r)-254(han)1(d,)-270(the)-255(impleme)-1(n)28(t)1(ation)-255(of)-254(MLD2P)1(4)]TJ 0 -11.9552 Td[(has)-318(le)-1(d)-318(t)1(o)-319(som)-1(e)-318(revisions)-319(an)1(d)-318(e)-1(x)1(te)-1(n)29(tions)-318(of)-318(the)-319(P)1(SBLAS)-318(k)28(ernels,)-321(le)-1(ad)1(ing)-318(to)-318(the)]TJ 0 -11.9552 Td[(rec)-1(en)28(t)-466(PS)1(B)-1(LAS)-466(2.)1(0)-467(v)28(ers)-1(i)1(on)-466([)]TJ/F37 9.9626 Tf 129.5361 0 Td[(?)]TJ/F8 9.9626 Tf 5.4103 0 Td[(].)-844(Th)1(e)-467(in)28(ter-pro)-27(c)-1(es)-1(s)-467(com)27(u)1(nication)-466(r)1(e)-1(qu)1(ired)-466(b)28(y)]TJ -134.9464 -11.9551 Td[(MLD2P)1(4)-444(is)-444(e)-1(n)1(c)-1(ap)1(s)-1(u)1(lated)-444(in)29(to)-444(the)-444(PS)1(BLAS)-444(r)1(outin)1(e)-1(s,)-471(e)-1(xce)-1(p)1(t)-444(f)1(e)-1(w)-444(c)-1(ases)-445(where)]TJ 0 -11.9552 Td[(MP)1(I)-410([)]TJ +/F8 9.9626 Tf 262.6456 186.1759 Td[(].)-719(The)-425(in)28(ter-pr)1(o)-28(c)-1(ess)-426(com)27(un)1(ication)-425(r)1(e)-1(q)1(uir)1(e)-1(d)-424(b)28(y)]TJ -137.8436 -11.9552 Td[(MLD2P)1(4)-444(is)-444(e)-1(n)1(c)-1(ap)1(s)-1(u)1(lated)-444(in)29(to)-444(the)-444(PS)1(BLAS)-444(r)1(outin)1(e)-1(s,)-471(e)-1(xce)-1(p)1(t)-444(f)1(e)-1(w)-444(c)-1(ases)-445(where)]TJ 0 -11.9551 Td[(MP)1(I)-410([)]TJ ET -1 0 0 1 151.1656 204.0118 cm +1 0 0 1 151.1656 162.2656 cm 0 1 0 rg 0 1 0 RG -1 0 0 1 -151.1656 -204.0118 cm +1 0 0 1 -151.1656 -162.2656 cm BT -/F8 9.9626 Tf 151.1656 204.0118 Td[(17)]TJ +/F8 9.9626 Tf 151.1656 162.2656 Td[(15)]TJ ET -1 0 0 1 161.1283 204.0118 cm +1 0 0 1 161.1283 162.2656 cm 0 g 0 G -1 0 0 1 -161.1283 -204.0118 cm +1 0 0 1 -161.1283 -162.2656 cm BT -/F8 9.9626 Tf 161.1283 204.0118 Td[(])-410(is)-410(e)-1(x)1(plicitly)-409(c)-1(all)1(e)-1(d)1(.)-675(Therefore,)-429(MLD2P)1(4)-410(c)-1(an)-410(b)-27(e)-411(r)1(un)-409(on)-410(an)28(y)-410(p)1(arallel)]TJ -36.3263 -11.9552 Td[(mac)27(hi)1(ne)-334(wh)1(e)-1(re)-333(PS)1(B)-1(LAS)-333(an)1(d)-333(MP)1(I)-334(impl)1(e)-1(me)-1(n)29(tation)1(s)-334(are)-334(a)28(v)56(ailab)1(le.)]TJ 14.944 -11.9551 Td[(MLD2P)1(4)-298(has)-299(a)-298(la)28(y)28(e)-1(r)1(e)-1(d)-298(an)1(d)-298(mo)-28(du)1(lar)-298(soft)28(w)27(ar)1(e)-299(arc)28(hitec)-1(t)1(ure)-298(w)-1(h)1(e)-1(r)1(e)-299(thr)1(e)-1(e)-298(m)-1(ain)]TJ -14.944 -11.9552 Td[(la)28(y)28(ers)-396(c)-1(an)-395(b)-28(e)-396(id)1(e)-1(n)28(ti)1(\014ed.)-632(The)-396(lo)28(w)28(e)-1(r)-395(la)28(y)28(e)-1(r)-395(c)-1(on)1(s)-1(ists)-396(of)-396(th)1(e)-397(P)1(SBLAS)-396(k)28(ern)1(e)-1(l)1(s)-1(,)-411(the)]TJ 0 -11.9552 Td[(midd)1(le)-359(on)1(e)-359(impleme)-1(n)28(t)1(s)-359(the)-358(c)-1(on)1(s)-1(tr)1(uction)-358(and)-358(ap)1(pl)1(ic)-1(ati)1(on)-358(ph)1(as)-1(es)-359(of)-358(th)1(e)-359(pr)1(e)-1(con-)]TJ 0 -11.9551 Td[(di)1(tioners,)-462(and)-435(the)-437(u)1(pp)-27(er)-436(one)-437(p)1(ro)28(vid)1(e)-1(s)-436(a)-437(u)1(nif)1(orm)-437(an)1(d)-436(eas)-1(y-to-use)-437(in)29(te)-1(r)1(face)-437(to)]TJ 0 -11.9552 Td[(all)-438(the)-439(pr)1(e)-1(cond)1(ition)1(e)-1(rs.)-761(Thi)1(s)-440(ar)1(c)27(hi)1(te)-1(ctur)1(e)-440(all)1(o)27(ws)-439(for)-438(di\013eren)28(t)-439(lev)28(e)-1(l)1(s)-440(of)-438(use)-440(of)]TJ 0 -11.9552 Td[(th)1(e)-371(pac)28(k)56(age)-1(:)-518(f)1(e)-1(w)-370(bl)1(ac)27(k-b)-28(o)28(x)-370(r)1(outin)1(e)-1(s)-370(at)-370(the)-370(up)1(p)-28(er)-370(la)28(y)28(er)-370(allo)28(w)-370(non-exp)-27(e)-1(rt)-370(u)1(s)-1(ers)]TJ +/F8 9.9626 Tf 161.1283 162.2656 Td[(])-410(is)-410(e)-1(x)1(plicitly)-409(c)-1(all)1(e)-1(d)1(.)-675(Therefore,)-429(MLD2P)1(4)-410(c)-1(an)-410(b)-27(e)-411(r)1(un)-409(on)-410(an)28(y)-410(p)1(arallel)]TJ -36.3263 -11.9552 Td[(mac)27(hi)1(ne)-334(wh)1(e)-1(re)-333(PS)1(B)-1(LAS)-333(an)1(d)-333(MP)1(I)-334(impl)1(e)-1(me)-1(n)29(tation)1(s)-334(are)-334(a)28(v)56(ailab)1(le.)]TJ 14.944 -11.9551 Td[(MLD2P)1(4)-298(has)-299(a)-298(la)28(y)28(e)-1(r)1(e)-1(d)-298(an)1(d)-298(mo)-28(du)1(lar)-298(soft)28(w)27(ar)1(e)-299(arc)28(hitec)-1(t)1(ure)-298(w)-1(h)1(e)-1(r)1(e)-299(thr)1(e)-1(e)-298(m)-1(ain)]TJ -14.944 -11.9552 Td[(la)28(y)28(ers)-396(c)-1(an)-395(b)-28(e)-396(id)1(e)-1(n)28(ti)1(\014ed.)-632(The)-396(lo)28(w)28(e)-1(r)-395(la)28(y)28(e)-1(r)-395(c)-1(on)1(s)-1(ists)-396(of)-396(th)1(e)-397(P)1(SBLAS)-396(k)28(ern)1(e)-1(l)1(s)-1(,)-411(the)]TJ ET 1 0 0 1 124.802 90.4377 cm 0 g 0 G @@ -802,47 +875,75 @@ ET 0 g 0 G endstream endobj -124 0 obj << +129 0 obj << /Type /Page -/Contents 125 0 R -/Resources 123 0 R +/Contents 130 0 R +/Resources 128 0 R /MediaBox [0 0 595.2756 841.8898] -/Parent 80 0 R -/Annots [ 126 0 R 140 0 R 141 0 R ] +/Parent 84 0 R +/Annots [ 131 0 R 138 0 R 146 0 R 147 0 R 148 0 R 149 0 R 150 0 R ] >> endobj -126 0 obj << +131 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [123.8057 740.0018 130.7796 748.9129] /Subtype /Link /A << /S /GoTo /D (section.1) >> >> endobj -140 0 obj << +138 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[0 1 0] +/Rect [183.5411 659.4013 195.4963 667.8142] +/Subtype /Link +/A << /S /GoTo /D (cite.dd2_96) >> +>> endobj +146 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[0 1 0] +/Rect [238.8191 468.1186 245.7929 476.5315] +/Subtype /Link +/A << /S /GoTo /D (cite.BREZINA_VANEK) >> +>> endobj +147 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[0 1 0] -/Rect [204.0663 358.4327 216.0215 366.8456] +/Rect [249.8887 468.1186 261.8439 476.5315] +/Subtype /Link +/A << /S /GoTo /D (cite.VANEK_MANDEL_BREZINA) >> +>> endobj +148 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[0 1 0] +/Rect [204.0663 316.6865 216.0215 325.0994] /Subtype /Link /A << /S /GoTo /D (cite.psblas_00) >> >> endobj -141 0 obj << +149 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[0 1 0] +/Rect [251.6867 185.1797 263.6419 193.5926] +/Subtype /Link +/A << /S /GoTo /D (cite.PSBLASGUIDE) >> +>> endobj +150 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[0 1 0] -/Rect [150.1693 203.0155 162.1245 211.4284] +/Rect [150.1693 161.2693 162.1245 169.6822] /Subtype /Link /A << /S /GoTo /D (cite.MPI1) >> >> endobj 10 0 obj << -/D [124 0 R /XYZ 124.802 716.0915 null] +/D [129 0 R /XYZ 124.802 716.0915 null] >> endobj -133 0 obj << -/D [124 0 R /XYZ 279.0812 651.9051 null] +139 0 obj << +/D [129 0 R /XYZ 279.0812 650.435 null] >> endobj -123 0 obj << -/Font << /F34 129 0 R /F8 91 0 R /F18 73 0 R /F33 97 0 R /F19 132 0 R /F37 109 0 R /F11 136 0 R /F14 139 0 R >> +128 0 obj << +/Font << /F34 134 0 R /F8 95 0 R /F18 77 0 R /F33 101 0 R /F19 137 0 R /F11 142 0 R /F14 145 0 R /F37 113 0 R >> /ProcSet [ /PDF /Text ] >> endobj -146 0 obj << -/Length 1813 +159 0 obj << +/Length 2687 >> stream 1 0 0 1 124.802 740.9981 cm @@ -875,7 +976,7 @@ ET 0 g 0 G 1 0 0 1 -468.5131 -740.9981 cm BT -/F8 9.9626 Tf 124.802 706.1289 Td[(to)-347(e)-1(asily)-347(bu)1(ild)-347(an)29(y)-348(p)1(rec)-1(on)1(diti)1(oner)-348(a)28(v)56(ailab)1(le)-348(in)-347(M)1(LD2P4)-347(and)-347(to)-347(app)1(ly)-347(it)-347(w)-1(i)1(thin)]TJ 0 -11.9552 Td[(a)-387(PSBLAS)-387(Kr)1(ylo)28(v)-387(s)-1(olv)28(er.)-606(On)-387(th)1(e)-388(other)-387(han)1(d,)-401(th)1(e)-388(rou)1(tin)1(e)-1(s)-388(of)-387(th)1(e)-388(midd)1(le)-388(and)]TJ 0 -11.9552 Td[(lo)28(w)28(e)-1(r)-447(la)28(y)28(e)-1(r)-447(can)-448(b)-27(e)-448(use)-1(d)-447(an)1(d)-447(e)-1(xtend)1(e)-1(d)-447(b)28(y)-447(exp)-28(ert)-447(use)-1(r)1(s)-448(to)-448(bu)1(ild)-447(n)1(e)-1(w)-448(v)28(ersions)]TJ 0 -11.9551 Td[(of)-437(m)27(u)1(lti-lev)28(e)-1(l)-437(S)1(c)27(h)28(w)28(arz)-438(pr)1(e)-1(cond)1(ition)1(e)-1(r)1(s)-1(.)-757(W)84(e)-438(p)1(ro)28(vid)1(e)-438(here)-438(a)-438(d)1(e)-1(scrip)1(tion)-437(of)-437(the)]TJ 0 -11.9552 Td[(up)1(p)-27(e)-1(r-la)28(y)28(er)-333(rout)1(ines)-1(,)-333(b)1(ut)-333(not)-333(of)-333(th)1(e)-334(me)-1(d)1(ium-la)28(y)28(e)-1(r)-333(on)1(e)-1(s.)]TJ 14.944 -11.9552 Td[(This)-333(guid)1(e)-334(is)-334(or)1(ganized)-333(as)-334(fol)1(lo)27(ws:)]TJ/F37 9.9626 Tf 148.5819 0 Td[(organizzazi)-1(one)-383(dell)-1(a)-383(gui)-1(d)1(a)]TJ +/F8 9.9626 Tf 124.802 706.1289 Td[(midd)1(le)-359(on)1(e)-359(impleme)-1(n)28(t)1(s)-359(the)-358(c)-1(on)1(s)-1(tr)1(uction)-358(and)-358(ap)1(pl)1(ic)-1(ati)1(on)-358(ph)1(as)-1(es)-359(of)-358(th)1(e)-359(pr)1(e)-1(con-)]TJ 0 -11.9552 Td[(di)1(tioners,)-462(and)-435(the)-437(u)1(pp)-27(er)-436(one)-437(p)1(ro)28(vid)1(e)-1(s)-436(a)-437(u)1(nif)1(orm)-437(an)1(d)-436(eas)-1(y-to-use)-437(in)29(te)-1(r)1(face)-437(to)]TJ 0 -11.9552 Td[(all)-438(the)-439(pr)1(e)-1(cond)1(ition)1(e)-1(rs.)-761(Thi)1(s)-440(ar)1(c)27(hi)1(te)-1(ctur)1(e)-440(all)1(o)27(ws)-439(for)-438(di\013eren)28(t)-439(lev)28(e)-1(l)1(s)-440(of)-438(use)-440(of)]TJ 0 -11.9551 Td[(th)1(e)-371(pac)28(k)56(age)-1(:)-518(f)1(e)-1(w)-370(bl)1(ac)27(k-b)-28(o)28(x)-370(r)1(outin)1(e)-1(s)-370(at)-370(the)-370(up)1(p)-28(er)-370(la)28(y)28(er)-370(allo)28(w)-370(non-exp)-27(e)-1(rt)-370(u)1(s)-1(ers)]TJ 0 -11.9552 Td[(to)-347(e)-1(asily)-347(bu)1(ild)-347(an)29(y)-348(p)1(rec)-1(on)1(diti)1(oner)-348(a)28(v)56(ailab)1(le)-348(in)-347(M)1(LD2P4)-347(and)-347(to)-347(app)1(ly)-347(it)-347(w)-1(i)1(thin)]TJ 0 -11.9552 Td[(a)-387(PSBLAS)-387(Kr)1(ylo)28(v)-387(s)-1(olv)28(er.)-606(On)-387(th)1(e)-388(other)-387(han)1(d,)-401(th)1(e)-388(rou)1(tin)1(e)-1(s)-388(of)-387(th)1(e)-388(midd)1(le)-388(and)]TJ 0 -11.9551 Td[(lo)28(w)28(e)-1(r)-447(la)28(y)28(e)-1(r)-447(can)-448(b)-27(e)-448(use)-1(d)-447(an)1(d)-447(e)-1(xtend)1(e)-1(d)-447(b)28(y)-447(exp)-28(ert)-447(use)-1(r)1(s)-448(to)-448(bu)1(ild)-447(n)1(e)-1(w)-448(v)28(ersions)]TJ 0 -11.9552 Td[(of)-437(m)27(u)1(lti-lev)28(e)-1(l)-437(S)1(c)27(h)28(w)28(arz)-438(pr)1(e)-1(cond)1(ition)1(e)-1(r)1(s)-1(.)-757(W)84(e)-438(p)1(ro)28(vid)1(e)-438(here)-438(a)-438(d)1(e)-1(scrip)1(tion)-437(of)-437(the)]TJ 0 -11.9552 Td[(up)1(p)-27(e)-1(r-la)28(y)28(er)-333(rout)1(ines)-1(,)-333(b)1(ut)-333(not)-333(of)-333(th)1(e)-334(me)-1(d)1(ium-la)28(y)28(e)-1(r)-333(on)1(e)-1(s.)]TJ 14.944 -11.9551 Td[(This)-222(guid)1(e)-223(is)-222(organ)1(iz)-1(ed)-222(as)-223(f)1(ollo)28(ws)-1(:)]TJ/F37 9.9626 Tf 146.9215 0 Td[(OR)32(G)-1(ANIZZAZIONE)-255(DE)1(LLA)-256(GU)1(I)-1(D)32(A)]TJ ET 1 0 0 1 124.802 90.4377 cm 0 g 0 G @@ -883,27 +984,27 @@ ET 0 g 0 G endstream endobj -145 0 obj << +158 0 obj << /Type /Page -/Contents 146 0 R -/Resources 144 0 R +/Contents 159 0 R +/Resources 157 0 R /MediaBox [0 0 595.2756 841.8898] -/Parent 80 0 R -/Annots [ 147 0 R ] +/Parent 84 0 R +/Annots [ 160 0 R ] >> endobj -147 0 obj << +160 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [123.8057 740.0018 130.7796 748.9129] /Subtype /Link /A << /S /GoTo /D (section.1) >> >> endobj -144 0 obj << -/Font << /F34 129 0 R /F8 91 0 R /F37 109 0 R >> +157 0 obj << +/Font << /F34 134 0 R /F8 95 0 R /F37 113 0 R >> /ProcSet [ /PDF /Text ] >> endobj -150 0 obj << -/Length 1543 +163 0 obj << +/Length 1565 >> stream 1 0 0 1 124.802 740.9981 cm @@ -911,13 +1012,13 @@ stream 0 0 1 rg 0 0 1 RG 1 0 0 1 -124.802 -740.9981 cm BT -/F34 9.9626 Tf 124.802 740.9981 Td[(1)]TJ +/F34 9.9626 Tf 124.802 740.9981 Td[(2)]TJ ET 1 0 0 1 129.7833 740.9981 cm 0 g 0 G 1 0 0 1 -129.7833 -740.9981 cm BT -/F34 9.9626 Tf 133.1042 740.9981 Td[(General)-333(Ov)28(ervi)1(e)-1(w)]TJ +/F34 9.9626 Tf 133.1042 740.9981 Td[(Notation)1(al)-333(c)-1(on)29(v)28(e)-1(n)28(ti)1(ons)]TJ ET 1 0 0 1 124.802 739.4042 cm q @@ -925,7 +1026,7 @@ q 0 J 0.3985 w 0 0.1992 m -86.1908 0.1992 l +108.2609 0.1992 l S Q 1 0 0 1 -124.802 -739.4042 cm @@ -944,33 +1045,33 @@ ET 0 g 0 G endstream endobj -149 0 obj << +162 0 obj << /Type /Page -/Contents 150 0 R -/Resources 148 0 R +/Contents 163 0 R +/Resources 161 0 R /MediaBox [0 0 595.2756 841.8898] -/Parent 153 0 R -/Annots [ 152 0 R ] +/Parent 166 0 R +/Annots [ 165 0 R ] >> endobj -152 0 obj << +165 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [123.8057 740.0018 130.7796 748.9129] /Subtype /Link -/A << /S /GoTo /D (section.1) >> +/A << /S /GoTo /D (section.2) >> >> endobj -151 0 obj << -/D [149 0 R /XYZ 124.802 740.9981 null] +164 0 obj << +/D [162 0 R /XYZ 124.802 740.9981 null] >> endobj 14 0 obj << -/D [149 0 R /XYZ 124.802 716.0915 null] +/D [162 0 R /XYZ 124.802 716.0915 null] >> endobj -148 0 obj << -/Font << /F34 129 0 R /F8 91 0 R /F18 73 0 R >> +161 0 obj << +/Font << /F34 134 0 R /F8 95 0 R /F18 77 0 R >> /ProcSet [ /PDF /Text ] >> endobj -156 0 obj << -/Length 4567 +169 0 obj << +/Length 1997 >> stream 1 0 0 1 124.802 740.9981 cm @@ -978,24 +1079,24 @@ stream 0 0 1 rg 0 0 1 RG 1 0 0 1 -124.802 -740.9981 cm BT -/F34 9.9626 Tf 124.802 740.9981 Td[(1)]TJ +/F34 9.9626 Tf 124.802 740.9981 Td[(3)]TJ ET 1 0 0 1 129.7833 740.9981 cm 0 g 0 G 1 0 0 1 -129.7833 -740.9981 cm BT -/F34 9.9626 Tf 133.1042 740.9981 Td[(General)-333(Ov)28(ervi)1(e)-1(w)]TJ +/F34 9.9626 Tf 133.1042 740.9981 Td[(Con\014)1(guri)1(ng)-333(and)-333(Bui)1(ldin)1(g)]TJ ET -1 0 0 1 124.802 739.4042 cm +1 0 0 1 124.802 737.467 cm q []0 d 0 J 0.3985 w 0 0.1992 m -86.1908 0.1992 l +118.8878 0.1992 l S Q -1 0 0 1 -124.802 -739.4042 cm +1 0 0 1 -124.802 -737.467 cm BT /F8 9.9626 Tf 463.5317 740.9981 Td[(4)]TJ ET @@ -1003,14 +1104,7 @@ ET 0 g 0 G 1 0 0 1 -468.5131 -740.9981 cm BT -/F18 14.3462 Tf 124.802 706.1289 Td[(3)-1125(C)-1(o)-32(de)-375(Di)-1(str)-1(ibut)-1(io)-1(n)]TJ/F8 9.9626 Tf 0 -20.8247 Td[(The)-334(M)1(LD2P4)-333(is)-334(f)1(ree)-1(l)1(y)-334(d)1(istrib)1(utab)1(le)-334(u)1(nder)-333(th)1(e)-334(foll)1(o)27(win)1(g)-333(c)-1(op)28(y)1(righ)28(t)-333(terms)-1(:)]TJ -ET -1 0 0 1 119.8207 666.3752 cm -0 g 0 G -0 g 0 G -1 0 0 1 -119.8207 -666.3752 cm -BT -/F39 8.9664 Tf 242.4843 666.3752 Td[(MLD2P4)-1050(version)-525(1.0)]TJ -117.6823 -10.9589 Td[(MultiLevel)-525(Domain)-525(Decomposition)-525(Parallel)-525(Preconditioners)-525(Package)]TJ 51.7802 -10.9589 Td[(based)-525(on)-525(PSBLAS)-525(\050Parallel)-525(Sparse)-525(BLAS)-525(version)-525(2.3\051)]TJ -51.7802 -21.9178 Td[(\050C\051)-525(Copyright)-525(2008)]TJ 94.1458 -21.9178 Td[(Salvatore)-525(Filippone)-1050(University)-525(of)-525(Rome)-525(Tor)-525(Vergata)]TJ 0 -10.9589 Td[(Alfredo)-525(Buttari)-3150(University)-525(of)-525(Rome)-525(Tor)-525(Vergata)]TJ 0 -10.9589 Td[(Pasqua)-525(D'Ambra)-3675(ICAR-CNR,)-525(Naples)]TJ 0 -10.9589 Td[(Daniela)-525(di)-525(Serafino)-1050(Second)-525(University)-525(of)-525(Naples)]TJ -94.1458 -32.8767 Td[(Redistribution)-525(and)-525(use)-525(in)-525(source)-525(and)-525(binary)-525(forms,)-525(with)-525(or)-525(without)]TJ 0 -10.9589 Td[(modification,)-525(are)-525(permitted)-525(provided)-525(that)-525(the)-525(following)-525(conditions)]TJ 0 -10.9589 Td[(are)-525(met:)]TJ 9.4146 -10.9589 Td[(1.)-525(Redistributions)-525(of)-525(source)-525(code)-525(must)-525(retain)-525(the)-525(above)-525(copyright)]TJ 14.1219 -10.9589 Td[(notice,)-525(this)-525(list)-525(of)-525(conditions)-525(and)-525(the)-525(following)-525(disclaimer.)]TJ -14.1219 -10.9589 Td[(2.)-525(Redistributions)-525(in)-525(binary)-525(form)-525(must)-525(reproduce)-525(the)-525(above)-525(copyright)]TJ 14.1219 -10.9589 Td[(notice,)-525(this)-525(list)-525(of)-525(conditions,)-525(and)-525(the)-525(following)-525(disclaimer)-525(in)-525(the)]TJ 0 -10.9589 Td[(documentation)-525(and/or)-525(other)-525(materials)-525(provided)-525(with)-525(the)-525(distribution.)]TJ -14.1219 -10.9589 Td[(3.)-525(The)-525(name)-525(of)-525(the)-525(MLD2P4)-525(group)-525(or)-525(the)-525(names)-525(of)-525(its)-525(contributors)-525(may)]TJ 14.1219 -10.9589 Td[(not)-525(be)-525(used)-525(to)-525(endorse)-525(or)-525(promote)-525(products)-525(derived)-525(from)-525(this)]TJ 0 -10.9589 Td[(software)-525(without)-525(specific)-525(written)-525(permission.)]TJ -23.5365 -21.9178 Td[(THIS)-525(SOFTWARE)-525(IS)-525(PROVIDED)-525(BY)-525(THE)-525(COPYRIGHT)-525(HOLDERS)-525(AND)-525(CONTRIBUTORS)]TJ 0 -10.9589 Td[(``AS)-525(IS'')-525(AND)-525(ANY)-525(EXPRESS)-525(OR)-525(IMPLIED)-525(WARRANTIES,)-525(INCLUDING,)-525(BUT)-525(NOT)-525(LIMITE)1(D)]TJ 0 -10.9589 Td[(TO,)-525(THE)-525(IMPLIED)-525(WARRANTIES)-525(OF)-525(MERCHANTABILITY)-525(AND)-525(FITNESS)-525(FOR)-525(A)-525(PARTICULAR)]TJ 0 -10.9589 Td[(PURPOSE)-525(ARE)-525(DISCLAIMED.)-525(IN)-525(NO)-525(EVENT)-525(SHALL)-525(THE)-525(MLD2P4)-525(GROUP)-525(OR)-525(ITS)-525(CONTRIBU)1(TORS)]TJ 0 -10.9589 Td[(BE)-525(LIABLE)-525(FOR)-525(ANY)-525(DIRECT,)-525(INDIRECT,)-525(INCIDENTAL,)-525(SPECIAL,)-525(EXEMPLARY,)-525(OR)]TJ 0 -10.9589 Td[(CONSEQUENTIAL)-525(DAMAGES)-525(\050INCLUDING,)-525(BUT)-525(NOT)-525(LIMITED)-525(TO,)-525(PROCUREMENT)-525(OF)]TJ 0 -10.9589 Td[(SUBSTITUTE)-525(GOODS)-525(OR)-525(SERVICES;)-525(LOSS)-525(OF)-525(USE,)-525(DATA,)-525(OR)-525(PROFITS;)-525(OR)-525(BUSINESS)]TJ 0 -10.9589 Td[(INTERRUPTION\051)-525(HOWEVER)-525(CAUSED)-525(AND)-525(ON)-525(ANY)-525(THEORY)-525(OF)-525(LIABILITY,)-525(WHETHER)-525(IN)]TJ 0 -10.9589 Td[(CONTRACT,)-525(STRICT)-525(LIABILITY,)-525(OR)-525(TORT)-525(\050INCLUDING)-525(NEGLIGENCE)-525(OR)-525(OTHERWISE\051)]TJ 0 -10.9589 Td[(ARISING)-525(IN)-525(ANY)-525(WAY)-525(OUT)-525(OF)-525(THE)-525(USE)-525(OF)-525(THIS)-525(SOFTWARE,)-525(EVEN)-525(IF)-525(ADVISED)-525(OF)-525(THE)]TJ 0 -10.9589 Td[(POSSIBILITY)-525(OF)-525(SUCH)-525(DAMAGE.)]TJ +/F18 14.3462 Tf 124.802 706.1289 Td[(3)-1125(C)-1(on\014g)-1(uri)-1(ng)-375(and)-375(Bui)-1(ldi)-1(ng)-375(MLD2)-1(P)1(4)]TJ/F8 9.9626 Tf 0 -21.821 Td[(-)-334(u)1(s)-1(o)-333(di)-333(G)1(NU)-334(au)1(to)-28(conf)-333(e)-334(au)1(tomak)28(e)]TJ 0 -11.9551 Td[(-)-387(soft)28(w)28(are)-387(d)1(i)-386(base)-387(nec)-1(es)-1(sario)-386(\050M)1(PI,)-386(B)-1(LA)28(CS,)-386(BLAS,)-386(P)1(SBLAS,)-386(UMF)1(P)83(A)28(CK)-386(?)-387(-)]TJ 0 -11.9552 Td[(sp)-28(ec)-1(i)1(\014care)-334(v)28(ersioni\051)]TJ 0 -11.9552 Td[(-)-388(s)-1(of)1(t)27(w)28(are)-388(opzion)1(ale)-389(\050S)1(up)-27(e)-1(r)1(LU,)-388(Su)1(p)-27(e)-1(rLUd)1(ist)-388(-)-389(sp)-28(eci\014care)-388(v)28(e)-1(r)1(s)-1(ion)1(i)-388(e)-389(op)1(z)-1(i)1(oni)-388(d)1(i)]TJ 0 -11.9551 Td[(con\014gu)1(re\051)]TJ 0 -11.9552 Td[(-)-321(s)-1(i)1(s)-1(tem)-1(i)-320(op)-27(e)-1(rat)1(ivi)-321(e)-321(com)-1(p)1(ilator)1(i)-321(su)-321(cui)-320(MLD2P4)-320(e)-1(')-320(s)-1(tato)-321(costrui)1(to)-321(con)-321(succ)-1(es)-1(so)]TJ 0 -11.9552 Td[(-)-334(sono)-333(pr)1(e)-1(v)1(is)-1(te)-333(opzioni)-333(d)1(i)-333(c)-1(on\014)1(gur)1(az)-1(ion)1(e)-334(p)-27(e)-1(r)-333(i)1(l)-334(d)1(e)-1(b)1(uggi)1(ng)-333(o)-334(p)-27(er)-333(il)-333(pro\014)1(lin)1(g?)]TJ 0 -11.9551 Td[(-)-334(al)1(b)-28(ero)-333(delle)-334(d)1(irectory)-333(ge)-1(n)1(e)-1(r)1(ato)-334(al)-333(mome)-1(n)28(t)1(o)-334(d)1(e)-1(ll)1('in)1(s)-1(tall)1(az)-1(ion)1(e)]TJ ET 1 0 0 1 124.802 90.4377 cm 0 g 0 G @@ -1018,33 +1112,33 @@ ET 0 g 0 G endstream endobj -155 0 obj << +168 0 obj << /Type /Page -/Contents 156 0 R -/Resources 154 0 R +/Contents 169 0 R +/Resources 167 0 R /MediaBox [0 0 595.2756 841.8898] -/Parent 153 0 R -/Annots [ 158 0 R ] +/Parent 166 0 R +/Annots [ 171 0 R ] >> endobj -158 0 obj << +171 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] -/Rect [123.8057 740.0018 130.7796 748.9129] +/Rect [123.8057 738.0647 130.7796 748.9129] /Subtype /Link -/A << /S /GoTo /D (section.1) >> +/A << /S /GoTo /D (section.3) >> >> endobj -157 0 obj << -/D [155 0 R /XYZ 124.802 740.9981 null] +170 0 obj << +/D [168 0 R /XYZ 124.802 740.9981 null] >> endobj 18 0 obj << -/D [155 0 R /XYZ 124.802 716.0915 null] +/D [168 0 R /XYZ 124.802 716.0915 null] >> endobj -154 0 obj << -/Font << /F34 129 0 R /F8 91 0 R /F18 73 0 R /F39 161 0 R >> +167 0 obj << +/Font << /F34 134 0 R /F8 95 0 R /F18 77 0 R >> /ProcSet [ /PDF /Text ] >> endobj -164 0 obj << -/Length 1982 +174 0 obj << +/Length 14202 >> stream 1 0 0 1 124.802 740.9981 cm @@ -1052,24 +1146,24 @@ stream 0 0 1 rg 0 0 1 RG 1 0 0 1 -124.802 -740.9981 cm BT -/F34 9.9626 Tf 124.802 740.9981 Td[(1)]TJ +/F34 9.9626 Tf 124.802 740.9981 Td[(4)]TJ ET 1 0 0 1 129.7833 740.9981 cm 0 g 0 G 1 0 0 1 -129.7833 -740.9981 cm BT -/F34 9.9626 Tf 133.1042 740.9981 Td[(General)-333(Ov)28(ervi)1(e)-1(w)]TJ +/F34 9.9626 Tf 133.1042 740.9981 Td[(Gettin)1(g)-334(started)]TJ ET -1 0 0 1 124.802 739.4042 cm +1 0 0 1 124.802 737.467 cm q []0 d 0 J 0.3985 w 0 0.1992 m -86.1908 0.1992 l +75.4256 0.1992 l S Q -1 0 0 1 -124.802 -739.4042 cm +1 0 0 1 -124.802 -737.467 cm BT /F8 9.9626 Tf 463.5317 740.9981 Td[(5)]TJ ET @@ -1077,76 +1171,21 @@ ET 0 g 0 G 1 0 0 1 -468.5131 -740.9981 cm BT -/F18 14.3462 Tf 124.802 706.1289 Td[(4)-1125(C)-1(on\014g)-1(uri)-1(ng)-375(and)-375(Bui)-1(ldi)-1(ng)-375(MLD2)-1(P)1(4)]TJ/F8 9.9626 Tf 0 -21.821 Td[(-)-334(u)1(s)-1(o)-333(di)-333(G)1(NU)-334(au)1(to)-28(conf)-333(e)-334(au)1(tomak)28(e)]TJ 0 -11.9551 Td[(-)-387(soft)28(w)28(are)-387(d)1(i)-386(base)-387(nec)-1(es)-1(sario)-386(\050M)1(PI,)-386(B)-1(LA)28(CS,)-386(BLAS,)-386(P)1(SBLAS,)-386(UMF)1(P)83(A)28(CK)-386(?)-387(-)]TJ 0 -11.9552 Td[(sp)-28(ec)-1(i)1(\014care)-334(v)28(ersioni\051)]TJ 0 -11.9552 Td[(-)-388(s)-1(of)1(t)27(w)28(are)-388(opzion)1(ale)-389(\050S)1(up)-27(e)-1(r)1(LU,)-388(Su)1(p)-27(e)-1(rLUd)1(ist)-388(-)-389(sp)-28(eci\014care)-388(v)28(e)-1(r)1(s)-1(ion)1(i)-388(e)-389(op)1(z)-1(i)1(oni)-388(d)1(i)]TJ 0 -11.9551 Td[(con\014gu)1(re\051)]TJ 0 -11.9552 Td[(-)-321(s)-1(i)1(s)-1(tem)-1(i)-320(op)-27(e)-1(rat)1(ivi)-321(e)-321(com)-1(p)1(ilator)1(i)-321(su)-321(cui)-320(MLD2P4)-320(e)-1(')-320(s)-1(tato)-321(costrui)1(to)-321(con)-321(succ)-1(es)-1(so)]TJ 0 -11.9552 Td[(-)-334(sono)-333(pr)1(e)-1(v)1(is)-1(te)-333(opzioni)-333(d)1(i)-333(c)-1(on\014)1(gur)1(az)-1(ion)1(e)-334(p)-27(e)-1(r)-333(i)1(l)-334(d)1(e)-1(b)1(uggi)1(ng)-333(o)-334(p)-27(er)-333(il)-333(pro\014)1(lin)1(g?)]TJ 0 -11.9551 Td[(-)-334(al)1(b)-28(ero)-333(delle)-334(d)1(irectory)-333(ge)-1(n)1(e)-1(r)1(ato)-334(al)-333(mome)-1(n)28(t)1(o)-334(d)1(e)-1(ll)1('in)1(s)-1(tall)1(az)-1(ion)1(e)]TJ +/F18 14.3462 Tf 124.802 706.1289 Td[(4)-1125(G)-1(et)-1(ti)-1(ng)-375(St)-1(a)1(r)-1(te)-1(d)]TJ/F8 9.9626 Tf 0 -21.821 Td[(W)84(e)-318(des)-1(crib)-27(e)-318(th)1(e)-318(basics)-318(for)-317(b)1(uild)1(in)1(g)-318(an)1(d)-317(appl)1(yin)1(g)-318(MLD)1(2P4)-317(one-)-1(lev)28(el)-318(an)1(d)-317(m)27(u)1(lti-)]TJ 0 -11.9551 Td[(lev)28(e)-1(l)-292(Sc)28(h)28(w)27(ar)1(z)-294(p)1(rec)-1(on)1(dit)1(ioners)-293(with)-292(the)-293(Kry)1(lo)28(v)-293(solv)28(e)-1(r)1(s)-293(includ)1(e)-1(d)-292(in)-292(PS)1(BLAS)-293([)]TJ ET -1 0 0 1 124.802 90.4377 cm +1 0 0 1 453.0156 672.3528 cm +0 1 0 rg 0 1 0 RG +1 0 0 1 -453.0156 -672.3528 cm +BT +/F8 9.9626 Tf 453.0156 672.3528 Td[(11)]TJ +ET +1 0 0 1 462.9783 672.3528 cm 0 g 0 G -1 0 0 1 343.7111 0 cm -0 g 0 G -endstream -endobj -163 0 obj << -/Type /Page -/Contents 164 0 R -/Resources 162 0 R -/MediaBox [0 0 595.2756 841.8898] -/Parent 153 0 R -/Annots [ 166 0 R ] ->> endobj -166 0 obj << -/Type /Annot -/Border[0 0 0]/H/I/C[1 0 0] -/Rect [123.8057 740.0018 130.7796 748.9129] -/Subtype /Link -/A << /S /GoTo /D (section.1) >> ->> endobj -165 0 obj << -/D [163 0 R /XYZ 124.802 740.9981 null] ->> endobj -22 0 obj << -/D [163 0 R /XYZ 124.802 716.0915 null] ->> endobj -162 0 obj << -/Font << /F34 129 0 R /F8 91 0 R /F18 73 0 R >> -/ProcSet [ /PDF /Text ] ->> endobj -169 0 obj << -/Length 13987 ->> -stream -1 0 0 1 124.802 740.9981 cm -0 g 0 G -0 0 1 rg 0 0 1 RG -1 0 0 1 -124.802 -740.9981 cm -BT -/F34 9.9626 Tf 124.802 740.9981 Td[(1)]TJ -ET -1 0 0 1 129.7833 740.9981 cm -0 g 0 G -1 0 0 1 -129.7833 -740.9981 cm -BT -/F34 9.9626 Tf 133.1042 740.9981 Td[(General)-333(Ov)28(ervi)1(e)-1(w)]TJ -ET -1 0 0 1 124.802 739.4042 cm -q -[]0 d -0 J -0.3985 w -0 0.1992 m -86.1908 0.1992 l -S -Q -1 0 0 1 -124.802 -739.4042 cm -BT -/F8 9.9626 Tf 463.5317 740.9981 Td[(6)]TJ -ET -1 0 0 1 468.5131 740.9981 cm -0 g 0 G -1 0 0 1 -468.5131 -740.9981 cm -BT -/F18 14.3462 Tf 124.802 706.1289 Td[(5)-1125(G)-1(et)-1(ti)-1(ng)-375(St)-1(a)1(r)-1(te)-1(d)]TJ/F8 9.9626 Tf 0 -21.821 Td[(W)84(e)-318(des)-1(crib)-27(e)-318(th)1(e)-318(basics)-318(for)-317(b)1(uild)1(in)1(g)-318(an)1(d)-317(appl)1(yin)1(g)-318(MLD)1(2P4)-317(one-)-1(lev)28(el)-318(an)1(d)-317(m)27(u)1(lti-)]TJ 0 -11.9551 Td[(lev)28(e)-1(l)-392(Sc)28(h)28(w)27(ar)1(z)-394(p)1(rec)-1(on)1(dit)1(ioners)-393(with)-392(the)-393(Kry)1(lo)28(v)-393(solv)28(e)-1(r)1(s)-393(includ)1(e)-1(d)-392(in)-392(PS)1(BLAS)-393([])1(.)]TJ 0 -11.9552 Td[(The)-334(f)1(ollo)28(win)1(g)-334(ste)-1(p)1(s)-334(are)-333(requir)1(e)-1(d)1(:)]TJ -ET -1 0 0 1 124.802 640.4723 cm +1 0 0 1 -462.9783 -672.3528 cm +BT +/F8 9.9626 Tf 462.9783 672.3528 Td[(].)]TJ -338.1763 -11.9552 Td[(The)-334(f)1(ollo)28(win)1(g)-334(ste)-1(p)1(s)-334(are)-333(requir)1(e)-1(d)1(:)]TJ +ET +1 0 0 1 124.802 640.4723 cm 0 g 0 G 1 0 0 1 -124.802 -640.4723 cm BT @@ -1156,7 +1195,7 @@ ET 0 g 0 G 1 0 0 1 -144.7273 -640.4723 cm BT -/F19 9.9626 Tf 149.7086 640.4723 Td[(De)51(cl)1(a)-1(r)52(e)-334(t)-1(he)-334(pr)51(e)51(c)52(o)-1(nditi)1(o)-1(ner)-334(data)-335(s)1(t)-1(r)1(uctur)52(e)]TJ/F8 9.9626 Tf 177.0401 0 Td[(.)-436(It)-308(i)1(s)-309(a)-307(deriv)28(ed)-308(d)1(ata)-308(t)28(yp)-27(e)-1(,)]TJ/F40 9.9626 Tf 117.5221 0 Td[(mld_)]TJ/F8 9.9626 Tf 20.9214 0 Td[(-)]TJ/F19 9.9626 Tf -315.4836 -11.9552 Td[(x)]TJ/F40 9.9626 Tf 5.8212 0 Td[(prec_type)]TJ/F8 9.9626 Tf 47.0731 0 Td[(,)-446(where)]TJ/F19 9.9626 Tf 36.9198 0 Td[(x)]TJ/F8 9.9626 Tf 10.0411 0 Td[(ma)27(y)-423(b)-27(e)]TJ/F40 9.9626 Tf 36.9442 0 Td[(s)]TJ/F8 9.9626 Tf 5.2303 0 Td[(,)]TJ/F40 9.9626 Tf 7.2121 0 Td[(d)]TJ/F8 9.9626 Tf 5.2304 0 Td[(,)]TJ/F40 9.9626 Tf 7.2121 0 Td[(c)]TJ/F8 9.9626 Tf 9.4502 0 Td[(or)]TJ/F40 9.9626 Tf 13.1034 0 Td[(z)]TJ/F8 9.9626 Tf 5.2303 0 Td[(,)-446(acc)-1(or)1(din)1(g)-424(to)-423(the)-424(b)1(as)-1(ic)-424(d)1(ata)]TJ -189.4682 -11.9551 Td[(t)28(yp)-27(e)-349(of)-348(th)1(e)-349(sparse)-349(matri)1(x)-349(\050)]TJ/F40 9.9626 Tf 117.9715 0 Td[(s)]TJ/F8 9.9626 Tf 8.7001 0 Td[(=)-348(real)-348(s)-1(i)1(ngle)-349(p)1(rec)-1(i)1(s)-1(ion)1(;)]TJ/F40 9.9626 Tf 103.2297 0 Td[(d)]TJ/F8 9.9626 Tf 8.7001 0 Td[(=)-348(real)-348(dou)1(ble)-348(pre-)]TJ -238.6014 -11.9552 Td[(cis)-1(i)1(on;)]TJ/F40 9.9626 Tf 30.3632 0 Td[(c)]TJ/F8 9.9626 Tf 8.3508 0 Td[(=)-313(com)-1(p)1(le)-1(x)-313(sin)1(gle)-314(p)1(rec)-1(ision)1(;)]TJ/F40 9.9626 Tf 121.4459 0 Td[(z)]TJ/F8 9.9626 Tf 8.3508 0 Td[(=)-313(com)-1(p)1(le)-1(x)-313(d)1(oub)1(le)-314(p)1(rec)-1(ision)1(\051.)-438(Thi)1(s)]TJ -168.5107 -11.9552 Td[(dat)1(a)-283(stru)1(c)-1(tu)1(re)-283(i)1(s)-283(ac)-1(ce)-1(sse)-1(d)-282(b)28(y)-282(th)1(e)-283(u)1(s)-1(er)-282(only)-282(th)1(rou)1(gh)-282(the)-283(M)1(LD2P4)-282(rou)1(tin)1(e)-1(s,)]TJ 0 -11.9551 Td[(fol)1(lo)28(w)-1(i)1(ng)-333(an)-333(ob)-55(jec)-1(t-ori)1(e)-1(n)28(ted)-333(ap)1(proac)28(h.)]TJ +/F19 9.9626 Tf 149.7086 640.4723 Td[(De)51(cl)1(a)-1(r)52(e)-334(t)-1(he)-334(pr)51(e)51(c)52(o)-1(nditi)1(o)-1(ner)-334(data)-335(s)1(t)-1(r)1(uctur)52(e)]TJ/F8 9.9626 Tf 177.0401 0 Td[(.)-436(It)-308(i)1(s)-309(a)-307(deriv)28(ed)-308(d)1(ata)-308(t)28(yp)-27(e)-1(,)]TJ/F39 9.9626 Tf 117.5221 0 Td[(mld_)]TJ/F8 9.9626 Tf 20.9214 0 Td[(-)]TJ/F19 9.9626 Tf -315.4836 -11.9552 Td[(x)]TJ/F39 9.9626 Tf 5.8212 0 Td[(prec_type)]TJ/F8 9.9626 Tf 47.0731 0 Td[(,)-446(where)]TJ/F19 9.9626 Tf 36.9198 0 Td[(x)]TJ/F8 9.9626 Tf 10.0411 0 Td[(ma)27(y)-423(b)-27(e)]TJ/F39 9.9626 Tf 36.9442 0 Td[(s)]TJ/F8 9.9626 Tf 5.2303 0 Td[(,)]TJ/F39 9.9626 Tf 7.2121 0 Td[(d)]TJ/F8 9.9626 Tf 5.2304 0 Td[(,)]TJ/F39 9.9626 Tf 7.2121 0 Td[(c)]TJ/F8 9.9626 Tf 9.4502 0 Td[(or)]TJ/F39 9.9626 Tf 13.1034 0 Td[(z)]TJ/F8 9.9626 Tf 5.2303 0 Td[(,)-446(acc)-1(or)1(din)1(g)-424(to)-423(the)-424(b)1(as)-1(ic)-424(d)1(ata)]TJ -189.4682 -11.9551 Td[(t)28(yp)-27(e)-349(of)-348(th)1(e)-349(sparse)-349(matri)1(x)-349(\050)]TJ/F39 9.9626 Tf 117.9715 0 Td[(s)]TJ/F8 9.9626 Tf 8.7001 0 Td[(=)-348(real)-348(s)-1(i)1(ngle)-349(p)1(rec)-1(i)1(s)-1(ion)1(;)]TJ/F39 9.9626 Tf 103.2297 0 Td[(d)]TJ/F8 9.9626 Tf 8.7001 0 Td[(=)-348(real)-348(dou)1(ble)-348(pre-)]TJ -238.6014 -11.9552 Td[(cis)-1(i)1(on;)]TJ/F39 9.9626 Tf 30.3632 0 Td[(c)]TJ/F8 9.9626 Tf 8.3508 0 Td[(=)-313(com)-1(p)1(le)-1(x)-313(sin)1(gle)-314(p)1(rec)-1(ision)1(;)]TJ/F39 9.9626 Tf 121.4459 0 Td[(z)]TJ/F8 9.9626 Tf 8.3508 0 Td[(=)-313(com)-1(p)1(le)-1(x)-313(d)1(oub)1(le)-314(p)1(rec)-1(ision)1(\051.)-438(Thi)1(s)]TJ -168.5107 -11.9552 Td[(dat)1(a)-283(stru)1(c)-1(tu)1(re)-283(i)1(s)-283(ac)-1(ce)-1(sse)-1(d)-282(b)28(y)-282(th)1(e)-283(u)1(s)-1(er)-282(only)-282(th)1(rou)1(gh)-282(the)-283(M)1(LD2P4)-282(rou)1(tin)1(e)-1(s,)]TJ 0 -11.9551 Td[(fol)1(lo)28(w)-1(i)1(ng)-333(an)-333(ob)-55(jec)-1(t-ori)1(e)-1(n)28(ted)-333(ap)1(proac)28(h.)]TJ ET 1 0 0 1 124.802 560.7712 cm 0 g 0 G @@ -1168,7 +1207,7 @@ ET 0 g 0 G 1 0 0 1 -144.7273 -560.7712 cm BT -/F19 9.9626 Tf 149.7086 560.7712 Td[(A)25(l)-50(lo)51(c)51(ate)-473(and)-473(initi)1(a)-1(l)1(ize)-472(t)-1(he)-472(p)-1(r)52(e)51(c)51(onditioner)-473(data)-473(stru)1(ctur)51(e,)-501(ac)51(c)51(or)52(ding)-473(to)-473(a)]TJ 0 -11.9552 Td[(pr)51(e)51(c)52(o)-1(nditi)1(o)-1(ner)-378(ty)1(p)51(e)-379(chosen)-378(by)-378(the)-379(u)1(ser)]TJ/F8 9.9626 Tf 167.3991 0 Td[(.)-511(Thi)1(s)-356(is)-356(p)-28(erf)1(orme)-1(d)-355(b)28(y)-355(th)1(e)-356(routi)1(ne)]TJ/F40 9.9626 Tf -167.3991 -11.9551 Td[(mld_precinit)]TJ/F8 9.9626 Tf 62.7641 0 Td[(,)-427(wh)1(ic)27(h)-407(als)-1(o)-408(se)-1(ts)-408(defau)1(lts)-409(f)1(or)-408(eac)27(h)-408(p)1(rec)-1(on)1(diti)1(oner)-408(t)28(yp)-27(e)-409(se)-1(-)]TJ -62.7641 -11.9552 Td[(lec)-1(ted)-409(b)28(y)-409(the)-409(use)-1(r.)-672(T)-1(h)1(e)-410(defau)1(lts)-410(ass)-1(o)-27(c)-1(iated)-409(to)-409(e)-1(ac)27(h)-409(p)1(rec)-1(on)1(dit)1(ioner)-409(t)27(y)1(p)-28(e)]TJ 0 -11.9552 Td[(are)-329(listed)-329(in)-328(T)83(ab)1(le)]TJ +/F19 9.9626 Tf 149.7086 560.7712 Td[(A)25(l)-50(lo)51(c)51(ate)-473(and)-473(initi)1(a)-1(l)1(ize)-472(t)-1(he)-472(p)-1(r)52(e)51(c)51(onditioner)-473(data)-473(stru)1(ctur)51(e,)-501(ac)51(c)51(or)52(ding)-473(to)-473(a)]TJ 0 -11.9552 Td[(pr)51(e)51(c)52(o)-1(nditi)1(o)-1(ner)-378(ty)1(p)51(e)-379(chosen)-378(by)-378(the)-379(u)1(ser)]TJ/F8 9.9626 Tf 167.3991 0 Td[(.)-511(Thi)1(s)-356(is)-356(p)-28(erf)1(orme)-1(d)-355(b)28(y)-355(th)1(e)-356(routi)1(ne)]TJ/F39 9.9626 Tf -167.3991 -11.9551 Td[(mld_precinit)]TJ/F8 9.9626 Tf 62.7641 0 Td[(,)-427(wh)1(ic)27(h)-407(als)-1(o)-408(se)-1(ts)-408(defau)1(lts)-409(f)1(or)-408(eac)27(h)-408(p)1(rec)-1(on)1(diti)1(oner)-408(t)28(yp)-27(e)-409(se)-1(-)]TJ -62.7641 -11.9552 Td[(lec)-1(ted)-409(b)28(y)-409(the)-409(use)-1(r.)-672(T)-1(h)1(e)-410(defau)1(lts)-410(ass)-1(o)-27(c)-1(iated)-409(to)-409(e)-1(ac)27(h)-409(p)1(rec)-1(on)1(dit)1(ioner)-409(t)27(y)1(p)-28(e)]TJ 0 -11.9552 Td[(are)-329(listed)-329(in)-328(T)83(ab)1(le)]TJ ET 1 0 0 1 231.8053 512.9505 cm 0 0 1 rg 0 0 1 RG @@ -1180,7 +1219,7 @@ ET 0 g 0 G 1 0 0 1 -236.7867 -512.9505 cm BT -/F8 9.9626 Tf 236.7867 512.9505 Td[(,)-330(wh)1(e)-1(r)1(e)-330(th)1(e)-329(s)-1(tri)1(ngs)-329(use)-1(d)-328(b)28(y)]TJ/F40 9.9626 Tf 120.6218 0 Td[(mld_precinit)]TJ/F8 9.9626 Tf 66.0404 0 Td[(to)-329(id)1(e)-1(n)29(tify)]TJ -273.7403 -11.9552 Td[(th)1(e)-334(pr)1(e)-1(cond)1(ition)1(e)-1(r)-333(t)28(yp)-27(e)-1(s)-333(are)-334(also)-333(giv)28(e)-1(n)1(.)]TJ +/F8 9.9626 Tf 236.7867 512.9505 Td[(,)-330(wh)1(e)-1(r)1(e)-330(th)1(e)-329(s)-1(tri)1(ngs)-329(use)-1(d)-328(b)28(y)]TJ/F39 9.9626 Tf 120.6218 0 Td[(mld_precinit)]TJ/F8 9.9626 Tf 66.0404 0 Td[(to)-329(id)1(e)-1(n)29(tify)]TJ -273.7403 -11.9552 Td[(th)1(e)-334(pr)1(e)-1(cond)1(ition)1(e)-1(r)-333(t)28(yp)-27(e)-1(s)-333(are)-334(also)-333(giv)28(e)-1(n)1(.)]TJ ET 1 0 0 1 124.802 481.0701 cm 0 g 0 G @@ -1192,13 +1231,13 @@ ET 0 g 0 G 1 0 0 1 -144.7273 -481.0701 cm BT -/F19 9.9626 Tf 149.7086 481.0701 Td[(Mo)51(di)1(fy)-348(the)-349(s)1(ele)51(cte)51(d)-348(pr)51(e)51(c)51(onditioner)-348(typ)51(e,)-350(by)-347(p)-1(r)52(op)51(erl)1(y)-348(sett)-1(i)1(ng)-349(pr)52(e)51(c)51(ond)-1(i)1(tioner)]TJ 0 -11.9552 Td[(p)51(ar)51(ameter)1(s.)]TJ/F8 9.9626 Tf 54.8257 0 Td[(This)-330(i)1(s)-330(p)-28(erf)1(orme)-1(d)-329(b)28(y)-329(th)1(e)-330(rou)1(tine)]TJ/F40 9.9626 Tf 145.53 0 Td[(mld_precset)]TJ/F8 9.9626 Tf 57.5338 0 Td[(.)-443(This)-329(routi)1(ne)]TJ -257.8895 -11.9552 Td[(m)27(u)1(s)-1(t)-359(b)-27(e)-360(called)-359(only)-359(i)1(f)-359(the)-360(u)1(s)-1(er)-359(w)28(an)28(ts)-360(to)-359(mo)-28(dif)1(y)-359(the)-359(defaul)1(t)-360(v)56(alu)1(e)-1(s)-359(of)-359(the)]TJ 0 -11.9551 Td[(par)1(am)-1(eters)-486(as)-1(so)-28(ciate)-1(d)-485(to)-486(th)1(e)-487(sele)-1(cted)-486(p)1(re)-1(cond)1(ition)1(e)-1(r)-485(t)28(yp)-27(e)-1(,)-524(to)-485(obtain)-485(a)]TJ 0 -11.9552 Td[(v)56(arian)29(t)-298(of)-297(the)-298(p)1(rec)-1(on)1(dit)1(ioner.)-432(Examp)1(le)-1(s)-298(of)-297(u)1(s)-1(e)-298(of)]TJ/F40 9.9626 Tf 214.6846 0 Td[(mld_precset)]TJ/F8 9.9626 Tf 60.4984 0 Td[(is)-298(giv)28(en)-297(in)]TJ -275.183 -11.9552 Td[(Section)]TJ +/F19 9.9626 Tf 149.7086 481.0701 Td[(Mo)51(di)1(fy)-348(the)-349(s)1(ele)51(cte)51(d)-348(pr)51(e)51(c)51(onditioner)-348(typ)51(e,)-350(by)-347(p)-1(r)52(op)51(erl)1(y)-348(sett)-1(i)1(ng)-349(pr)52(e)51(c)51(ond)-1(i)1(tioner)]TJ 0 -11.9552 Td[(p)51(ar)51(ameter)1(s.)]TJ/F8 9.9626 Tf 54.8257 0 Td[(This)-330(i)1(s)-330(p)-28(erf)1(orme)-1(d)-329(b)28(y)-329(th)1(e)-330(rou)1(tine)]TJ/F39 9.9626 Tf 145.53 0 Td[(mld_precset)]TJ/F8 9.9626 Tf 57.5338 0 Td[(.)-443(This)-329(routi)1(ne)]TJ -257.8895 -11.9552 Td[(m)27(u)1(s)-1(t)-359(b)-27(e)-360(called)-359(only)-359(i)1(f)-359(the)-360(u)1(s)-1(er)-359(w)28(an)28(ts)-360(to)-359(mo)-28(dif)1(y)-359(the)-359(defaul)1(t)-360(v)56(alu)1(e)-1(s)-359(of)-359(the)]TJ 0 -11.9551 Td[(par)1(am)-1(eters)-486(as)-1(so)-28(ciate)-1(d)-485(to)-486(th)1(e)-487(sele)-1(cted)-486(p)1(re)-1(cond)1(ition)1(e)-1(r)-485(t)28(yp)-27(e)-1(,)-524(to)-485(obtain)-485(a)]TJ 0 -11.9552 Td[(v)56(arian)29(t)-298(of)-297(the)-298(p)1(rec)-1(on)1(dit)1(ioner.)-432(Examp)1(le)-1(s)-298(of)-297(u)1(s)-1(e)-298(of)]TJ/F39 9.9626 Tf 214.6846 0 Td[(mld_precset)]TJ/F8 9.9626 Tf 60.4984 0 Td[(is)-298(giv)28(en)-297(in)]TJ -275.183 -11.9552 Td[(Section)]TJ ET 1 0 0 1 184.4248 421.2942 cm 0 0 1 rg 0 0 1 RG 1 0 0 1 -184.4248 -421.2942 cm BT -/F8 9.9626 Tf 184.4248 421.2942 Td[(5.1)]TJ +/F8 9.9626 Tf 184.4248 421.2942 Td[(4.1)]TJ ET 1 0 0 1 197.1549 421.2942 cm 0 g 0 G @@ -1210,7 +1249,7 @@ ET 0 0 1 rg 0 0 1 RG 1 0 0 1 -365.1511 -409.3391 cm BT -/F8 9.9626 Tf 365.1511 409.3391 Td[(6)]TJ +/F8 9.9626 Tf 365.1511 409.3391 Td[(5)]TJ ET 1 0 0 1 370.1325 409.3391 cm 0 g 0 G @@ -1252,7 +1291,7 @@ ET 0 g 0 G 1 0 0 1 -144.7273 -389.4138 cm BT -/F19 9.9626 Tf 149.7086 389.4138 Td[(Bui)1(ld)-475(the)-476(pr)52(e)51(c)51(onditioner)-475(for)-475(a)-475(given)-475(matrix.)]TJ/F8 9.9626 Tf 205.6236 0 Td[(This)-461(is)-461(p)-27(e)-1(rf)1(orme)-1(d)-460(b)28(y)-461(th)1(e)]TJ -205.6236 -11.9552 Td[(rou)1(tin)1(e)]TJ/F40 9.9626 Tf 34.3435 0 Td[(mld_precbld)]TJ/F8 9.9626 Tf 57.5337 0 Td[(.)]TJ +/F19 9.9626 Tf 149.7086 389.4138 Td[(Bui)1(ld)-475(the)-476(pr)52(e)51(c)51(onditioner)-475(for)-475(a)-475(given)-475(matrix.)]TJ/F8 9.9626 Tf 205.6236 0 Td[(This)-461(is)-461(p)-27(e)-1(rf)1(orme)-1(d)-460(b)28(y)-461(th)1(e)]TJ -205.6236 -11.9552 Td[(rou)1(tin)1(e)]TJ/F39 9.9626 Tf 34.3435 0 Td[(mld_precbld)]TJ/F8 9.9626 Tf 57.5337 0 Td[(.)]TJ ET 1 0 0 1 124.802 357.5333 cm 0 g 0 G @@ -1264,7 +1303,7 @@ ET 0 g 0 G 1 0 0 1 -144.7273 -357.5333 cm BT -/F19 9.9626 Tf 149.7086 357.5333 Td[(App)-1(l)1(y)-342(the)-342(pr)52(e)51(c)51(on)-1(di)1(t)-1(i)1(on)-1(er)-341(at)-342(e)51(ach)-342(iter)51(ation)-342(of)-342(a)-342(Kr)1(yl)1(ov)-342(solver.)]TJ/F8 9.9626 Tf 268.9199 0 Td[(This)-316(is)-316(p)-28(er-)]TJ -268.9199 -11.9551 Td[(for)1(m)-1(ed)-389(b)28(y)-389(th)1(e)-390(rou)1(tine)]TJ/F40 9.9626 Tf 101.086 0 Td[(mld_precaply)]TJ/F8 9.9626 Tf 62.7641 0 Td[(.)-612(When)-389(using)-389(th)1(e)-390(PS)1(B)-1(LAS)-389(K)1(rylo)28(v)]TJ -163.8501 -11.9552 Td[(solv)28(e)-1(r)1(s)-1(,)-244(th)1(is)-223(ste)-1(p)-221(is)-223(com)-1(p)1(lete)-1(ly)-222(tr)1(anspar)1(e)-1(n)28(t)-222(to)-222(th)1(e)-223(user,)-244(s)-1(in)1(c)-1(e)]TJ/F40 9.9626 Tf 256.1509 0 Td[(mld_precaply)]TJ/F8 9.9626 Tf -256.1509 -11.9552 Td[(is)-222(c)-1(all)1(e)-1(d)-222(b)29(y)-222(the)-223(P)1(SBLAS)-222(r)1(outin)1(e)-223(impl)1(e)-1(me)-1(n)29(ting)-222(th)1(e)-223(Kr)1(ylo)28(v)-222(s)-1(ol)1(v)28(e)-1(r)-222(\050)]TJ/F40 9.9626 Tf 279.0087 0 Td[(psb_krylov)]TJ/F8 9.9626 Tf 52.3034 0 Td[(\051.)]TJ +/F19 9.9626 Tf 149.7086 357.5333 Td[(App)-1(l)1(y)-342(the)-342(pr)52(e)51(c)51(on)-1(di)1(t)-1(i)1(on)-1(er)-341(at)-342(e)51(ach)-342(iter)51(ation)-342(of)-342(a)-342(Kr)1(yl)1(ov)-342(solver.)]TJ/F8 9.9626 Tf 268.9199 0 Td[(This)-316(is)-316(p)-28(er-)]TJ -268.9199 -11.9551 Td[(for)1(m)-1(ed)-389(b)28(y)-389(th)1(e)-390(rou)1(tine)]TJ/F39 9.9626 Tf 101.086 0 Td[(mld_precaply)]TJ/F8 9.9626 Tf 62.7641 0 Td[(.)-612(When)-389(using)-389(th)1(e)-390(PS)1(B)-1(LAS)-389(K)1(rylo)28(v)]TJ -163.8501 -11.9552 Td[(solv)28(e)-1(r)1(s)-1(,)-244(th)1(is)-223(ste)-1(p)-221(is)-223(com)-1(p)1(lete)-1(ly)-222(tr)1(anspar)1(e)-1(n)28(t)-222(to)-222(th)1(e)-223(user,)-244(s)-1(in)1(c)-1(e)]TJ/F39 9.9626 Tf 256.1509 0 Td[(mld_precaply)]TJ/F8 9.9626 Tf -256.1509 -11.9552 Td[(is)-222(c)-1(all)1(e)-1(d)-222(b)29(y)-222(the)-223(P)1(SBLAS)-222(r)1(outin)1(e)-223(impl)1(e)-1(me)-1(n)29(ting)-222(th)1(e)-223(Kr)1(ylo)28(v)-222(s)-1(ol)1(v)28(e)-1(r)-222(\050)]TJ/F39 9.9626 Tf 279.0087 0 Td[(psb_krylov)]TJ/F8 9.9626 Tf 52.3034 0 Td[(\051.)]TJ ET 1 0 0 1 124.802 301.7425 cm 0 g 0 G @@ -1276,19 +1315,19 @@ ET 0 g 0 G 1 0 0 1 -144.7273 -301.7425 cm BT -/F19 9.9626 Tf 149.7086 301.7425 Td[(F)77(r)51(e)51(e)-398(t)-1(he)-399(pr)52(e)51(c)51(onditioner)-399(data)-399(structur)52(e)]TJ/F8 9.9626 Tf 165.6105 0 Td[(.)-578(This)-378(is)-378(p)-28(erf)1(orm)-1(ed)-378(b)29(y)-378(the)-378(rou)1(tin)1(e)]TJ/F40 9.9626 Tf -165.6105 -11.9551 Td[(mld_precfree)]TJ/F8 9.9626 Tf 62.7641 0 Td[(.)-483(Th)1(is)-347(ste)-1(p)-345(is)-347(com)-1(p)1(lem)-1(en)28(tar)1(y)-346(to)-346(s)-1(tep)-346(1)-346(and)-345(s)-1(h)1(ould)-345(b)-28(e)-346(p)-28(er-)]TJ -62.7641 -11.9552 Td[(for)1(m)-1(ed)-333(when)-333(th)1(e)-334(pr)1(e)-1(cond)1(itioner)-333(is)-334(n)1(o)-333(m)-1(or)1(e)-334(use)-1(d)1(.)]TJ -24.9066 -19.9253 Td[(A)-333(detailed)-333(des)-1(cri)1(ption)-333(of)-332(the)-334(ab)-27(o)28(v)28(e)-334(rou)1(tines)-334(is)-333(giv)28(e)-1(n)-332(in)-333(Sec)-1(t)1(ion)]TJ +/F19 9.9626 Tf 149.7086 301.7425 Td[(F)77(r)51(e)51(e)-398(t)-1(he)-399(pr)52(e)51(c)51(onditioner)-399(data)-399(structur)52(e)]TJ/F8 9.9626 Tf 165.6105 0 Td[(.)-578(This)-378(is)-378(p)-28(erf)1(orm)-1(ed)-378(b)29(y)-378(the)-378(rou)1(tin)1(e)]TJ/F39 9.9626 Tf -165.6105 -11.9551 Td[(mld_precfree)]TJ/F8 9.9626 Tf 62.7641 0 Td[(.)-483(Th)1(is)-347(ste)-1(p)-345(is)-347(com)-1(p)1(lem)-1(en)28(tar)1(y)-346(to)-346(s)-1(tep)-346(1)-346(and)-345(s)-1(h)1(ould)-345(b)-28(e)-346(p)-28(er-)]TJ -62.7641 -11.9552 Td[(for)1(m)-1(ed)-333(when)-333(th)1(e)-334(pr)1(e)-1(cond)1(itioner)-333(is)-334(n)1(o)-333(m)-1(or)1(e)-334(use)-1(d)1(.)]TJ -24.9066 -19.9253 Td[(A)-333(detailed)-333(des)-1(cri)1(ption)-333(of)-332(the)-334(ab)-27(o)28(v)28(e)-334(rou)1(tines)-334(is)-333(giv)28(e)-1(n)-332(in)-333(Sec)-1(t)1(ion)]TJ ET 1 0 0 1 401.7639 257.9069 cm 0 0 1 rg 0 0 1 RG 1 0 0 1 -401.7639 -257.9069 cm BT -/F8 9.9626 Tf 401.7639 257.9069 Td[(6)]TJ +/F8 9.9626 Tf 401.7639 257.9069 Td[(5)]TJ ET 1 0 0 1 406.7452 257.9069 cm 0 g 0 G 1 0 0 1 -406.7452 -257.9069 cm BT -/F8 9.9626 Tf 406.7452 257.9069 Td[(.)]TJ -266.9992 -11.9551 Td[(Note)-398(that)-398(th)1(e)-399(F)84(ortran)-397(95)-399(mo)-28(d)1(ule)]TJ/F40 9.9626 Tf 151.2941 0 Td[(mld_prec_mod)]TJ/F8 9.9626 Tf 66.7307 0 Td[(m)27(u)1(s)-1(t)-398(b)-27(e)-399(u)1(s)-1(ed)-398(i)1(n)-398(the)-398(pr)1(o-)]TJ -232.9688 -11.9552 Td[(gram)-371(c)-1(all)1(ing)-371(the)-372(M)1(LD2P4)-371(rou)1(tines.)-559(F)84(urth)1(e)-1(r)1(m)-1(or)1(e)-1(,)-380(to)-372(ap)1(ply)-371(M)1(LD2P4)-371(w)-1(i)1(th)-371(the)]TJ 0 -11.9552 Td[(Kr)1(ylo)28(v)-369(solv)28(e)-1(r)1(s)-370(f)1(rom)-369(PS)1(B)-1(LAS)1(,)-369(th)1(e)-370(mo)-28(d)1(ule)]TJ/F40 9.9626 Tf 187.8737 0 Td[(psb_krylov_mod)]TJ/F8 9.9626 Tf 76.8999 0 Td[(m)27(u)1(s)-1(t)-368(b)-28(e)-369(used)-369(to)-28(o.)]TJ/F37 9.9626 Tf -264.7736 -11.9551 Td[(DOBBIAMO)-566(S)1(P)-1(E)1(CIF)1(I)-1(C)1(A)-1(RE)-565(QUALC)1(HE)-566(AL)96(TR)32(O)-566(M)1(ODULO,)-566(AD)]TJ 0 -11.9552 Td[(ES)1(EMPIO)-349(psb)]TJ +/F8 9.9626 Tf 406.7452 257.9069 Td[(.)]TJ -266.9992 -11.9551 Td[(Note)-398(that)-398(th)1(e)-399(F)84(ortran)-397(95)-399(mo)-28(d)1(ule)]TJ/F39 9.9626 Tf 151.2941 0 Td[(mld_prec_mod)]TJ/F8 9.9626 Tf 66.7307 0 Td[(m)27(u)1(s)-1(t)-398(b)-27(e)-399(u)1(s)-1(ed)-398(i)1(n)-398(the)-398(pr)1(o-)]TJ -232.9688 -11.9552 Td[(gram)-371(c)-1(all)1(ing)-371(the)-372(M)1(LD2P4)-371(rou)1(tines.)-559(F)84(urth)1(e)-1(r)1(m)-1(or)1(e)-1(,)-380(to)-372(ap)1(ply)-371(M)1(LD2P4)-371(w)-1(i)1(th)-371(the)]TJ 0 -11.9552 Td[(Kr)1(ylo)28(v)-369(solv)28(e)-1(r)1(s)-370(f)1(rom)-369(PS)1(B)-1(LAS)1(,)-369(th)1(e)-370(mo)-28(d)1(ule)]TJ/F39 9.9626 Tf 187.8737 0 Td[(psb_krylov_mod)]TJ/F8 9.9626 Tf 76.8999 0 Td[(m)27(u)1(s)-1(t)-368(b)-28(e)-369(used)-369(to)-28(o.)]TJ/F37 9.9626 Tf -264.7736 -11.9551 Td[(DOBBIAMO)-566(S)1(P)-1(E)1(CIF)1(I)-1(C)1(A)-1(RE)-565(QUALC)1(HE)-566(AL)96(TR)32(O)-566(M)1(ODULO,)-566(AD)]TJ 0 -11.9552 Td[(ES)1(EMPIO)-349(psb)]TJ ET 1 0 0 1 199.2992 198.1311 cm q @@ -1320,37 +1359,37 @@ ET 0 0 1 rg 0 0 1 RG 1 0 0 1 -211.4771 -186.1759 cm BT -/F8 9.9626 Tf 211.4771 186.1759 Td[(5.1)]TJ +/F8 9.9626 Tf 211.4771 186.1759 Td[(4.1)]TJ ET 1 0 0 1 224.2072 186.1759 cm 0 g 0 G 1 0 0 1 -224.2072 -186.1759 cm BT -/F8 9.9626 Tf 224.2072 186.1759 Td[(.)]TJ/F37 9.9626 Tf -99.4052 -11.9552 Td[(Re)-1(mark)1(.)]TJ/F8 9.9626 Tf 47.1673 0 Td[(The)-283(coarse)-1(st-le)-1(v)28(el)-282(s)-1(olv)28(er)-282(use)-1(d)-282(b)29(y)-283(th)1(e)-283(defau)1(lt)-282(t)27(w)28(o-le)-1(v)28(el)-282(precondi)1(tioner)]TJ -47.1673 -11.9551 Td[(has)-276(b)-28(een)-276(c)27(h)1(os)-1(en)-276(b)28(y)-276(taki)1(ng)-276(in)28(to)-276(acc)-1(ou)1(n)28(t)-276(that,)-287(on)-276(p)1(arallel)-276(mac)27(hi)1(nes)-1(,)-287(it)-276(often)-276(leads)]TJ 0 -11.9552 Td[(to)-231(th)1(e)-232(sm)-1(al)1(le)-1(st)-231(exe)-1(cuti)1(on)-231(time)-231(w)-1(h)1(e)-1(n)-230(app)1(lied)-231(to)-231(li)1(near)-231(sys)-1(tems)-232(com)-1(i)1(ng)-231(fr)1(om)-232(\014)1(ni)1(te)-1(-)]TJ 0 -11.9552 Td[(di)1(\013)-1(erence)-282(discre)-1(t)1(iz)-1(ati)1(ons)-282(of)-281(basic)-282(ellip)1(tic)-282(P)1(DE)-281(prob)1(lem)-1(s,)-292(considered)-281(as)-282(s)-1(tan)1(dard)]TJ 0 -11.9551 Td[(tes)-1(ts)-249(for)-248(m)27(u)1(lti-lev)28(e)-1(l)-248(Sc)27(h)29(w)27(arz)-249(p)1(re)-1(cond)1(ition)1(e)-1(r)1(s)-250([)]TJ +/F8 9.9626 Tf 224.2072 186.1759 Td[(.)]TJ/F37 9.9626 Tf -99.4052 -11.9552 Td[(Re)-1(mark)1(.)]TJ/F8 9.9626 Tf 47.1673 0 Td[(The)-283(coarse)-1(st-le)-1(v)28(el)-282(s)-1(olv)28(er)-282(use)-1(d)-282(b)29(y)-283(th)1(e)-283(defau)1(lt)-282(t)27(w)28(o-le)-1(v)28(el)-282(precondi)1(tioner)]TJ -47.1673 -11.9551 Td[(has)-276(b)-28(een)-276(c)27(h)1(os)-1(en)-276(b)28(y)-276(taki)1(ng)-276(in)28(to)-276(acc)-1(ou)1(n)28(t)-276(that,)-287(on)-276(p)1(arallel)-276(mac)27(hi)1(nes)-1(,)-287(it)-276(often)-276(leads)]TJ 0 -11.9552 Td[(to)-231(th)1(e)-232(sm)-1(al)1(le)-1(st)-231(exe)-1(cuti)1(on)-231(time)-231(w)-1(h)1(e)-1(n)-230(app)1(lied)-231(to)-231(li)1(near)-231(sys)-1(tems)-232(com)-1(i)1(ng)-231(fr)1(om)-232(\014)1(ni)1(te)-1(-)]TJ 0 -11.9552 Td[(di)1(\013)-1(erence)-282(discre)-1(t)1(iz)-1(ati)1(ons)-282(of)-281(basic)-282(ellip)1(tic)-282(P)1(DE)-281(prob)1(lem)-1(s,)-292(considered)-281(as)-282(s)-1(tan)1(dard)]TJ 0 -11.9551 Td[(tes)-1(ts)-409(f)1(or)-409(m)28(ul)1(ti-le)-1(v)28(el)-409(S)1(c)27(h)28(w)28(arz)-409(p)1(rec)-1(on)1(diti)1(oners)-409([)]TJ ET -1 0 0 1 319.2956 126.4001 cm +1 0 0 1 327.2515 126.4001 cm 0 1 0 rg 0 1 0 RG -1 0 0 1 -319.2956 -126.4001 cm +1 0 0 1 -327.2515 -126.4001 cm BT -/F8 9.9626 Tf 319.2956 126.4001 Td[(3)]TJ +/F8 9.9626 Tf 327.2515 126.4001 Td[(3)]TJ ET -1 0 0 1 324.277 126.4001 cm +1 0 0 1 332.2329 126.4001 cm 0 g 0 G -1 0 0 1 -324.277 -126.4001 cm +1 0 0 1 -332.2329 -126.4001 cm BT -/F8 9.9626 Tf 324.277 126.4001 Td[(,)]TJ +/F8 9.9626 Tf 332.2329 126.4001 Td[(,)]TJ ET -1 0 0 1 329.5241 126.4001 cm +1 0 0 1 339.0711 126.4001 cm 0 1 0 rg 0 1 0 RG -1 0 0 1 -329.5241 -126.4001 cm +1 0 0 1 -339.0711 -126.4001 cm BT -/F8 9.9626 Tf 329.5241 126.4001 Td[(2)]TJ +/F8 9.9626 Tf 339.0711 126.4001 Td[(4)]TJ ET -1 0 0 1 334.5054 126.4001 cm +1 0 0 1 344.0525 126.4001 cm 0 g 0 G -1 0 0 1 -334.5054 -126.4001 cm +1 0 0 1 -344.0525 -126.4001 cm BT -/F8 9.9626 Tf 334.5054 126.4001 Td[(].)-416(Ho)28(w)27(ev)28(er,)-266(th)1(is)-249(s)-1(ol)1(v)28(e)-1(r)-248(do)-28(es)-250(n)1(ot)]TJ +/F8 9.9626 Tf 344.0525 126.4001 Td[(].)-670(Ho)28(w)27(ev)28(er,)-427(this)-409(solv)28(er)-409(d)1(o)-28(es)]TJ ET 1 0 0 1 124.802 90.4377 cm 0 g 0 G @@ -1358,114 +1397,121 @@ ET 0 g 0 G endstream endobj -168 0 obj << +173 0 obj << /Type /Page -/Contents 169 0 R -/Resources 167 0 R +/Contents 174 0 R +/Resources 172 0 R /MediaBox [0 0 595.2756 841.8898] -/Parent 153 0 R -/Annots [ 171 0 R 177 0 R 179 0 R 180 0 R 181 0 R 182 0 R 186 0 R 187 0 R 188 0 R 189 0 R ] +/Parent 166 0 R +/Annots [ 176 0 R 177 0 R 183 0 R 185 0 R 186 0 R 187 0 R 188 0 R 192 0 R 193 0 R 194 0 R 195 0 R ] >> endobj -171 0 obj << +176 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] -/Rect [123.8057 740.0018 130.7796 748.9129] +/Rect [123.8057 738.0647 130.7796 748.9129] /Subtype /Link -/A << /S /GoTo /D (section.1) >> +/A << /S /GoTo /D (section.4) >> >> endobj 177 0 obj << /Type /Annot +/Border[0 0 0]/H/I/C[0 1 0] +/Rect [452.0193 671.3565 463.9745 679.7694] +/Subtype /Link +/A << /S /GoTo /D (cite.PSBLASGUIDE) >> +>> endobj +183 0 obj << +/Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [230.8091 509.7403 237.7829 520.8653] /Subtype /Link /A << /S /GoTo /D (table.1) >> >> endobj -179 0 obj << +185 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [183.4285 418.3608 198.1511 429.209] /Subtype /Link -/A << /S /GoTo /D (subsection.5.1) >> +/A << /S /GoTo /D (subsection.4.1) >> >> endobj -180 0 obj << +186 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [364.1549 406.4056 371.1287 417.2538] /Subtype /Link -/A << /S /GoTo /D (section.6) >> +/A << /S /GoTo /D (section.5) >> >> endobj -181 0 obj << +187 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [406.5515 406.4056 413.5253 417.2538] /Subtype /Link /A << /S /GoTo /D (table.2) >> >> endobj -182 0 obj << +188 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [414.8537 406.4056 421.8275 417.2538] /Subtype /Link /A << /S /GoTo /D (table.5) >> >> endobj -186 0 obj << +192 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [400.7676 254.9735 407.7415 265.8217] /Subtype /Link -/A << /S /GoTo /D (section.6) >> +/A << /S /GoTo /D (section.5) >> >> endobj -187 0 obj << +193 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [210.4809 183.2425 225.2035 194.0907] /Subtype /Link -/A << /S /GoTo /D (subsection.5.1) >> +/A << /S /GoTo /D (subsection.4.1) >> >> endobj -188 0 obj << +194 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[0 1 0] -/Rect [318.2994 125.4038 325.2732 133.8167] +/Rect [326.2553 125.4038 333.2291 133.8167] /Subtype /Link -/A << /S /GoTo /D (cite.apnum_07) >> +/A << /S /GoTo /D (cite.aaecc_07) >> >> endobj -189 0 obj << +195 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[0 1 0] -/Rect [328.5278 125.4038 335.5016 133.8167] +/Rect [338.0749 125.4038 345.0487 133.8167] /Subtype /Link -/A << /S /GoTo /D (cite.aaecc_07) >> ->> endobj -170 0 obj << -/D [168 0 R /XYZ 124.802 740.9981 null] ->> endobj -26 0 obj << -/D [168 0 R /XYZ 124.802 716.0915 null] +/A << /S /GoTo /D (cite.apnum_07) >> >> endobj -172 0 obj << -/D [168 0 R /XYZ 124.802 654.4754 null] +175 0 obj << +/D [173 0 R /XYZ 124.802 740.9981 null] >> endobj -176 0 obj << -/D [168 0 R /XYZ 124.802 574.7742 null] +22 0 obj << +/D [173 0 R /XYZ 124.802 716.0915 null] >> endobj 178 0 obj << -/D [168 0 R /XYZ 124.802 495.0731 null] +/D [173 0 R /XYZ 124.802 654.4754 null] >> endobj -183 0 obj << -/D [168 0 R /XYZ 124.802 403.4168 null] +182 0 obj << +/D [173 0 R /XYZ 124.802 574.7742 null] >> endobj 184 0 obj << -/D [168 0 R /XYZ 124.802 371.2596 null] +/D [173 0 R /XYZ 124.802 495.0731 null] >> endobj -185 0 obj << -/D [168 0 R /XYZ 124.802 315.1921 null] +189 0 obj << +/D [173 0 R /XYZ 124.802 403.4168 null] >> endobj -167 0 obj << -/Font << /F34 129 0 R /F8 91 0 R /F18 73 0 R /F19 132 0 R /F40 175 0 R /F37 109 0 R >> +190 0 obj << +/D [173 0 R /XYZ 124.802 371.2596 null] +>> endobj +191 0 obj << +/D [173 0 R /XYZ 124.802 315.1921 null] +>> endobj +172 0 obj << +/Font << /F34 134 0 R /F8 95 0 R /F18 77 0 R /F19 137 0 R /F39 181 0 R /F37 113 0 R >> /ProcSet [ /PDF /Text ] >> endobj -197 0 obj << -/Length 12912 +203 0 obj << +/Length 13169 >> stream 1 0 0 1 124.802 740.9981 cm @@ -1473,44 +1519,44 @@ stream 0 0 1 rg 0 0 1 RG 1 0 0 1 -124.802 -740.9981 cm BT -/F34 9.9626 Tf 124.802 740.9981 Td[(1)]TJ +/F34 9.9626 Tf 124.802 740.9981 Td[(4)]TJ ET 1 0 0 1 129.7833 740.9981 cm 0 g 0 G 1 0 0 1 -129.7833 -740.9981 cm BT -/F34 9.9626 Tf 133.1042 740.9981 Td[(General)-333(Ov)28(ervi)1(e)-1(w)]TJ +/F34 9.9626 Tf 133.1042 740.9981 Td[(Gettin)1(g)-334(started)]TJ ET -1 0 0 1 124.802 739.4042 cm +1 0 0 1 124.802 737.467 cm q []0 d 0 J 0.3985 w 0 0.1992 m -86.1908 0.1992 l +75.4256 0.1992 l S Q -1 0 0 1 -124.802 -739.4042 cm +1 0 0 1 -124.802 -737.467 cm BT -/F8 9.9626 Tf 463.5317 740.9981 Td[(7)]TJ +/F8 9.9626 Tf 463.5317 740.9981 Td[(6)]TJ ET 1 0 0 1 468.5131 740.9981 cm 0 g 0 G 1 0 0 1 -468.5131 -740.9981 cm BT -/F8 9.9626 Tf 124.802 706.1289 Td[(corres)-1(p)-27(ond)-409(to)-410(th)1(e)-411(sm)-1(al)1(le)-1(st)-410(n)28(u)1(m)27(b)-27(e)-1(r)-409(of)-410(iterati)1(ons)-410(of)-410(th)1(e)-411(p)1(re)-1(cond)1(ition)1(e)-1(d)-409(Kry)1(lo)28(v)]TJ 0 -11.9552 Td[(me)-1(th)1(o)-28(d,)-303(wh)1(ic)27(h)-295(is)-296(usually)-295(obtai)1(ned)-296(b)28(y)-295(app)1(lyin)1(g)-296(a)-296(di)1(rec)-1(t)-296(solv)28(er,)-303(e)-1(.)1(g.)-296(based)-296(on)-295(the)]TJ 0 -11.9552 Td[(LU)-409(f)1(ac)-1(tor)1(iz)-1(ati)1(on,)-427(at)-409(the)-409(coars)-1(est)-409(lev)28(e)-1(l)-409(\050)1(s)-1(ee)-410(S)1(e)-1(ction)]TJ +/F8 9.9626 Tf 124.802 706.1289 Td[(not)-251(n)1(e)-1(ce)-1(ssarily)-251(to)-251(th)1(e)-252(s)-1(mall)1(e)-1(st)-251(n)28(um)28(b)-28(er)-251(of)-251(iterati)1(ons)-252(of)-250(the)-252(p)1(rec)-1(on)1(dit)1(ioned)-251(Kry)1(lo)28(v)]TJ 0 -11.9552 Td[(me)-1(th)1(o)-28(d,)-303(wh)1(ic)27(h)-295(is)-296(usually)-295(obtai)1(ned)-296(b)28(y)-295(app)1(lyin)1(g)-296(a)-296(di)1(rec)-1(t)-296(solv)28(er,)-303(e)-1(.)1(g.)-296(based)-296(on)-295(the)]TJ 0 -11.9552 Td[(LU)-338(factorization)1(,)-340(on)-338(a)-338(matrix)-338(repl)1(ic)-1(at)1(e)-1(d)-338(at)-338(the)-338(c)-1(oar)1(s)-1(es)-1(t)-338(lev)28(e)-1(l)-338(\050se)-1(e)-338(Sec)-1(tion)]TJ ET -1 0 0 1 353.3171 682.2185 cm +1 0 0 1 448.2332 682.2185 cm 0 0 1 rg 0 0 1 RG -1 0 0 1 -353.3171 -682.2185 cm +1 0 0 1 -448.2332 -682.2185 cm BT -/F8 9.9626 Tf 353.3171 682.2185 Td[(6)]TJ +/F8 9.9626 Tf 448.2332 682.2185 Td[(5)]TJ ET -1 0 0 1 358.2984 682.2185 cm +1 0 0 1 453.2146 682.2185 cm 0 g 0 G -1 0 0 1 -358.2984 -682.2185 cm +1 0 0 1 -453.2146 -682.2185 cm BT -/F8 9.9626 Tf 362.372 682.2185 Td[(for)-408(c)-1(oar)1(s)-1(es)-1(t)1(-)-1(lev)28(el)-409(s)-1(ol)1(v)28(e)-1(r)1(s)]TJ -237.57 -11.9552 Td[(a)28(v)56(ailabl)1(e)-334(in)-333(M)1(LD2P4\051.)]TJ +/F8 9.9626 Tf 456.5855 682.2185 Td[(for)]TJ -331.7835 -11.9552 Td[(coars)-1(est-)-1(l)1(e)-1(v)28(el)-333(s)-1(olv)28(ers)-334(a)28(v)56(ailab)1(le)-334(in)-332(MLD2P4\051)1(.)]TJ ET 1 0 0 1 124.802 655.8175 cm 0 g 0 G @@ -1607,7 +1653,7 @@ S Q 1 0 0 1 -214.9309 -618.1588 cm BT -/F40 9.9626 Tf 221.1077 633.7005 Td[('NOPREC')]TJ +/F39 9.9626 Tf 221.1077 633.7005 Td[('NOPREC')]TJ ET 1 0 0 1 268.7288 618.1588 cm q @@ -1655,7 +1701,7 @@ S Q 1 0 0 1 -214.9308 -606.2036 cm BT -/F40 9.9626 Tf 221.1077 609.7902 Td[('DIAG')]TJ +/F39 9.9626 Tf 221.1077 609.7902 Td[('DIAG')]TJ ET 1 0 0 1 268.7287 606.2036 cm q @@ -1703,7 +1749,7 @@ S Q 1 0 0 1 -214.9308 -582.2933 cm BT -/F40 9.9626 Tf 221.1077 597.835 Td[('BJAC')]TJ +/F39 9.9626 Tf 221.1077 597.835 Td[('BJAC')]TJ ET 1 0 0 1 268.7287 582.2933 cm q @@ -1751,7 +1797,7 @@ S Q 1 0 0 1 -214.9308 -558.3829 cm BT -/F40 9.9626 Tf 221.1077 573.9247 Td[('AS')]TJ +/F39 9.9626 Tf 221.1077 573.9247 Td[('AS')]TJ ET 1 0 0 1 268.7287 558.3829 cm q @@ -1799,7 +1845,7 @@ S Q 1 0 0 1 -214.9308 -426.8761 cm BT -/F40 9.9626 Tf 221.1077 550.0143 Td[('ML')]TJ +/F39 9.9626 Tf 221.1077 550.0143 Td[('ML')]TJ ET 1 0 0 1 268.7287 426.8761 cm q @@ -1844,7 +1890,7 @@ ET 0 g 0 G 1 0 0 1 -124.802 -396.7003 cm BT -/F18 11.9552 Tf 124.802 359.3474 Td[(5.)-1(1)-1125(E)-1(xampl)-1(es)]TJ/F8 9.9626 Tf 0 -18.3894 Td[(The)-390(c)-1(o)-28(d)1(e)-391(r)1(e)-1(p)-27(orted)-390(i)1(n)-390(Figu)1(re)]TJ +/F18 11.9552 Tf 124.802 359.3474 Td[(4.)-1(1)-1125(E)-1(xampl)-1(es)]TJ/F8 9.9626 Tf 0 -18.3894 Td[(The)-390(c)-1(o)-28(d)1(e)-391(r)1(e)-1(p)-27(orted)-390(i)1(n)-390(Figu)1(re)]TJ ET 1 0 0 1 254.3203 340.958 cm 0 0 1 rg 0 0 1 RG @@ -1868,7 +1914,7 @@ ET 0 g 0 G 1 0 0 1 -175.8232 -317.0477 cm BT -/F8 9.9626 Tf 175.8232 317.0477 Td[(\051.)-422(Thi)1(s)-267(p)1(re)-1(cond)1(ition)1(e)-1(r)-265(is)-267(c)27(h)1(os)-1(en)-266(b)28(y)-265(s)-1(impl)1(y)-266(s)-1(p)-27(e)-1(cif)1(yin)1(g)]TJ/F40 9.9626 Tf 228.7181 0 Td[('ML')]TJ/F8 9.9626 Tf 23.5726 0 Td[(as)-267(se)-1(cond)]TJ -303.3119 -11.9552 Td[(argu)1(m)-1(en)28(t)-270(of)]TJ/F40 9.9626 Tf 54.6748 0 Td[(mld_precinit)]TJ/F8 9.9626 Tf 65.4578 0 Td[(\050a)-270(c)-1(al)1(l)-271(to)]TJ/F40 9.9626 Tf 40.7363 0 Td[(mld_precset)]TJ/F8 9.9626 Tf 60.2274 0 Td[(is)-271(n)1(ot)-270(nee)-1(d)1(e)-1(d)1(\051)-271(an)1(d)-270(is)-271(ap)1(pli)1(e)-1(d)]TJ -221.0963 -11.9551 Td[(with)-401(the)-402(BiCGST)84(AB)-403(solv)28(er)-402(p)1(ro)28(vid)1(e)-1(d)-401(b)28(y)-401(PSBLAS)1(.)-402(The)-402(s)-1(etu)1(p)-402(an)1(d)-402(ap)1(pli)1(c)-1(ation)]TJ 0 -11.9552 Td[(of)-411(th)1(e)-412(defau)1(lt)-411(m)27(u)1(lti-lev)28(e)-1(l)-411(pr)1(e)-1(cond)1(ition)1(e)-1(r)1(s)-412(for)-411(th)1(e)-412(real)-411(s)-1(in)1(gle)-412(p)1(rec)-1(ision)-411(an)1(d)-411(the)]TJ 0 -11.9552 Td[(com)-1(p)1(le)-1(x)1(,)-272(s)-1(in)1(gle)-258(an)1(d)-257(d)1(oub)1(le)-258(p)1(rec)-1(ision)1(,)-273(v)28(ersions)-257(are)-257(obtain)1(e)-1(d)-256(with)-257(straigh)29(tfor)1(w)27(ard)]TJ 0 -11.9551 Td[(mo)-28(di)1(\014cations)-333(of)-333(the)-334(example.)]TJ 14.9439 -11.9552 Td[(The)-400(par)1(t)-400(of)-400(th)1(e)-401(co)-28(de)-400(conce)-1(rn)1(in)1(g)-400(the)-400(readin)1(g)-400(and)-400(asse)-1(m)28(blin)1(g)-400(of)-400(th)1(e)-401(spar)1(s)-1(e)]TJ -14.9439 -11.9552 Td[(matrix)-269(an)1(d)-269(the)-269(righ)28(t)1(-)-1(h)1(and)-269(sid)1(e)-270(v)28(e)-1(ctor,)-282(p)-27(erfor)1(m)-1(ed)-269(th)1(rough)-268(the)-270(P)1(SBLAS)-269(r)1(outin)1(e)-1(s)]TJ 0 -11.9551 Td[(for)-334(spar)1(s)-1(e)-335(matri)1(x)-335(an)1(d)-334(v)28(e)-1(ctor)-334(managem)-1(en)28(t,)-334(is)-335(n)1(ot)-335(r)1(e)-1(p)-27(orted)-334(here)-335(f)1(or)-334(brevit)28(y)1(;)-335(the)]TJ 0 -11.9552 Td[(state)-1(men)28(ts)-385(c)-1(on)1(c)-1(ern)1(ing)-384(the)-385(deallo)-27(c)-1(ation)-384(of)-384(the)-385(P)1(SBLAS)-384(data)-385(stru)1(c)-1(tu)1(re)-385(are)-385(n)1(e)-1(-)]TJ 0 -11.9552 Td[(glec)-1(ted)-497(to)-28(o.)-937(The)-498(com)-1(p)1(lete)-498(c)-1(o)-28(d)1(e)-498(c)-1(an)-497(b)-27(e)-498(fou)1(nd)-497(in)-497(th)1(e)-498(e)-1(xampl)1(e)-498(progr)1(am)-498(\014le)]TJ/F40 9.9626 Tf 0 -11.9551 Td[(example_ml.f90)]TJ/F8 9.9626 Tf 75.4387 0 Td[(in)-222(t)1(he)-223(d)1(irec)-1(t)1(ory)]TJ/F37 9.9626 Tf 67.9951 0 Td[(XX)-1(XX)-1(XX)-256(\050COM)1(P)-1(L)1(ET)96(AR)-1(E)1(.)-256(DIR)-1(E)-255(C)1(HE)]TJ -143.4338 -11.9552 Td[(I)-392(FIL)1(E)-392(IN)-392(REAL)96(T)96(A)-1(')-392(SONO)-391(DUE,)-392(UNO)-391(CON)-392(L)1(A)-393(GE)1(NERA)-1(ZIONE)]TJ 0 -11.9552 Td[(DE)1(LLA)-278(MA)96(TR)-1(IC)1(E)-278(E)1(D)-278(U)1(NO)-278(CO)1(N)-278(LA)-278(LE)1(TTURA)-1(\051.)]TJ/F8 9.9626 Tf 261.2187 0 Td[(Note)-242(th)1(at)-242(th)1(e)-242(m)-1(o)-27(d-)]TJ -261.2187 -11.9551 Td[(ul)1(e)-1(s)]TJ/F40 9.9626 Tf 19.3744 0 Td[(psb_base_mod)]TJ/F8 9.9626 Tf 65.4787 0 Td[(and)]TJ/F40 9.9626 Tf 18.7656 0 Td[(psb_util_mod)]TJ/F8 9.9626 Tf 65.4787 0 Td[(at)-272(the)-273(b)-27(e)-1(gi)1(nn)1(ing)-272(of)-272(the)-273(co)-28(d)1(e)-273(are)-273(requ)1(ired)]TJ -169.0974 -11.9552 Td[(b)28(y)-356(P)1(SBLAS.)]TJ/F37 9.9626 Tf 58.9817 0 Td[(O)-409(psb)]TJ +/F8 9.9626 Tf 175.8232 317.0477 Td[(\051.)-422(Thi)1(s)-267(p)1(re)-1(cond)1(ition)1(e)-1(r)-265(is)-267(c)27(h)1(os)-1(en)-266(b)28(y)-265(s)-1(impl)1(y)-266(s)-1(p)-27(e)-1(cif)1(yin)1(g)]TJ/F39 9.9626 Tf 228.7181 0 Td[('ML')]TJ/F8 9.9626 Tf 23.5726 0 Td[(as)-267(se)-1(cond)]TJ -303.3119 -11.9552 Td[(argu)1(m)-1(en)28(t)-270(of)]TJ/F39 9.9626 Tf 54.6748 0 Td[(mld_precinit)]TJ/F8 9.9626 Tf 65.4578 0 Td[(\050a)-270(c)-1(al)1(l)-271(to)]TJ/F39 9.9626 Tf 40.7363 0 Td[(mld_precset)]TJ/F8 9.9626 Tf 60.2274 0 Td[(is)-271(n)1(ot)-270(nee)-1(d)1(e)-1(d)1(\051)-271(an)1(d)-270(is)-271(ap)1(pli)1(e)-1(d)]TJ -221.0963 -11.9551 Td[(with)-401(the)-402(BiCGST)84(AB)-403(solv)28(er)-402(p)1(ro)28(vid)1(e)-1(d)-401(b)28(y)-401(PSBLAS)1(.)-402(The)-402(s)-1(etu)1(p)-402(an)1(d)-402(ap)1(pli)1(c)-1(ation)]TJ 0 -11.9552 Td[(of)-411(th)1(e)-412(defau)1(lt)-411(m)27(u)1(lti-lev)28(e)-1(l)-411(pr)1(e)-1(cond)1(ition)1(e)-1(r)1(s)-412(for)-411(th)1(e)-412(real)-411(s)-1(in)1(gle)-412(p)1(rec)-1(ision)-411(an)1(d)-411(the)]TJ 0 -11.9552 Td[(com)-1(p)1(le)-1(x)1(,)-272(s)-1(in)1(gle)-258(an)1(d)-257(d)1(oub)1(le)-258(p)1(rec)-1(ision)1(,)-273(v)28(ersions)-257(are)-257(obtain)1(e)-1(d)-256(with)-257(straigh)29(tfor)1(w)27(ard)]TJ 0 -11.9551 Td[(mo)-28(di)1(\014cations)-333(of)-333(the)-334(example.)]TJ 14.9439 -11.9552 Td[(The)-400(par)1(t)-400(of)-400(th)1(e)-401(co)-28(de)-400(conce)-1(rn)1(in)1(g)-400(the)-400(readin)1(g)-400(and)-400(asse)-1(m)28(blin)1(g)-400(of)-400(th)1(e)-401(spar)1(s)-1(e)]TJ -14.9439 -11.9552 Td[(matrix)-269(an)1(d)-269(the)-269(righ)28(t)1(-)-1(h)1(and)-269(sid)1(e)-270(v)28(e)-1(ctor,)-282(p)-27(erfor)1(m)-1(ed)-269(th)1(rough)-268(the)-270(P)1(SBLAS)-269(r)1(outin)1(e)-1(s)]TJ 0 -11.9551 Td[(for)-334(spar)1(s)-1(e)-335(matri)1(x)-335(an)1(d)-334(v)28(e)-1(ctor)-334(managem)-1(en)28(t,)-334(is)-335(n)1(ot)-335(r)1(e)-1(p)-27(orted)-334(here)-335(f)1(or)-334(brevit)28(y)1(;)-335(the)]TJ 0 -11.9552 Td[(state)-1(men)28(ts)-385(c)-1(on)1(c)-1(ern)1(ing)-384(the)-385(deallo)-27(c)-1(ation)-384(of)-384(the)-385(P)1(SBLAS)-384(data)-385(stru)1(c)-1(tu)1(re)-385(are)-385(n)1(e)-1(-)]TJ 0 -11.9552 Td[(glec)-1(ted)-497(to)-28(o.)-937(The)-498(com)-1(p)1(lete)-498(c)-1(o)-28(d)1(e)-498(c)-1(an)-497(b)-27(e)-498(fou)1(nd)-497(in)-497(th)1(e)-498(e)-1(xampl)1(e)-498(progr)1(am)-498(\014le)]TJ/F39 9.9626 Tf 0 -11.9551 Td[(example_ml.f90)]TJ/F8 9.9626 Tf 75.4387 0 Td[(in)-222(t)1(he)-223(d)1(irec)-1(t)1(ory)]TJ/F37 9.9626 Tf 67.9951 0 Td[(XX)-1(XX)-1(XX)-256(\050COM)1(P)-1(L)1(ET)96(AR)-1(E)1(.)-256(DIR)-1(E)-255(C)1(HE)]TJ -143.4338 -11.9552 Td[(I)-392(FIL)1(E)-392(IN)-392(REAL)96(T)96(A)-1(')-392(SONO)-391(DUE,)-392(UNO)-391(CON)-392(L)1(A)-393(GE)1(NERA)-1(ZIONE)]TJ 0 -11.9552 Td[(DE)1(LLA)-278(MA)96(TR)-1(IC)1(E)-278(E)1(D)-278(U)1(NO)-278(CO)1(N)-278(LA)-278(LE)1(TTURA)-1(\051.)]TJ/F8 9.9626 Tf 261.2187 0 Td[(Note)-242(th)1(at)-242(th)1(e)-242(m)-1(o)-27(d-)]TJ -261.2187 -11.9551 Td[(ul)1(e)-1(s)]TJ/F39 9.9626 Tf 19.3744 0 Td[(psb_base_mod)]TJ/F8 9.9626 Tf 65.4787 0 Td[(and)]TJ/F39 9.9626 Tf 18.7656 0 Td[(psb_util_mod)]TJ/F8 9.9626 Tf 65.4787 0 Td[(at)-272(the)-273(b)-27(e)-1(gi)1(nn)1(ing)-272(of)-272(the)-273(co)-28(d)1(e)-273(are)-273(requ)1(ired)]TJ -169.0974 -11.9552 Td[(b)28(y)-356(P)1(SBLAS.)]TJ/F37 9.9626 Tf 58.9817 0 Td[(O)-409(psb)]TJ ET 1 0 0 1 214.4048 137.7202 cm q @@ -1894,7 +1940,19 @@ S Q 1 0 0 1 -240.2339 -137.7202 cm BT -/F37 9.9626 Tf 243.671 137.7202 Td[(mo)-32(d)]TJ/F8 9.9626 Tf 25.5056 0 Td[(E')-355(RI)-1(CHIE)1(STO)-356(ANCHE)-356(D)28(A)-356(M)1(LD2P4?\051)-512(F)83(or)]TJ -144.3746 -11.9552 Td[(detail)1(s)-334(on)-333(the)-333(use)-334(of)-333(th)1(e)-334(PS)1(B)-1(LAS)-333(r)1(outin)1(e)-1(s,)-333(s)-1(ee)-334(th)1(e)-334(PS)1(BLAS)-333(Us)-1(er's)-333(Guid)1(e)-334([])1(.)]TJ +/F37 9.9626 Tf 243.671 137.7202 Td[(mo)-32(d)]TJ/F8 9.9626 Tf 25.5056 0 Td[(E')-355(RI)-1(CHIE)1(STO)-356(ANCHE)-356(D)28(A)-356(M)1(LD2P4?\051)-512(F)83(or)]TJ -144.3746 -11.9552 Td[(detail)1(s)-333(on)-331(the)-332(use)-332(of)-332(th)1(e)-333(P)1(SBLAS)-332(r)1(outin)1(e)-1(s,)-332(s)-1(ee)-332(the)-332(PS)1(B)-1(LAS)-331(Us)-1(er')1(s)-333(G)1(uid)1(e)-333([)]TJ +ET +1 0 0 1 453.0156 125.765 cm +0 1 0 rg 0 1 0 RG +1 0 0 1 -453.0156 -125.765 cm +BT +/F8 9.9626 Tf 453.0156 125.765 Td[(11)]TJ +ET +1 0 0 1 462.9783 125.765 cm +0 g 0 G +1 0 0 1 -462.9783 -125.765 cm +BT +/F8 9.9626 Tf 462.9783 125.765 Td[(].)]TJ ET 1 0 0 1 124.802 90.4377 cm 0 g 0 G @@ -1902,57 +1960,64 @@ ET 0 g 0 G endstream endobj -196 0 obj << +202 0 obj << /Type /Page -/Contents 197 0 R -/Resources 195 0 R +/Contents 203 0 R +/Resources 201 0 R /MediaBox [0 0 595.2756 841.8898] -/Parent 153 0 R -/Annots [ 199 0 R 200 0 R 201 0 R 202 0 R ] +/Parent 166 0 R +/Annots [ 205 0 R 206 0 R 207 0 R 208 0 R 209 0 R ] >> endobj -199 0 obj << +205 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] -/Rect [123.8057 740.0018 130.7796 748.9129] +/Rect [123.8057 738.0647 130.7796 748.9129] /Subtype /Link -/A << /S /GoTo /D (section.1) >> +/A << /S /GoTo /D (section.4) >> >> endobj -200 0 obj << +206 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] -/Rect [352.3208 678.7316 359.2947 690.6868] +/Rect [447.237 678.7316 454.2108 690.6868] /Subtype /Link -/A << /S /GoTo /D (section.6) >> +/A << /S /GoTo /D (section.5) >> >> endobj -201 0 obj << +207 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [253.324 338.0246 260.2979 348.8728] /Subtype /Link /A << /S /GoTo /D (figure.1) >> >> endobj -202 0 obj << +208 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [169.8456 313.5608 176.8195 325.516] /Subtype /Link /A << /S /GoTo /D (table.1) >> >> endobj -198 0 obj << -/D [196 0 R /XYZ 124.802 740.9981 null] +209 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[0 1 0] +/Rect [452.0193 124.7688 463.9745 133.1817] +/Subtype /Link +/A << /S /GoTo /D (cite.PSBLASGUIDE) >> >> endobj -190 0 obj << -/D [196 0 R /XYZ 175.0301 410.5927 null] +204 0 obj << +/D [202 0 R /XYZ 124.802 740.9981 null] >> endobj -30 0 obj << -/D [196 0 R /XYZ 124.802 370.8044 null] +196 0 obj << +/D [202 0 R /XYZ 175.0301 410.5927 null] >> endobj -195 0 obj << -/Font << /F34 129 0 R /F8 91 0 R /F19 132 0 R /F40 175 0 R /F37 109 0 R /F18 73 0 R >> +26 0 obj << +/D [202 0 R /XYZ 124.802 370.8044 null] +>> endobj +201 0 obj << +/Font << /F34 134 0 R /F8 95 0 R /F19 137 0 R /F39 181 0 R /F37 113 0 R /F18 77 0 R >> /ProcSet [ /PDF /Text ] >> endobj -206 0 obj << -/Length 8036 +213 0 obj << +/Length 9006 >> stream 1 0 0 1 124.802 740.9981 cm @@ -1960,80 +2025,128 @@ stream 0 0 1 rg 0 0 1 RG 1 0 0 1 -124.802 -740.9981 cm BT -/F34 9.9626 Tf 124.802 740.9981 Td[(1)]TJ +/F34 9.9626 Tf 124.802 740.9981 Td[(4)]TJ ET 1 0 0 1 129.7833 740.9981 cm 0 g 0 G 1 0 0 1 -129.7833 -740.9981 cm BT -/F34 9.9626 Tf 133.1042 740.9981 Td[(General)-333(Ov)28(ervi)1(e)-1(w)]TJ +/F34 9.9626 Tf 133.1042 740.9981 Td[(Gettin)1(g)-334(started)]TJ ET -1 0 0 1 124.802 739.4042 cm +1 0 0 1 124.802 737.467 cm q []0 d 0 J 0.3985 w 0 0.1992 m -86.1908 0.1992 l +75.4256 0.1992 l S Q -1 0 0 1 -124.802 -739.4042 cm +1 0 0 1 -124.802 -737.467 cm BT -/F8 9.9626 Tf 463.5317 740.9981 Td[(8)]TJ +/F8 9.9626 Tf 463.5317 740.9981 Td[(7)]TJ ET 1 0 0 1 468.5131 740.9981 cm 0 g 0 G 1 0 0 1 -468.5131 -740.9981 cm BT -/F37 9.9626 Tf 139.746 706.1289 Td[(LE)-515(F)1(IGUR)-1(E)-514(SONO)-515(DEC)1(ENTRA)95(TE,)-516(NO)1(NOST)96(A)-1(NTE)-515(IL)-515(C)1(EN-)]TJ -14.944 -11.9552 Td[(TER.)-384(C)1(I)-384(VUOLE)-382(UNA)-384(MINIP)96(A)31(GE)1(?)]TJ/F8 9.9626 Tf 14.944 -11.9552 Td[(Di\013ere)-1(n)29(t)-351(v)28(e)-1(r)1(s)-1(ion)1(s)-351(of)-351(m)28(ulti)1(le)-1(v)28(el)-351(p)1(re)-1(cond)1(ition)1(e)-1(r)-350(c)-1(an)-350(b)-27(e)-352(ob)1(tained)-350(b)28(y)-351(c)27(h)1(angin)1(g)]TJ -14.944 -11.9551 Td[(th)1(e)-340(d)1(e)-1(f)1(aul)1(t)-339(v)56(alues)-339(of)-338(the)-339(pr)1(e)-1(cond)1(ition)1(e)-1(r)-338(par)1(am)-1(eters.)-461(Th)1(e)-340(co)-28(d)1(e)-340(r)1(e)-1(p)-27(orted)-338(in)-338(Fig-)]TJ 0 -11.9552 Td[(ur)1(e)]TJ +/F37 9.9626 Tf 139.746 706.1289 Td[(LE)-515(F)1(IGUR)-1(E)-514(SONO)-515(DEC)1(ENTRA)95(TE,)-516(NO)1(NOST)96(A)-1(NTE)-515(IL)-515(C)1(EN-)]TJ -14.944 -11.9552 Td[(TER.)-384(C)1(I)-384(VUOLE)-382(UNA)-384(MINIP)96(A)31(GE)1(?)]TJ/F8 9.9626 Tf 14.944 -11.9552 Td[(Di\013ere)-1(n)29(t)-462(v)28(e)-1(r)1(s)-1(ion)1(s)-463(of)-461(m)27(u)1(ltilev)28(el)-462(precondi)1(tioner)-462(can)-462(b)-27(e)-463(ob)1(tain)1(e)-1(d)-461(b)28(y)-462(c)27(h)1(ang-)]TJ -14.944 -11.9551 Td[(in)1(g)-372(the)-372(d)1(e)-1(f)1(ault)-371(v)55(al)1(ues)-373(of)-371(th)1(e)-373(p)1(rec)-1(on)1(diti)1(oner)-372(p)1(arame)-1(ters.)-560(The)-372(co)-28(de)-372(rep)-27(orted)-372(in)]TJ 0 -11.9552 Td[(Figu)1(re)]TJ +ET +1 0 0 1 156.8128 658.3082 cm +0 0 1 rg 0 0 1 RG +1 0 0 1 -156.8128 -658.3082 cm +BT +/F8 9.9626 Tf 156.8128 658.3082 Td[(2)]TJ +ET +1 0 0 1 161.7942 658.3082 cm +0 g 0 G +1 0 0 1 -161.7942 -658.3082 cm +BT +/F8 9.9626 Tf 165.6882 658.3082 Td[(sho)28(ws)-392(h)1(o)27(w)-391(to)-390(s)-1(et)-391(a)-391(th)1(ree)-1(-lev)28(e)-1(l)-391(h)29(ybr)1(id)-391(S)1(c)27(h)28(w)28(arz)-391(pr)1(e)-1(cond)1(ition)1(e)-1(r)1(,)-405(w)-1(h)1(ic)27(h)]TJ -40.8862 -11.9552 Td[(uses)-417(b)1(lo)-28(c)27(k)-415(Jac)-1(ob)1(i)-416(with)-415(ILU\0500\051)-416(on)-415(the)-416(lo)-28(cal)-416(b)1(lo)-28(c)28(ks)-417(as)-416(p)-27(os)-1(t-sm)-1(o)-27(other,)-436(a)-416(c)-1(oar)1(s)-1(-)]TJ 0 -11.9552 Td[(es)-1(t)-396(m)-1(atr)1(ix)-396(replicated)-396(on)-397(t)1(he)-397(pr)1(o)-28(ce)-1(ss)-1(or)1(s)-1(,)-412(and)-396(th)1(e)-397(LU)-397(f)1(ac)-1(tor)1(ization)-396(fr)1(om)-397(UMF-)]TJ 0 -11.9551 Td[(P)84(A)28(C)-1(K)-447([)]TJ +ET +1 0 0 1 160.1188 622.4427 cm +0 1 0 rg 0 1 0 RG +1 0 0 1 -160.1188 -622.4427 cm +BT +/F8 9.9626 Tf 160.1188 622.4427 Td[(8)]TJ +ET +1 0 0 1 165.1001 622.4427 cm +0 g 0 G +1 0 0 1 -165.1001 -622.4427 cm +BT +/F8 9.9626 Tf 165.1001 622.4427 Td[(],)-476(v)28(ersion)-447(4.4,)-476(as)-448(c)-1(oarse-)-1(lev)28(el)-448(solv)28(e)-1(r)1(.)-788(Th)1(e)-449(n)29(um)28(b)-28(er)-448(of)-447(lev)28(e)-1(l)1(s)-448(is)-448(s)-1(p)-27(e)-1(ci-)]TJ -40.2981 -11.9552 Td[(\014ed)-455(b)29(y)-455(using)]TJ/F39 9.9626 Tf 62.3615 0 Td[(mld_precinit)]TJ/F8 9.9626 Tf 62.7641 0 Td[(;)-516(th)1(e)-456(ot)1(her)-455(pr)1(e)-1(cond)1(ition)1(e)-1(r)-455(p)1(arame)-1(t)1(e)-1(rs)-455(are)-455(s)-1(et)-455(b)28(y)]TJ -125.1256 -11.9552 Td[(callin)1(g)]TJ/F39 9.9626 Tf 32.3763 0 Td[(mld_precset)]TJ/F8 9.9626 Tf 57.5338 0 Td[(.)-694(Not)1(e)-417(that)-416(the)-416(t)27(y)1(p)-28(e)-417(of)-416(m)28(ul)1(tilev)28(e)-1(l)-416(fr)1(am)-1(ew)28(ork)-416(\050i.e.)-416(m)27(ul)1(ti-)]TJ -89.9101 -11.9551 Td[(pl)1(ic)-1(at)1(iv)28(e)-427(among)-426(the)-426(lev)28(e)-1(ls)-426(w)-1(i)1(th)-426(p)-27(os)-1(t-s)-1(mo)-28(oth)1(in)1(g)-427(on)1(ly\051)-426(is)-427(n)1(ot)-426(s)-1(p)-27(ec)-1(i\014)1(e)-1(d)-426(sin)1(c)-1(e)-426(it)]TJ 0 -11.9552 Td[(is)-425(the)-425(defau)1(lt)-425(se)-1(t)-425(b)29(y)]TJ/F39 9.9626 Tf 94.6176 0 Td[(mld_precinit)]TJ/F8 9.9626 Tf 62.7641 0 Td[(.)-719(Figu)1(re)]TJ +ET +1 0 0 1 324.4697 574.622 cm +0 0 1 rg 0 0 1 RG +1 0 0 1 -324.4697 -574.622 cm +BT +/F8 9.9626 Tf 324.4697 574.622 Td[(3)]TJ +ET +1 0 0 1 329.451 574.622 cm +0 g 0 G +1 0 0 1 -329.451 -574.622 cm +BT +/F8 9.9626 Tf 333.6851 574.622 Td[(sho)28(ws)-426(h)1(o)27(w)-425(to)-425(se)-1(t)-425(a)-425(t)1(hree)-1(-lev)28(e)-1(l)]TJ -208.8831 -11.9552 Td[(add)1(itiv)28(e)-283(Sc)27(h)29(w)27(arz)-283(prec)-1(on)1(di)1(tioner,)-293(whic)28(h)-283(app)1(lies)-284(RAS,)-283(with)-283(o)28(v)28(e)-1(r)1(lap)-283(1)-284(an)1(d)-283(ILU\0500\051)]TJ 0 -11.9551 Td[(on)-416(th)1(e)-417(bl)1(o)-28(c)27(ks,)-437(as)-417(p)1(re-)-417(and)-415(p)-28(ost-s)-1(mo)-28(oth)1(e)-1(r,)-436(and)-416(\014)1(v)28(e)-417(bl)1(o)-28(c)27(k-Jacobi)-416(sw)27(ee)-1(p)1(s)-1(,)-437(with)]TJ 0 -11.9552 Td[(th)1(e)-473(UMF)1(P)83(A)28(CK)-472(LU)-472(f)1(ac)-1(tor)1(iz)-1(ati)1(on)-472(on)-472(th)1(e)-473(b)1(lo)-28(c)28(ks)-1(,)-506(as)-473(d)1(is)-1(t)1(rib)1(uted)-472(coars)-1(est-)-1(l)1(e)-1(v)28(el)]TJ 0 -11.9552 Td[(solv)28(e)-1(r)1(.)-428(Again)1(,)]TJ/F39 9.9626 Tf 63.4438 0 Td[(mld_precset)]TJ/F8 9.9626 Tf 60.355 0 Td[(is)-283(use)-1(d)-283(on)1(ly)-283(to)-283(se)-1(t)-283(non)1(-defaul)1(t)-283(v)55(al)1(ues)-284(of)-283(th)1(e)-284(p)1(aram-)]TJ -123.7988 -11.9551 Td[(ete)-1(r)1(s)-406(\050)1(s)-1(ee)-405(T)83(ables)]TJ +ET +1 0 0 1 202.1245 514.8462 cm +0 0 1 rg 0 0 1 RG +1 0 0 1 -202.1245 -514.8462 cm +BT +/F8 9.9626 Tf 202.1245 514.8462 Td[(2)]TJ +ET +1 0 0 1 207.1059 514.8462 cm +0 g 0 G +1 0 0 1 -207.1059 -514.8462 cm +BT +/F8 9.9626 Tf 207.1059 514.8462 Td[(-)]TJ ET -1 0 0 1 141.95 658.3082 cm +1 0 0 1 210.4268 514.8462 cm 0 0 1 rg 0 0 1 RG -1 0 0 1 -141.95 -658.3082 cm +1 0 0 1 -210.4268 -514.8462 cm BT -/F8 9.9626 Tf 141.95 658.3082 Td[(2)]TJ +/F8 9.9626 Tf 210.4268 514.8462 Td[(5)]TJ ET -1 0 0 1 146.9313 658.3082 cm +1 0 0 1 215.4081 514.8462 cm 0 g 0 G -1 0 0 1 -146.9313 -658.3082 cm +1 0 0 1 -215.4081 -514.8462 cm BT -/F8 9.9626 Tf 150.2146 658.3082 Td[(sho)28(ws)-330(ho)28(w)-330(to)-329(s)-1(et)-330(a)-329(three-)-1(lev)28(el)-330(h)28(y)1(bri)1(d)-329(Sc)27(h)29(w)27(arz)-330(p)1(rec)-1(on)1(diti)1(oner,)-330(whic)28(h)-329(use)-1(s)]TJ -25.4126 -11.9552 Td[(bl)1(o)-28(c)27(k)-352(Jac)-1(ob)1(i)-353(with)-352(ILU\0500\051)-353(on)-352(the)-353(lo)-28(cal)-353(b)1(lo)-28(c)28(ks)-354(as)-353(p)-27(os)-1(t)1(-)-1(sm)-1(o)-27(other,)-357(a)-353(c)-1(oar)1(s)-1(es)-1(t)-352(m)-1(a-)]TJ 0 -11.9552 Td[(tri)1(x)-323(re)-1(p)1(licated)-323(on)-323(the)-323(pro)-27(c)-1(es)-1(sors,)-325(and)-323(th)1(e)-324(LU)-323(factorization)-323(f)1(rom)-323(UMFP)84(A)28(C)-1(K)-323(as)]TJ 0 -11.9551 Td[(coars)-1(e-le)-1(v)28(el)-404(s)-1(ol)1(v)28(e)-1(r.)-657(The)-405(n)29(um)28(b)-28(er)-404(of)-404(le)-1(v)28(els)-405(i)1(s)-405(s)-1(p)-27(ec)-1(i\014)1(e)-1(d)-404(b)29(y)-405(u)1(s)-1(i)1(ng)]TJ/F40 9.9626 Tf 278.1796 0 Td[(mld_precinit)]TJ/F8 9.9626 Tf 62.7641 0 Td[(;)]TJ -340.9437 -11.9552 Td[(th)1(e)-317(oth)1(e)-1(r)-315(pr)1(e)-1(cond)1(ition)1(e)-1(r)-315(par)1(am)-1(ete)-1(r)1(s)-316(are)-316(s)-1(et)-316(b)28(y)-315(c)-1(al)1(ling)]TJ/F40 9.9626 Tf 236.874 0 Td[(mld_precset)]TJ/F8 9.9626 Tf 57.5338 0 Td[(.)-438(Note)-316(that)]TJ -294.4078 -11.9552 Td[(th)1(e)-287(t)28(yp)-27(e)-287(of)-286(m)27(u)1(ltilev)28(el)-287(f)1(rame)-1(w)28(ork)-286(\050i.)1(e)-1(.)-286(m)28(ulti)1(plicativ)28(e)-287(amon)1(g)-287(th)1(e)-287(lev)28(e)-1(l)1(s)-287(w)-1(i)1(th)-286(p)-27(os)-1(t-)]TJ 0 -11.9551 Td[(sm)-1(o)-28(ot)1(hin)1(g)-249(only)1(\051)-249(is)-249(not)-249(sp)-27(e)-1(ci\014ed)-248(s)-1(in)1(c)-1(e)-249(it)-249(i)1(s)-250(th)1(e)-249(defaul)1(t)-249(s)-1(et)-249(b)28(y)]TJ/F40 9.9626 Tf 256.4592 0 Td[(mld_precinit)]TJ/F8 9.9626 Tf 62.7641 0 Td[(.)-416(Fig-)]TJ -319.2233 -11.9552 Td[(ur)1(e)]TJ +/F8 9.9626 Tf 215.4081 514.8462 Td[(\051.)-658(In)-404(b)-28(oth)-404(cas)-1(es)-1(,)-422(th)1(e)-406(constru)1(c)-1(ti)1(on)-405(an)1(d)-404(the)-405(ap)1(plication)-404(of)]TJ -90.6061 -11.9552 Td[(th)1(e)-340(p)1(rec)-1(on)1(diti)1(oner)-339(are)-339(carried)-338(out)-339(as)-339(for)-338(the)-339(defau)1(lt)-339(m)28(ulti)1(-)-1(l)1(e)-1(v)28(el)-339(pr)1(e)-1(cond)1(ition)1(e)-1(r)1(.)]TJ 0 -11.9552 Td[(The)-386(co)-28(de)-386(f)1(ragme)-1(n)28(ts)-386(sho)28(wn)-385(in)-385(in)-385(Figu)1(re)-1(s)]TJ ET -1 0 0 1 141.7272 574.622 cm +1 0 0 1 306.7564 490.9358 cm 0 0 1 rg 0 0 1 RG -1 0 0 1 -141.7272 -574.622 cm +1 0 0 1 -306.7564 -490.9358 cm BT -/F8 9.9626 Tf 141.7272 574.622 Td[(3)]TJ +/F8 9.9626 Tf 306.7564 490.9358 Td[(2)]TJ ET -1 0 0 1 146.7085 574.622 cm +1 0 0 1 311.7377 490.9358 cm 0 g 0 G -1 0 0 1 -146.7085 -574.622 cm +1 0 0 1 -311.7377 -490.9358 cm BT -/F8 9.9626 Tf 149.7691 574.622 Td[(sho)28(ws)-308(ho)28(w)-307(to)-307(s)-1(et)-307(a)-308(t)1(hree)-1(-lev)28(e)-1(l)-307(ad)1(di)1(tiv)28(e)-308(S)1(c)27(h)28(w)28(arz)-308(p)1(rec)-1(on)1(dit)1(ioner,)-312(whic)28(h)-307(ap-)]TJ -24.9671 -11.9552 Td[(pl)1(ie)-1(s)-296(RAS)1(,)-296(with)-295(o)27(v)28(erl)1(ap)-296(1)-296(an)1(d)-295(I)-1(LU\050)1(0\051)-296(on)-295(the)-296(blo)-27(c)27(ks,)-303(as)-296(pre-)-296(and)-295(p)-28(ost-s)-1(mo)-28(oth)1(e)-1(r)1(,)]TJ 0 -11.9551 Td[(and)-494(\014)1(v)28(e)-495(blo)-27(c)27(k-Jac)-1(ob)1(i)-495(sw)28(e)-1(eps,)-535(with)-494(the)-495(UM)1(FP)84(A)28(C)-1(K)-494(LU)-494(factorization)-494(on)-494(the)]TJ 0 -11.9552 Td[(bl)1(o)-28(c)27(ks,)-451(as)-429(di)1(s)-1(tr)1(ibu)1(te)-1(d)-427(c)-1(oar)1(s)-1(es)-1(t)1(-)-1(lev)28(el)-428(s)-1(ol)1(v)28(e)-1(r.)-728(Again)1(,)]TJ/F40 9.9626 Tf 228.7188 0 Td[(mld_precset)]TJ/F8 9.9626 Tf 61.7979 0 Td[(is)-428(use)-1(d)-427(only)]TJ -290.5167 -11.9552 Td[(to)-373(s)-1(et)-373(non-defau)1(lt)-373(v)56(alues)-374(of)-373(th)1(e)-374(paramete)-1(r)1(s)-374(\050s)-1(ee)-374(T)83(ab)1(le)-1(s)]TJ/F37 9.9626 Tf 245.2432 0 Td[(??)]TJ/F8 9.9626 Tf 10.8204 0 Td[(-)]TJ/F37 9.9626 Tf 3.3209 0 Td[(??)]TJ/F8 9.9626 Tf 10.8205 0 Td[(\051.)-564(In)-373(b)-28(oth)-373(cas)-1(es,)]TJ -270.205 -11.9551 Td[(th)1(e)-430(c)-1(on)1(s)-1(tr)1(uction)-429(an)1(d)-429(the)-429(app)1(lication)-429(of)-429(th)1(e)-430(pr)1(e)-1(cond)1(ition)1(e)-1(r)-429(ar)1(e)-430(c)-1(ar)1(ried)-429(ou)1(t)-430(as)]TJ 0 -11.9552 Td[(for)-495(the)-496(d)1(e)-1(f)1(ault)-495(m)27(ul)1(ti-le)-1(v)28(el)-496(p)1(rec)-1(on)1(diti)1(oner.)-932(Th)1(e)-497(co)-28(de)-496(f)1(ragme)-1(n)28(t)1(s)-497(sho)28(wn)-496(i)1(n)-496(in)]TJ 0 -11.9552 Td[(Figu)1(res)]TJ +/F8 9.9626 Tf 311.7377 490.9358 Td[(-)]TJ ET -1 0 0 1 160.9812 490.9358 cm +1 0 0 1 315.0586 490.9358 cm 0 0 1 rg 0 0 1 RG -1 0 0 1 -160.9812 -490.9358 cm +1 0 0 1 -315.0586 -490.9358 cm BT -/F8 9.9626 Tf 160.9812 490.9358 Td[(2)]TJ +/F8 9.9626 Tf 315.0586 490.9358 Td[(3)]TJ ET -1 0 0 1 165.9626 490.9358 cm +1 0 0 1 320.0399 490.9358 cm 0 g 0 G -1 0 0 1 -165.9626 -490.9358 cm +1 0 0 1 -320.0399 -490.9358 cm BT -/F8 9.9626 Tf 165.9626 490.9358 Td[(-)]TJ/F37 9.9626 Tf 3.3209 0 Td[(??)]TJ/F8 9.9626 Tf 14.9531 0 Td[(are)-415(in)1(c)-1(lu)1(ded)-414(in)-415(t)1(he)-415(e)-1(xamp)1(le)-415(progr)1(am)-416(\014)1(le)]TJ/F40 9.9626 Tf 185.9237 0 Td[(example_ml.f90)]TJ/F8 9.9626 Tf 73.2248 0 Td[(.)]TJ/F37 9.9626 Tf 9.6306 0 Td[(LO)]TJ -328.2137 -11.9551 Td[(STE)1(SSO)-534(PR)31(O)1(G)-1(RAMMA)-534(CO)1(NTI)-1(E)1(NE)-533(I)-534(TR)-1(E)-533(ES)1(EMPI,)-534(CON)-533(UN)]TJ 0 -11.9552 Td[(SWITC)1(H)-283(TRA)-283(L)1(')-1(U)1(NO)-282(E)-282(L'A)-1(L)96(TR)32(O)-282(O)-282(F)128(A)32(CCIAMO)-282(3)-282(PR)31(OGRA)-1(M)1(MI)]TJ 0 -11.9552 Td[(DISTINTI?)-384(NO)1(N)-384(RICORDO)-383(CHE)-383(C)1(OSA)-384(ABB)-1(IAMO)-383(DE)1(CISO.)]TJ/F8 9.9626 Tf 14.944 -11.9551 Td[(Fin)1(ally)84(,)-367(Figur)1(e)]TJ +/F8 9.9626 Tf 323.8823 490.9358 Td[(are)-386(in)1(c)-1(l)1(ud)1(e)-1(d)-385(in)-385(the)-386(example)-386(p)1(ro-)]TJ -199.0803 -11.9551 Td[(gram)-429(\014)1(le)]TJ/F39 9.9626 Tf 43.4395 0 Td[(example_ml.f90)]TJ/F8 9.9626 Tf 73.2247 0 Td[(.)]TJ/F37 9.9626 Tf 10.0463 0 Td[(LO)-492(STESSO)-493(PR)32(OGR)-1(AMM)1(A)-494(C)1(ONTIENE)]TJ -126.7105 -11.9552 Td[(I)-491(TRE)-491(E)1(SEM)1(PI,)-492(C)1(ON)-491(UN)-490(SWITCH)-490(TR)-1(A)-491(L'UNO)-490(E)-491(L)1(')-1(AL)96(TR)31(O)-490(O)]TJ 0 -11.9552 Td[(F)128(A)32(CC)1(I)-1(AMO)-534(3)-536(PR)32(OGR)-1(AMMI)-535(DISTINTI?)-535(NON)-535(RICORDO)-535(CHE)]TJ 0 -11.9551 Td[(CO)1(SA)-553(A)-1(BBIAMO)-552(DE)1(CISO.)-553(P)96(A)-1(S)1(QUA:)-553(A)-1(BBIAMO)-552(DETTO)-552(CHE)]TJ 0 -11.9552 Td[(ERA)-384(PREFE)1(R)-1(IBILE)-382(UN)-384(U)1(NICO)-383(PR)31(OGRA)-1(M)1(MA)-384(C)1(ON)-384(SW)1(I)-1(TC)1(H.)]TJ/F8 9.9626 Tf 14.944 -11.9552 Td[(Fin)1(ally)84(,)-367(Figur)1(e)]TJ ET -1 0 0 1 207.6359 443.1152 cm +1 0 0 1 207.6359 419.2048 cm 0 0 1 rg 0 0 1 RG -1 0 0 1 -207.6359 -443.1152 cm +1 0 0 1 -207.6359 -419.2048 cm BT -/F8 9.9626 Tf 207.6359 443.1152 Td[(4)]TJ +/F8 9.9626 Tf 207.6359 419.2048 Td[(4)]TJ ET -1 0 0 1 212.6172 443.1152 cm +1 0 0 1 212.6172 419.2048 cm 0 g 0 G -1 0 0 1 -212.6172 -443.1152 cm +1 0 0 1 -212.6172 -419.2048 cm BT -/F8 9.9626 Tf 216.2111 443.1152 Td[(sho)28(ws)-362(th)1(e)-361(s)-1(etup)-360(of)-360(a)-361(one-le)-1(v)28(el)-360(addi)1(tiv)28(e)-361(Sc)28(h)28(w)27(ar)1(z)-362(p)1(rec)-1(on)1(di-)]TJ -91.4091 -11.9552 Td[(tion)1(e)-1(r)1(,)-313(i.e.)-436(RAS)-308(with)-308(o)28(v)28(erlap)-307(2.)-436(T)-1(h)1(e)-309(corr)1(e)-1(sp)-28(on)1(din)1(g)-308(c)-1(o)-28(d)1(e)-1(,)-313(i)1(nclud)1(ing)-308(also)-308(the)-308(ap-)]TJ 0 -11.9552 Td[(pl)1(ic)-1(at)1(ion)-222(of)-222(th)1(e)-223(p)1(re)-1(cond)1(ition)1(e)-1(r)-222(i)1(s)-223(in)-222(t)1(he)-223(example)-222(pr)1(ogram)-223(\014)1(le)]TJ/F40 9.9626 Tf 258.0882 0 Td[(example_1lev.f90)]TJ/F8 9.9626 Tf 83.6854 0 Td[(.)]TJ/F37 9.9626 Tf -341.7736 -23.9103 Td[(Re)-1(mark)1(.)]TJ/F8 9.9626 Tf 47.4398 0 Td[(An)28(y)-336(PS)1(B)-1(LAS)1(-)-1(b)1(as)-1(ed)-337(p)1(rogr)1(am)-338(u)1(s)-1(i)1(ng)-337(th)1(e)-337(basic)-337(prec)-1(on)1(di)1(tioners)-337(imple-)]TJ -47.4398 -11.9552 Td[(me)-1(n)28(t)1(e)-1(d)-430(i)1(n)-430(PS)1(B)-1(LAS)-429(2.0,)-454(i.e.)-430(the)-431(d)1(iagon)1(al)-430(and)-430(b)1(lo)-28(c)27(k)1(-)-1(Jacobi)-430(on)1(e)-1(s,)-454(c)-1(an)-430(u)1(s)-1(e)-430(the)]TJ 0 -11.9551 Td[(di)1(agonal)-474(and)-474(bl)1(o)-28(c)27(k-Jacobi)-474(pr)1(e)-1(cond)1(ition)1(e)-1(rs)-475(i)1(m)-1(p)1(lem)-1(en)28(ted)-475(i)1(n)-474(MLD2P4)-474(withou)1(t)]TJ 0 -11.9552 Td[(an)28(y)-324(c)27(han)1(ge)-325(in)-324(the)-325(co)-28(de.)-442(Th)1(e)-325(PSBLAS-b)1(as)-1(ed)-325(p)1(rogr)1(am)-326(m)28(ust)-325(b)-27(e)-325(only)-324(rec)-1(ompi)1(le)-1(d)]TJ 0 -11.9552 Td[(and)-332(link)28(ed)-333(to)-333(the)-333(MLD2P4)-333(li)1(brar)1(y)83(.)]TJ +/F8 9.9626 Tf 216.2111 419.2048 Td[(sho)28(ws)-362(th)1(e)-361(s)-1(etup)-360(of)-360(a)-361(one-le)-1(v)28(el)-360(addi)1(tiv)28(e)-361(Sc)28(h)28(w)27(ar)1(z)-362(p)1(rec)-1(on)1(di-)]TJ -91.4091 -11.9552 Td[(tion)1(e)-1(r)1(,)-313(i.e.)-436(RAS)-308(with)-308(o)28(v)28(erlap)-307(2.)-436(T)-1(h)1(e)-309(corr)1(e)-1(sp)-28(on)1(din)1(g)-308(c)-1(o)-28(d)1(e)-1(,)-313(i)1(nclud)1(ing)-308(also)-308(the)-308(ap-)]TJ 0 -11.9551 Td[(pl)1(ic)-1(at)1(ion)-222(of)-222(th)1(e)-223(p)1(re)-1(cond)1(ition)1(e)-1(r)-222(i)1(s)-223(in)-222(t)1(he)-223(example)-222(pr)1(ogram)-223(\014)1(le)]TJ/F39 9.9626 Tf 258.0882 0 Td[(example_1lev.f90)]TJ/F8 9.9626 Tf 83.6854 0 Td[(.)]TJ/F37 9.9626 Tf -341.7736 -23.9104 Td[(Re)-1(mark)1(.)]TJ/F8 9.9626 Tf 47.4398 0 Td[(An)28(y)-336(PS)1(B)-1(LAS)1(-)-1(b)1(as)-1(ed)-337(p)1(rogr)1(am)-338(u)1(s)-1(i)1(ng)-337(th)1(e)-337(basic)-337(prec)-1(on)1(di)1(tioners)-337(imple-)]TJ -47.4398 -11.9551 Td[(me)-1(n)28(t)1(e)-1(d)-430(i)1(n)-430(PS)1(B)-1(LAS)-429(2.0,)-454(i.e.)-430(the)-431(d)1(iagon)1(al)-430(and)-430(b)1(lo)-28(c)27(k)1(-)-1(Jacobi)-430(on)1(e)-1(s,)-454(c)-1(an)-430(u)1(s)-1(e)-430(the)]TJ 0 -11.9552 Td[(di)1(agonal)-474(and)-474(bl)1(o)-28(c)27(k-Jacobi)-474(pr)1(e)-1(cond)1(ition)1(e)-1(rs)-475(i)1(m)-1(p)1(lem)-1(en)28(ted)-475(i)1(n)-474(MLD2P4)-474(withou)1(t)]TJ 0 -11.9552 Td[(an)28(y)-324(c)27(han)1(ge)-325(in)-324(the)-325(co)-28(de.)-442(Th)1(e)-325(PSBLAS-b)1(as)-1(ed)-325(p)1(rogr)1(am)-326(m)28(ust)-325(b)-27(e)-325(only)-324(rec)-1(ompi)1(le)-1(d)]TJ 0 -11.9551 Td[(and)-332(link)28(ed)-333(to)-333(the)-333(MLD2P4)-333(li)1(brar)1(y)83(.)]TJ ET 1 0 0 1 124.802 90.4377 cm 0 g 0 G @@ -2041,58 +2154,86 @@ ET 0 g 0 G endstream endobj -205 0 obj << +212 0 obj << /Type /Page -/Contents 206 0 R -/Resources 204 0 R +/Contents 213 0 R +/Resources 211 0 R /MediaBox [0 0 595.2756 841.8898] -/Parent 153 0 R -/Annots [ 208 0 R 209 0 R 210 0 R 211 0 R 212 0 R ] +/Parent 166 0 R +/Annots [ 215 0 R 216 0 R 217 0 R 218 0 R 219 0 R 220 0 R 221 0 R 222 0 R 223 0 R ] >> endobj -208 0 obj << +215 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] -/Rect [123.8057 740.0018 130.7796 748.9129] +/Rect [123.8057 738.0647 130.7796 748.9129] /Subtype /Link -/A << /S /GoTo /D (section.1) >> +/A << /S /GoTo /D (section.4) >> >> endobj -209 0 obj << +216 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] -/Rect [140.9537 655.3747 147.9276 666.2229] +/Rect [155.8166 655.3747 162.7904 666.2229] /Subtype /Link /A << /S /GoTo /D (figure.2) >> >> endobj -210 0 obj << +217 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[0 1 0] +/Rect [159.1225 621.4464 166.0964 629.8593] +/Subtype /Link +/A << /S /GoTo /D (cite.UMFPACK) >> +>> endobj +218 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] -/Rect [140.7309 571.6886 147.7048 582.5368] +/Rect [323.4734 571.4118 330.4473 582.5368] /Subtype /Link /A << /S /GoTo /D (figure.3) >> >> endobj -211 0 obj << +219 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [201.1283 511.3592 208.1021 523.3144] +/Subtype /Link +/A << /S /GoTo /D (table.2) >> +>> endobj +220 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [209.4305 511.3592 216.4043 523.3144] +/Subtype /Link +/A << /S /GoTo /D (table.5) >> +>> endobj +221 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] -/Rect [159.985 487.7256 166.9588 498.8506] +/Rect [305.7601 488.0024 312.734 498.8506] /Subtype /Link /A << /S /GoTo /D (figure.2) >> >> endobj -212 0 obj << +222 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [314.0623 488.0024 321.0362 498.8506] +/Subtype /Link +/A << /S /GoTo /D (figure.3) >> +>> endobj +223 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] -/Rect [206.6396 440.1817 213.6135 451.0299] +/Rect [206.6396 416.2714 213.6135 427.1196] /Subtype /Link /A << /S /GoTo /D (figure.4) >> >> endobj -207 0 obj << -/D [205 0 R /XYZ 124.802 740.9981 null] +214 0 obj << +/D [212 0 R /XYZ 124.802 740.9981 null] >> endobj -204 0 obj << -/Font << /F34 129 0 R /F8 91 0 R /F37 109 0 R /F40 175 0 R >> +211 0 obj << +/Font << /F34 134 0 R /F8 95 0 R /F37 113 0 R /F39 181 0 R >> /ProcSet [ /PDF /Text ] >> endobj -218 0 obj << -/Length 3863 +230 0 obj << +/Length 3852 >> stream 1 0 0 1 124.802 740.9981 cm @@ -2100,26 +2241,26 @@ stream 0 0 1 rg 0 0 1 RG 1 0 0 1 -124.802 -740.9981 cm BT -/F34 9.9626 Tf 124.802 740.9981 Td[(1)]TJ +/F34 9.9626 Tf 124.802 740.9981 Td[(4)]TJ ET 1 0 0 1 129.7833 740.9981 cm 0 g 0 G 1 0 0 1 -129.7833 -740.9981 cm BT -/F34 9.9626 Tf 133.1042 740.9981 Td[(General)-333(Ov)28(ervi)1(e)-1(w)]TJ +/F34 9.9626 Tf 133.1042 740.9981 Td[(Gettin)1(g)-334(started)]TJ ET -1 0 0 1 124.802 739.4042 cm +1 0 0 1 124.802 737.467 cm q []0 d 0 J 0.3985 w 0 0.1992 m -86.1908 0.1992 l +75.4256 0.1992 l S Q -1 0 0 1 -124.802 -739.4042 cm +1 0 0 1 -124.802 -737.467 cm BT -/F8 9.9626 Tf 463.5317 740.9981 Td[(9)]TJ +/F8 9.9626 Tf 463.5317 740.9981 Td[(8)]TJ ET 1 0 0 1 468.5131 740.9981 cm 0 g 0 G @@ -2132,7 +2273,7 @@ ET 0 g 0 G 1 0 0 1 -119.8207 -705.8798 cm BT -/F39 8.9664 Tf 134.2166 705.8798 Td[(use)-525(psb_base_mod)]TJ 0 -10.9589 Td[(use)-525(psb_util_mod)]TJ 0 -10.9589 Td[(use)-525(mld_prec_mod)]TJ 0 -10.9589 Td[(use)-525(psb_krylov_mod)]TJ -9.4146 -10.9589 Td[(...)-525(...)]TJ 0 -10.9589 Td[(!)]TJ 0 -10.9589 Td[(!)-525(sparse)-525(matrix)]TJ 9.4146 -10.9589 Td[(type\050psb_dspmat_type\051)-525(::)-525(A)]TJ -9.4146 -10.9589 Td[(!)-525(sparse)-525(matrix)-525(descriptor)]TJ 9.4146 -10.9589 Td[(type\050psb_desc_type\051)-1575(::)-525(desc_A)]TJ -9.4146 -10.9589 Td[(!)-525(preconditioner)]TJ 9.4146 -10.9589 Td[(type\050mld_dprec_type\051)-1050(::)-525(P)]TJ -9.4146 -10.9589 Td[(...)-525(...)]TJ 0 -10.9589 Td[(!)]TJ 0 -10.9589 Td[(!)-525(initialize)-525(the)-525(parallel)-525(environment)]TJ 9.4146 -10.9589 Td[(call)-525(psb_init\050ictxt\051)]TJ 0 -10.9589 Td[(call)-525(psb_info\050ictxt,iam,np\051)]TJ -9.4146 -10.9589 Td[(...)-525(...)]TJ 0 -10.9589 Td[(!)]TJ 0 -10.9589 Td[(!)-525(read)-525(and)-525(assemble)-525(the)-525(matrix)-525(A)-525(and)-525(the)-525(right-hand)]TJ 0 -10.9589 Td[(!)-525(side)-525(b)-525(using)-525(PSBLAS)-525(routines)-525(for)-525(sparse)-525(matrix)-525(/)]TJ 0 -10.9589 Td[(!)-525(vector)-525(management)]TJ 0 -10.9589 Td[(...)-525(...)]TJ 0 -10.9589 Td[(!)]TJ 0 -10.9589 Td[(!)-525(initialize)-525(the)-525(default)-525(multi-level)-525(preconditioner,)]TJ 0 -10.9589 Td[(!)-525(i.e.)-525(two-level)-525(hybrid)-525(Schwarz,)-525(using)-525(RAS)-525(\050with)]TJ 0 -10.9589 Td[(!)-525(overlap)-525(1)-525(and)-525(ILU\0500\051)-525(on)-525(the)-525(blocks\051)-525(as)-525(post-smoother)]TJ 0 -10.9589 Td[(!)-525(and)-525(4)-525(block-Jacobi)-525(sweeps)-525(\050with)-525(UMFPACK)-525(LU)-525(on)-525(the)]TJ 0 -10.9589 Td[(!)-525(blocks\051)-525(as)-525(distributed)-525(coarse-level)-525(solver)]TJ 9.4146 -10.9589 Td[(call)-525(mld_precinit\050P,'ML',info\051)]TJ -9.4146 -10.9589 Td[(!)]TJ 0 -10.9589 Td[(!)-525(build)-525(the)-525(preconditioner)]TJ 9.4146 -10.9589 Td[(call)-525(psb_precbld\050A,P,desc_A,info\051)]TJ -9.4146 -10.9589 Td[(!)]TJ 0 -10.9589 Td[(!)-525(set)-525(the)-525(solver)-525(parameters)-525(and)-525(the)-525(initial)-525(guess)]TJ 9.4146 -10.9589 Td[(...)-525(...)]TJ -9.4146 -10.9589 Td[(!)]TJ 0 -10.9589 Td[(!)-525(solve)-525(Ax=b)-525(with)-525(preconditioned)-525(BiCGSTAB)]TJ 9.4146 -10.9589 Td[(call)-525(psb_krylov\050'BICGSTAB',A,P,b,x,tol,desc_A,info\051)]TJ 0 -10.9589 Td[(...)-525(...)]TJ -9.4146 -10.9589 Td[(!)]TJ 0 -10.9589 Td[(!)-525(deallocate)-525(the)-525(preconditioner)]TJ 9.4146 -10.9589 Td[(call)-525(mld_precfree\050P,info\051)]TJ -9.4146 -10.9589 Td[(!)]TJ 0 -10.9589 Td[(!)-525(deallocate)-525(other)-525(data)-525(structures)]TJ 9.4146 -10.9589 Td[(...)-525(...)]TJ -9.4146 -10.9589 Td[(!)]TJ 0 -10.9589 Td[(!)-525(exit)-525(the)-525(parallel)-525(environment)]TJ 9.4146 -10.9589 Td[(call)-525(psb_exit\050ictxt\051)]TJ 0 -10.9589 Td[(stop)]TJ/F8 9.9626 Tf -9.4146 -21.9178 Td[(Figu)1(re)-435(1:)-647(Setup)-434(and)-434(app)1(lication)-434(of)-435(th)1(e)-436(d)1(e)-1(f)1(aul)1(t)-435(m)27(u)1(lti-lev)28(e)-1(l)-434(Sc)27(h)29(w)27(ar)1(z)-436(p)1(rec)-1(on)1(di-)]TJ 0 -11.9552 Td[(tion)1(e)-1(r)1(.)]TJ +/F40 8.9664 Tf 134.2166 705.8798 Td[(use)-525(psb_base_mod)]TJ 0 -10.9589 Td[(use)-525(psb_util_mod)]TJ 0 -10.9589 Td[(use)-525(mld_prec_mod)]TJ 0 -10.9589 Td[(use)-525(psb_krylov_mod)]TJ -9.4146 -10.9589 Td[(...)-525(...)]TJ 0 -10.9589 Td[(!)]TJ 0 -10.9589 Td[(!)-525(sparse)-525(matrix)]TJ 9.4146 -10.9589 Td[(type\050psb_dspmat_type\051)-525(::)-525(A)]TJ -9.4146 -10.9589 Td[(!)-525(sparse)-525(matrix)-525(descriptor)]TJ 9.4146 -10.9589 Td[(type\050psb_desc_type\051)-1575(::)-525(desc_A)]TJ -9.4146 -10.9589 Td[(!)-525(preconditioner)]TJ 9.4146 -10.9589 Td[(type\050mld_dprec_type\051)-1050(::)-525(P)]TJ -9.4146 -10.9589 Td[(...)-525(...)]TJ 0 -10.9589 Td[(!)]TJ 0 -10.9589 Td[(!)-525(initialize)-525(the)-525(parallel)-525(environment)]TJ 9.4146 -10.9589 Td[(call)-525(psb_init\050ictxt\051)]TJ 0 -10.9589 Td[(call)-525(psb_info\050ictxt,iam,np\051)]TJ -9.4146 -10.9589 Td[(...)-525(...)]TJ 0 -10.9589 Td[(!)]TJ 0 -10.9589 Td[(!)-525(read)-525(and)-525(assemble)-525(the)-525(matrix)-525(A)-525(and)-525(the)-525(right-hand)]TJ 0 -10.9589 Td[(!)-525(side)-525(b)-525(using)-525(PSBLAS)-525(routines)-525(for)-525(sparse)-525(matrix)-525(/)]TJ 0 -10.9589 Td[(!)-525(vector)-525(management)]TJ 0 -10.9589 Td[(...)-525(...)]TJ 0 -10.9589 Td[(!)]TJ 0 -10.9589 Td[(!)-525(initialize)-525(the)-525(default)-525(multi-level)-525(preconditioner,)]TJ 0 -10.9589 Td[(!)-525(i.e.)-525(two-level)-525(hybrid)-525(Schwarz,)-525(using)-525(RAS)-525(\050with)]TJ 0 -10.9589 Td[(!)-525(overlap)-525(1)-525(and)-525(ILU\0500\051)-525(on)-525(the)-525(blocks\051)-525(as)-525(post-smoother)]TJ 0 -10.9589 Td[(!)-525(and)-525(4)-525(block-Jacobi)-525(sweeps)-525(\050with)-525(UMFPACK)-525(LU)-525(on)-525(the)]TJ 0 -10.9589 Td[(!)-525(blocks\051)-525(as)-525(distributed)-525(coarse-level)-525(solver)]TJ 9.4146 -10.9589 Td[(call)-525(mld_precinit\050P,'ML',info\051)]TJ -9.4146 -10.9589 Td[(!)]TJ 0 -10.9589 Td[(!)-525(build)-525(the)-525(preconditioner)]TJ 9.4146 -10.9589 Td[(call)-525(psb_precbld\050A,P,desc_A,info\051)]TJ -9.4146 -10.9589 Td[(!)]TJ 0 -10.9589 Td[(!)-525(set)-525(the)-525(solver)-525(parameters)-525(and)-525(the)-525(initial)-525(guess)]TJ 9.4146 -10.9589 Td[(...)-525(...)]TJ -9.4146 -10.9589 Td[(!)]TJ 0 -10.9589 Td[(!)-525(solve)-525(Ax=b)-525(with)-525(preconditioned)-525(BiCGSTAB)]TJ 9.4146 -10.9589 Td[(call)-525(psb_krylov\050'BICGSTAB',A,P,b,x,tol,desc_A,info\051)]TJ 0 -10.9589 Td[(...)-525(...)]TJ -9.4146 -10.9589 Td[(!)]TJ 0 -10.9589 Td[(!)-525(deallocate)-525(the)-525(preconditioner)]TJ 9.4146 -10.9589 Td[(call)-525(mld_precfree\050P,info\051)]TJ -9.4146 -10.9589 Td[(!)]TJ 0 -10.9589 Td[(!)-525(deallocate)-525(other)-525(data)-525(structures)]TJ 9.4146 -10.9589 Td[(...)-525(...)]TJ -9.4146 -10.9589 Td[(!)]TJ 0 -10.9589 Td[(!)-525(exit)-525(the)-525(parallel)-525(environment)]TJ 9.4146 -10.9589 Td[(call)-525(psb_exit\050ictxt\051)]TJ 0 -10.9589 Td[(stop)]TJ/F8 9.9626 Tf -9.4146 -21.9178 Td[(Figu)1(re)-435(1:)-647(Setup)-434(and)-434(app)1(lication)-434(of)-435(th)1(e)-436(d)1(e)-1(f)1(aul)1(t)-435(m)27(u)1(lti-lev)28(e)-1(l)-434(Sc)27(h)29(w)27(ar)1(z)-436(p)1(rec)-1(on)1(di-)]TJ 0 -11.9552 Td[(tion)1(e)-1(r)1(.)]TJ ET 1 0 0 1 124.802 125.0579 cm 0 g 0 G @@ -2142,33 +2283,33 @@ ET 0 g 0 G endstream endobj -217 0 obj << +229 0 obj << /Type /Page -/Contents 218 0 R -/Resources 216 0 R +/Contents 230 0 R +/Resources 228 0 R /MediaBox [0 0 595.2756 841.8898] -/Parent 221 0 R -/Annots [ 220 0 R ] +/Parent 166 0 R +/Annots [ 232 0 R ] >> endobj -220 0 obj << +232 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] -/Rect [123.8057 740.0018 130.7796 748.9129] +/Rect [123.8057 738.0647 130.7796 748.9129] /Subtype /Link -/A << /S /GoTo /D (section.1) >> +/A << /S /GoTo /D (section.4) >> >> endobj -219 0 obj << -/D [217 0 R /XYZ 124.802 740.9981 null] +231 0 obj << +/D [229 0 R /XYZ 124.802 740.9981 null] >> endobj -203 0 obj << -/D [217 0 R /XYZ 171.4502 158.9308 null] +210 0 obj << +/D [229 0 R /XYZ 171.4502 158.9308 null] >> endobj -216 0 obj << -/Font << /F34 129 0 R /F8 91 0 R /F39 161 0 R >> +228 0 obj << +/Font << /F34 134 0 R /F8 95 0 R /F40 235 0 R >> /ProcSet [ /PDF /Text ] >> endobj -224 0 obj << -/Length 4132 +238 0 obj << +/Length 4120 >> stream 1 0 0 1 124.802 740.9981 cm @@ -2176,26 +2317,26 @@ stream 0 0 1 rg 0 0 1 RG 1 0 0 1 -124.802 -740.9981 cm BT -/F34 9.9626 Tf 124.802 740.9981 Td[(1)]TJ +/F34 9.9626 Tf 124.802 740.9981 Td[(4)]TJ ET 1 0 0 1 129.7833 740.9981 cm 0 g 0 G 1 0 0 1 -129.7833 -740.9981 cm BT -/F34 9.9626 Tf 133.1042 740.9981 Td[(General)-333(Ov)28(ervi)1(e)-1(w)]TJ +/F34 9.9626 Tf 133.1042 740.9981 Td[(Gettin)1(g)-334(started)]TJ ET -1 0 0 1 124.802 739.4042 cm +1 0 0 1 124.802 737.467 cm q []0 d 0 J 0.3985 w 0 0.1992 m -86.1908 0.1992 l +75.4256 0.1992 l S Q -1 0 0 1 -124.802 -739.4042 cm +1 0 0 1 -124.802 -737.467 cm BT -/F8 9.9626 Tf 458.5504 740.9981 Td[(10)]TJ +/F8 9.9626 Tf 463.5317 740.9981 Td[(9)]TJ ET 1 0 0 1 468.5131 740.9981 cm 0 g 0 G @@ -2208,7 +2349,7 @@ ET 0 g 0 G 1 0 0 1 -119.8207 -679.6276 cm BT -/F39 8.9664 Tf 124.802 679.6275 Td[(...)-525(...)]TJ 0 -10.9589 Td[(!)-525(set)-525(a)-525(three-level)-525(hybrid)-525(Schwarz)-525(preconditioner,)]TJ 0 -10.9589 Td[(!)-525(which)-525(uses)-525(block)-525(Jacobi)-525(\050with)-525(ILU\0500\051)-525(on)-525(the)-525(blocks\051)]TJ 0 -10.9589 Td[(!)-525(as)-525(post-smoother,)-525(a)-525(coarsest)-525(matrix)-525(replicated)-525(on)-525(the)]TJ 0 -10.9589 Td[(!)-525(processors,)-525(and)-525(the)-525(LU)-525(factorization)-525(from)-525(UMFPACK)]TJ 0 -10.9589 Td[(!)-525(as)-525(coarse-level)-525(solver)]TJ 9.4146 -10.9589 Td[(call)-525(mld_precinit\050P,'ML',info,nlev=3\051)]TJ 0 -10.9589 Td[(call_mld_precset\050P,mld_smoother_type_,'BJAC',info\051)]TJ 0 -10.9589 Td[(call)-525(mld_precset\050P,mld_coarse_mat,'REPL'\051)]TJ 0 -10.9589 Td[(call)-525(mld_precset\050P,mld_coarse_solve,'UMF'\051)]TJ -9.4146 -10.9589 Td[(...)-525(...)]TJ +/F40 8.9664 Tf 124.802 679.6275 Td[(...)-525(...)]TJ 0 -10.9589 Td[(!)-525(set)-525(a)-525(three-level)-525(hybrid)-525(Schwarz)-525(preconditioner,)]TJ 0 -10.9589 Td[(!)-525(which)-525(uses)-525(block)-525(Jacobi)-525(\050with)-525(ILU\0500\051)-525(on)-525(the)-525(blocks\051)]TJ 0 -10.9589 Td[(!)-525(as)-525(post-smoother,)-525(a)-525(coarsest)-525(matrix)-525(replicated)-525(on)-525(the)]TJ 0 -10.9589 Td[(!)-525(processors,)-525(and)-525(the)-525(LU)-525(factorization)-525(from)-525(UMFPACK)]TJ 0 -10.9589 Td[(!)-525(as)-525(coarse-level)-525(solver)]TJ 9.4146 -10.9589 Td[(call)-525(mld_precinit\050P,'ML',info,nlev=3\051)]TJ 0 -10.9589 Td[(call_mld_precset\050P,mld_smoother_type_,'BJAC',info\051)]TJ 0 -10.9589 Td[(call)-525(mld_precset\050P,mld_coarse_mat,'REPL'\051)]TJ 0 -10.9589 Td[(call)-525(mld_precset\050P,mld_coarse_solve,'UMF'\051)]TJ -9.4146 -10.9589 Td[(...)-525(...)]TJ ET 1 0 0 1 159.1037 548.1207 cm 0 g 0 G @@ -2229,7 +2370,7 @@ ET 0 g 0 G 1 0 0 1 -119.8207 -456.4644 cm BT -/F39 8.9664 Tf 124.802 456.4644 Td[(...)-525(...)]TJ 0 -10.9589 Td[(!)-525(set)-525(a)-525(three-level)-525(additive)-525(Schwarz)-525(preconditioner,)]TJ 0 -10.9589 Td[(!)-525(which)-525(uses)-525(RAS)-525(\050with)-525(overlap)-525(1)-525(and)-525(ILU\0500\051)-525(on)-525(the)-525(blocks\051)]TJ 0 -10.9589 Td[(!)-525(as)-525(pre-)-525(and)-525(post-smoother,)-525(and)-525(5)-525(block-Jacobi)-525(sweeps)]TJ 0 -10.9589 Td[(!)-525(\050with)-525(UMFPACK)-525(LU)-525(on)-525(the)-525(blocks\051)-525(as)-525(distributed)]TJ 0 -10.9589 Td[(!)-525(coarsest-level)-525(solver)]TJ 9.4146 -10.9589 Td[(call)-525(mld_precinit\050P,'ML',info,nlev=3\051)]TJ 0 -10.9589 Td[(call)-525(mld_precset\050P,mld_ml_type_,'ADD',info\051)]TJ 0 -10.9589 Td[(call_mld_precset\050P,mld_smoother_pos_,'TWOSIDE',info\051)]TJ 0 -10.9589 Td[(call)-525(mld_precset\050P,mld_coarse_sweeps_,5\051)]TJ -9.4146 -10.9589 Td[(...)-525(...)]TJ +/F40 8.9664 Tf 124.802 456.4644 Td[(...)-525(...)]TJ 0 -10.9589 Td[(!)-525(set)-525(a)-525(three-level)-525(additive)-525(Schwarz)-525(preconditioner,)]TJ 0 -10.9589 Td[(!)-525(which)-525(uses)-525(RAS)-525(\050with)-525(overlap)-525(1)-525(and)-525(ILU\0500\051)-525(on)-525(the)-525(blocks\051)]TJ 0 -10.9589 Td[(!)-525(as)-525(pre-)-525(and)-525(post-smoother,)-525(and)-525(5)-525(block-Jacobi)-525(sweeps)]TJ 0 -10.9589 Td[(!)-525(\050with)-525(UMFPACK)-525(LU)-525(on)-525(the)-525(blocks\051)-525(as)-525(distributed)]TJ 0 -10.9589 Td[(!)-525(coarsest-level)-525(solver)]TJ 9.4146 -10.9589 Td[(call)-525(mld_precinit\050P,'ML',info,nlev=3\051)]TJ 0 -10.9589 Td[(call)-525(mld_precset\050P,mld_ml_type_,'ADD',info\051)]TJ 0 -10.9589 Td[(call_mld_precset\050P,mld_smoother_pos_,'TWOSIDE',info\051)]TJ 0 -10.9589 Td[(call)-525(mld_precset\050P,mld_coarse_sweeps_,5\051)]TJ -9.4146 -10.9589 Td[(...)-525(...)]TJ ET 1 0 0 1 153.0292 324.9576 cm 0 g 0 G @@ -2250,7 +2391,7 @@ ET 0 g 0 G 1 0 0 1 -119.8207 -233.3013 cm BT -/F39 8.9664 Tf 124.802 233.3013 Td[(...)-525(...)]TJ 0 -10.9589 Td[(!)-525(set)-525(RAS)-525(with)-525(overlap)-525(2)-525(and)-525(ILU\0500\051)-525(on)-525(the)-525(local)-525(blocks)]TJ 9.4146 -10.9589 Td[(call)-525(mld_precinit\050P,'AS',info\051)]TJ 0 -10.9589 Td[(call)-525(mld_precset\050P,mld_sub_ovr_,2,info\051)]TJ -9.4146 -10.9589 Td[(...)-525(...)]TJ +/F40 8.9664 Tf 124.802 233.3013 Td[(...)-525(...)]TJ 0 -10.9589 Td[(!)-525(set)-525(RAS)-525(with)-525(overlap)-525(2)-525(and)-525(ILU\0500\051)-525(on)-525(the)-525(local)-525(blocks)]TJ 9.4146 -10.9589 Td[(call)-525(mld_precinit\050P,'AS',info\051)]TJ 0 -10.9589 Td[(call)-525(mld_precset\050P,mld_sub_ovr_,2,info\051)]TJ -9.4146 -10.9589 Td[(...)-525(...)]TJ ET 1 0 0 1 178.5032 167.5479 cm 0 g 0 G @@ -2268,39 +2409,39 @@ ET 0 g 0 G endstream endobj -223 0 obj << +237 0 obj << /Type /Page -/Contents 224 0 R -/Resources 222 0 R +/Contents 238 0 R +/Resources 236 0 R /MediaBox [0 0 595.2756 841.8898] -/Parent 221 0 R -/Annots [ 226 0 R ] +/Parent 241 0 R +/Annots [ 240 0 R ] >> endobj -226 0 obj << +240 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] -/Rect [123.8057 740.0018 130.7796 748.9129] +/Rect [123.8057 738.0647 130.7796 748.9129] /Subtype /Link -/A << /S /GoTo /D (section.1) >> +/A << /S /GoTo /D (section.4) >> >> endobj -225 0 obj << -/D [223 0 R /XYZ 124.802 740.9981 null] +239 0 obj << +/D [237 0 R /XYZ 124.802 740.9981 null] >> endobj -213 0 obj << -/D [223 0 R /XYZ 202.718 560.0759 null] +224 0 obj << +/D [237 0 R /XYZ 202.718 560.0759 null] >> endobj -214 0 obj << -/D [223 0 R /XYZ 196.6435 336.9127 null] +226 0 obj << +/D [237 0 R /XYZ 196.6435 336.9127 null] >> endobj -215 0 obj << -/D [223 0 R /XYZ 222.1175 179.503 null] +227 0 obj << +/D [237 0 R /XYZ 222.1175 179.503 null] >> endobj -222 0 obj << -/Font << /F34 129 0 R /F8 91 0 R /F39 161 0 R >> +236 0 obj << +/Font << /F34 134 0 R /F8 95 0 R /F40 235 0 R >> /ProcSet [ /PDF /Text ] >> endobj -229 0 obj << -/Length 12114 +244 0 obj << +/Length 11971 >> stream 1 0 0 1 124.802 740.9981 cm @@ -2308,13 +2449,13 @@ stream 0 0 1 rg 0 0 1 RG 1 0 0 1 -124.802 -740.9981 cm BT -/F34 9.9626 Tf 124.802 740.9981 Td[(1)]TJ +/F34 9.9626 Tf 124.802 740.9981 Td[(5)]TJ ET 1 0 0 1 129.7833 740.9981 cm 0 g 0 G 1 0 0 1 -129.7833 -740.9981 cm BT -/F34 9.9626 Tf 133.1042 740.9981 Td[(General)-333(Ov)28(ervi)1(e)-1(w)]TJ +/F34 9.9626 Tf 133.1042 740.9981 Td[(Use)-1(r)-333(In)28(terf)1(ac)-1(e)]TJ ET 1 0 0 1 124.802 739.4042 cm q @@ -2322,56 +2463,56 @@ q 0 J 0.3985 w 0 0.1992 m -86.1908 0.1992 l +69.2958 0.1992 l S Q 1 0 0 1 -124.802 -739.4042 cm BT -/F8 9.9626 Tf 458.5504 740.9981 Td[(11)]TJ +/F8 9.9626 Tf 458.5504 740.9981 Td[(10)]TJ ET 1 0 0 1 468.5131 740.9981 cm 0 g 0 G 1 0 0 1 -468.5131 -740.9981 cm BT -/F18 14.3462 Tf 124.802 706.1289 Td[(6)-1125(User)-376(In)32(t)-1(er)-1(f)1(ace)]TJ/F8 9.9626 Tf 0 -21.821 Td[(The)-338(basic)-339(u)1(s)-1(er)-338(in)29(te)-1(r)1(face)-339(of)-338(M)1(LD2P4)-338(consis)-1(t)1(s)-339(of)-338(six)-338(r)1(outin)1(e)-1(s.)-459(Th)1(e)-339(f)1(our)-338(r)1(outin)1(e)-1(s)]TJ/F40 9.9626 Tf 0 -11.9551 Td[(mld_precinit)]TJ/F8 9.9626 Tf 62.7641 0 Td[(,)]TJ/F40 9.9626 Tf 6.2164 0 Td[(mld_precset)]TJ/F8 9.9626 Tf 57.5337 0 Td[(,)]TJ/F40 9.9626 Tf 6.2164 0 Td[(mld_precbld)]TJ/F8 9.9626 Tf 60.9571 0 Td[(and)]TJ/F40 9.9626 Tf 19.4743 0 Td[(mld_precaply)]TJ/F8 9.9626 Tf 66.1875 0 Td[(encapsulate)-344(all)]TJ -279.3495 -11.9552 Td[(th)1(e)-474(fu)1(nctionali)1(ties)-474(for)-473(th)1(e)-474(s)-1(etup)-473(an)1(d)-473(appl)1(ic)-1(at)1(ion)-473(of)-473(an)28(y)-473(one-)-1(l)1(e)-1(v)28(el)-474(an)1(d)-473(m)27(u)1(lti-)]TJ 0 -11.9552 Td[(lev)28(e)-1(l)-421(prec)-1(on)1(di)1(tioner)-422(i)1(m)-1(p)1(le)-1(men)28(te)-1(d)-421(in)-421(the)-422(pac)28(k)55(age.)-710(The)-422(rout)1(ine)]TJ/F40 9.9626 Tf 280.947 0 Td[(mld_precfree)]TJ/F8 9.9626 Tf -280.947 -11.9551 Td[(deallo)-27(c)-1(ates)-466(th)1(e)-466(pr)1(e)-1(cond)1(ition)1(e)-1(r)-465(d)1(ata)-466(stru)1(c)-1(t)1(ure,)-498(while)]TJ/F40 9.9626 Tf 236.1973 0 Td[(mld_precdescr)]TJ/F8 9.9626 Tf 72.6302 0 Td[(pr)1(in)28(ts)-465(a)]TJ -308.8275 -11.9552 Td[(desc)-1(ri)1(ption)-332(of)-333(the)-334(p)1(rec)-1(on)1(diti)1(oner)-333(s)-1(etup)-333(b)29(y)-333(the)-334(u)1(s)-1(er.)]TJ 14.944 -11.9552 Td[(F)84(or)-377(eac)27(h)-376(rou)1(tine,)-387(the)-377(sam)-1(e)-377(u)1(s)-1(er)-376(in)28(terface)-377(is)-377(o)28(v)28(e)-1(r)1(loaded)-376(with)-376(res)-1(p)-27(e)-1(ct)-377(to)-376(the)]TJ -14.944 -11.9551 Td[(real/com)-1(p)1(lex)-314(c)-1(ase)-315(an)1(d)-314(the)-314(s)-1(i)1(ngle/dou)1(ble)-314(pr)1(e)-1(cision;)-320(argu)1(m)-1(en)28(ts)-314(w)-1(i)1(th)-314(app)1(rop)1(riate)]TJ 0 -11.9552 Td[(dat)1(a)-334(t)28(yp)-27(es)-334(m)27(u)1(s)-1(t)-333(b)-27(e)-334(pass)-1(ed)-333(to)-333(the)-333(routi)1(ne,)-333(i.e.)]TJ +/F18 14.3462 Tf 124.802 706.1289 Td[(5)-1125(User)-376(In)32(t)-1(er)-1(f)1(ace)]TJ/F8 9.9626 Tf 0 -21.821 Td[(The)-338(basic)-339(u)1(s)-1(er)-338(in)29(te)-1(r)1(face)-339(of)-338(M)1(LD2P4)-338(consis)-1(t)1(s)-339(of)-338(six)-338(r)1(outin)1(e)-1(s.)-459(Th)1(e)-339(f)1(our)-338(r)1(outin)1(e)-1(s)]TJ/F39 9.9626 Tf 0 -11.9551 Td[(mld_precinit)]TJ/F8 9.9626 Tf 62.7641 0 Td[(,)]TJ/F39 9.9626 Tf 6.2164 0 Td[(mld_precset)]TJ/F8 9.9626 Tf 57.5337 0 Td[(,)]TJ/F39 9.9626 Tf 6.2164 0 Td[(mld_precbld)]TJ/F8 9.9626 Tf 60.9571 0 Td[(and)]TJ/F39 9.9626 Tf 19.4743 0 Td[(mld_precaply)]TJ/F8 9.9626 Tf 66.1875 0 Td[(encapsulate)-344(all)]TJ -279.3495 -11.9552 Td[(th)1(e)-474(fu)1(nctionali)1(ties)-474(for)-473(th)1(e)-474(s)-1(etup)-473(an)1(d)-473(appl)1(ic)-1(at)1(ion)-473(of)-473(an)28(y)-473(one-)-1(l)1(e)-1(v)28(el)-474(an)1(d)-473(m)27(u)1(lti-)]TJ 0 -11.9552 Td[(lev)28(e)-1(l)-421(prec)-1(on)1(di)1(tioner)-422(i)1(m)-1(p)1(le)-1(men)28(te)-1(d)-421(in)-421(the)-422(pac)28(k)55(age.)-710(The)-422(rout)1(ine)]TJ/F39 9.9626 Tf 280.947 0 Td[(mld_precfree)]TJ/F8 9.9626 Tf -280.947 -11.9551 Td[(deallo)-27(c)-1(ates)-466(th)1(e)-466(pr)1(e)-1(cond)1(ition)1(e)-1(r)-465(d)1(ata)-466(stru)1(c)-1(t)1(ure,)-498(while)]TJ/F39 9.9626 Tf 236.1973 0 Td[(mld_precdescr)]TJ/F8 9.9626 Tf 72.6302 0 Td[(pr)1(in)28(ts)-465(a)]TJ -308.8275 -11.9552 Td[(desc)-1(ri)1(ption)-332(of)-333(the)-334(p)1(rec)-1(on)1(diti)1(oner)-333(s)-1(etup)-333(b)29(y)-333(the)-334(u)1(s)-1(er.)]TJ 14.944 -11.9552 Td[(F)84(or)-377(eac)27(h)-376(rou)1(tine,)-387(the)-377(sam)-1(e)-377(u)1(s)-1(er)-376(in)28(terface)-377(is)-377(o)28(v)28(e)-1(r)1(loaded)-376(with)-376(res)-1(p)-27(e)-1(ct)-377(to)-376(the)]TJ -14.944 -11.9551 Td[(real/com)-1(p)1(lex)-314(c)-1(ase)-315(an)1(d)-314(the)-314(s)-1(i)1(ngle/dou)1(ble)-314(pr)1(e)-1(cision;)-320(argu)1(m)-1(en)28(ts)-314(w)-1(i)1(th)-314(app)1(rop)1(riate)]TJ 0 -11.9552 Td[(dat)1(a)-334(t)28(yp)-27(es)-334(m)27(u)1(s)-1(t)-333(b)-27(e)-334(pass)-1(ed)-333(to)-333(the)-333(routi)1(ne,)-333(i.e.)]TJ ET -1 0 0 1 124.802 570.6163 cm +1 0 0 1 124.802 568.7413 cm 0 g 0 G -1 0 0 1 -124.802 -570.6163 cm +1 0 0 1 -124.802 -568.7413 cm BT -/F14 9.9626 Tf 139.746 570.6163 Td[(\017)]TJ +/F14 9.9626 Tf 139.746 568.7413 Td[(\017)]TJ ET -1 0 0 1 144.7273 570.6163 cm +1 0 0 1 144.7273 568.7413 cm 0 g 0 G -1 0 0 1 -144.7273 -570.6163 cm +1 0 0 1 -144.7273 -568.7413 cm BT -/F8 9.9626 Tf 149.7086 570.6163 Td[(th)1(e)-401(s)-1(p)1(ars)-1(e)-401(matr)1(ix)-401(d)1(ata)-401(stru)1(c)-1(t)1(ure,)-417(c)-1(on)29(taini)1(ng)-401(t)1(he)-401(matrix)-400(to)-400(b)-28(e)-401(p)1(rec)-1(on)1(di-)]TJ 0 -11.9552 Td[(tion)1(e)-1(d)1(,)-335(m)27(u)1(s)-1(t)-335(b)-27(e)-335(of)-335(t)28(yp)-27(e)]TJ/F40 9.9626 Tf 105.297 0 Td[(mld_)]TJ/F19 9.9626 Tf 20.9213 0 Td[(x)]TJ/F40 9.9626 Tf 5.8212 0 Td[(spmat_type)]TJ/F8 9.9626 Tf 55.6396 0 Td[(with)]TJ/F19 9.9626 Tf 22.708 0 Td[(x)]TJ/F8 9.9626 Tf 9.1573 0 Td[(=)]TJ/F40 9.9626 Tf 11.0849 0 Td[(s)]TJ/F8 9.9626 Tf 8.5665 0 Td[(for)-334(real)-335(singl)1(e)-336(p)1(re-)]TJ -239.1958 -11.9551 Td[(cis)-1(i)1(on,)]TJ/F19 9.9626 Tf 30.2987 0 Td[(x)]TJ/F8 9.9626 Tf 8.8944 0 Td[(=)]TJ/F40 9.9626 Tf 10.822 0 Td[(d)]TJ/F8 9.9626 Tf 8.3035 0 Td[(for)-308(r)1(e)-1(al)-308(dou)1(ble)-308(prec)-1(i)1(s)-1(ion)1(,)]TJ/F19 9.9626 Tf 110.1702 0 Td[(x)]TJ/F8 9.9626 Tf 8.8944 0 Td[(=)]TJ/F40 9.9626 Tf 10.8219 0 Td[(c)]TJ/F8 9.9626 Tf 8.3036 0 Td[(for)-308(complex)-309(sin)1(gle)-309(pr)1(e)-1(cision,)]TJ/F19 9.9626 Tf -196.5087 -11.9552 Td[(x)]TJ/F8 9.9626 Tf 9.1421 0 Td[(=)]TJ/F40 9.9626 Tf 11.0696 0 Td[(z)]TJ/F8 9.9626 Tf 8.5512 0 Td[(for)-333(complex)-333(dou)1(ble)-333(prec)-1(i)1(s)-1(ion)1(;)]TJ +/F8 9.9626 Tf 149.7086 568.7413 Td[(th)1(e)-401(s)-1(p)1(ars)-1(e)-401(matr)1(ix)-401(d)1(ata)-401(stru)1(c)-1(t)1(ure,)-417(c)-1(on)29(taini)1(ng)-401(t)1(he)-401(matrix)-400(to)-400(b)-28(e)-401(p)1(rec)-1(on)1(di-)]TJ 0 -11.9552 Td[(tion)1(e)-1(d)1(,)-335(m)27(u)1(s)-1(t)-335(b)-27(e)-335(of)-335(t)28(yp)-27(e)]TJ/F39 9.9626 Tf 105.297 0 Td[(mld_)]TJ/F19 9.9626 Tf 20.9213 0 Td[(x)]TJ/F39 9.9626 Tf 5.8212 0 Td[(spmat_type)]TJ/F8 9.9626 Tf 55.6396 0 Td[(with)]TJ/F19 9.9626 Tf 22.708 0 Td[(x)]TJ/F8 9.9626 Tf 9.1573 0 Td[(=)]TJ/F39 9.9626 Tf 11.0849 0 Td[(s)]TJ/F8 9.9626 Tf 8.5665 0 Td[(for)-334(real)-335(singl)1(e)-336(p)1(re-)]TJ -239.1958 -11.9551 Td[(cis)-1(i)1(on,)]TJ/F19 9.9626 Tf 30.2987 0 Td[(x)]TJ/F8 9.9626 Tf 8.8944 0 Td[(=)]TJ/F39 9.9626 Tf 10.822 0 Td[(d)]TJ/F8 9.9626 Tf 8.3035 0 Td[(for)-308(r)1(e)-1(al)-308(dou)1(ble)-308(prec)-1(i)1(s)-1(ion)1(,)]TJ/F19 9.9626 Tf 110.1702 0 Td[(x)]TJ/F8 9.9626 Tf 8.8944 0 Td[(=)]TJ/F39 9.9626 Tf 10.8219 0 Td[(c)]TJ/F8 9.9626 Tf 8.3036 0 Td[(for)-308(complex)-309(sin)1(gle)-309(pr)1(e)-1(cision,)]TJ/F19 9.9626 Tf -196.5087 -11.9552 Td[(x)]TJ/F8 9.9626 Tf 9.1421 0 Td[(=)]TJ/F39 9.9626 Tf 11.0696 0 Td[(z)]TJ/F8 9.9626 Tf 8.5512 0 Td[(for)-333(complex)-333(dou)1(ble)-333(prec)-1(i)1(s)-1(ion)1(;)]TJ ET -1 0 0 1 124.802 515.763 cm +1 0 0 1 124.802 512.9505 cm 0 g 0 G -1 0 0 1 -124.802 -515.763 cm +1 0 0 1 -124.802 -512.9505 cm BT -/F14 9.9626 Tf 139.746 515.763 Td[(\017)]TJ +/F14 9.9626 Tf 139.746 512.9505 Td[(\017)]TJ ET -1 0 0 1 144.7273 515.763 cm +1 0 0 1 144.7273 512.9505 cm 0 g 0 G -1 0 0 1 -144.7273 -515.763 cm +1 0 0 1 -144.7273 -512.9505 cm BT -/F8 9.9626 Tf 149.7086 515.763 Td[(th)1(e)-323(pr)1(e)-1(cond)1(ition)1(e)-1(r)-322(d)1(ata)-322(s)-1(tr)1(uctur)1(e)-323(m)27(u)1(s)-1(t)-322(b)-27(e)-323(of)-321(t)28(yp)-28(e)]TJ/F40 9.9626 Tf 219.6176 0 Td[(mld_)]TJ/F19 9.9626 Tf 20.9214 0 Td[(x)]TJ/F40 9.9626 Tf 5.8212 0 Td[(prec_type)]TJ/F8 9.9626 Tf 47.0731 0 Td[(,)-324(with)]TJ/F19 9.9626 Tf -293.4333 -11.9552 Td[(x)]TJ/F8 9.9626 Tf 9.1421 0 Td[(=)]TJ/F40 9.9626 Tf 11.0696 0 Td[(s)]TJ/F8 9.9626 Tf 5.2304 0 Td[(,)]TJ/F40 9.9626 Tf 6.0883 0 Td[(d)]TJ/F8 9.9626 Tf 5.2303 0 Td[(,)]TJ/F40 9.9626 Tf 6.0883 0 Td[(c)]TJ/F8 9.9626 Tf 5.2303 0 Td[(,)]TJ/F40 9.9626 Tf 6.0883 0 Td[(z)]TJ/F8 9.9626 Tf 5.2303 0 Td[(,)-333(ac)-1(cord)1(ing)-333(to)-333(the)-333(s)-1(p)1(arse)-334(m)-1(atr)1(ix)-333(data)-333(stru)1(c)-1(tu)1(re;)]TJ +/F8 9.9626 Tf 149.7086 512.9505 Td[(th)1(e)-323(pr)1(e)-1(cond)1(ition)1(e)-1(r)-322(d)1(ata)-322(s)-1(tr)1(uctur)1(e)-323(m)27(u)1(s)-1(t)-322(b)-27(e)-323(of)-321(t)28(yp)-28(e)]TJ/F39 9.9626 Tf 219.6176 0 Td[(mld_)]TJ/F19 9.9626 Tf 20.9214 0 Td[(x)]TJ/F39 9.9626 Tf 5.8212 0 Td[(prec_type)]TJ/F8 9.9626 Tf 47.0731 0 Td[(,)-324(with)]TJ/F19 9.9626 Tf -293.4333 -11.9552 Td[(x)]TJ/F8 9.9626 Tf 9.1421 0 Td[(=)]TJ/F39 9.9626 Tf 11.0696 0 Td[(s)]TJ/F8 9.9626 Tf 5.2304 0 Td[(,)]TJ/F39 9.9626 Tf 6.0883 0 Td[(d)]TJ/F8 9.9626 Tf 5.2303 0 Td[(,)]TJ/F39 9.9626 Tf 6.0883 0 Td[(c)]TJ/F8 9.9626 Tf 5.2303 0 Td[(,)]TJ/F39 9.9626 Tf 6.0883 0 Td[(z)]TJ/F8 9.9626 Tf 5.2303 0 Td[(,)-333(ac)-1(cord)1(ing)-333(to)-333(the)-333(s)-1(p)1(arse)-334(m)-1(atr)1(ix)-333(data)-333(stru)1(c)-1(tu)1(re;)]TJ ET -1 0 0 1 124.802 484.82 cm +1 0 0 1 124.802 481.0701 cm 0 g 0 G -1 0 0 1 -124.802 -484.82 cm +1 0 0 1 -124.802 -481.0701 cm BT -/F14 9.9626 Tf 139.746 484.82 Td[(\017)]TJ +/F14 9.9626 Tf 139.746 481.0701 Td[(\017)]TJ ET -1 0 0 1 144.7273 484.82 cm +1 0 0 1 144.7273 481.0701 cm 0 g 0 G -1 0 0 1 -144.7273 -484.82 cm +1 0 0 1 -144.7273 -481.0701 cm BT -/F8 9.9626 Tf 149.7086 484.82 Td[(th)1(e)-364(ar)1(ra)28(ys)-363(con)28(tain)1(ing)-362(the)-363(v)28(ec)-1(tors)]TJ/F11 9.9626 Tf 148.0504 0 Td[(v)]TJ/F8 9.9626 Tf 8.7997 0 Td[(and)]TJ/F11 9.9626 Tf 19.664 0 Td[(w)]TJ/F8 9.9626 Tf 11.0136 0 Td[(in)28(v)28(ol)1(v)28(e)-1(d)-362(in)-362(th)1(e)-364(p)1(rec)-1(on)1(dit)1(ioner)]TJ -187.5277 -11.9551 Td[(app)1(lication)]TJ/F11 9.9626 Tf 51.7947 0 Td[(w)]TJ/F8 9.9626 Tf 10.7026 0 Td[(=)]TJ/F11 9.9626 Tf 11.0509 0 Td[(M)]TJ/F13 6.9738 Tf 10.7513 3.6153 Td[(\000)]TJ/F7 6.9738 Tf 6.2267 0 Td[(1)]TJ/F11 9.9626 Tf 4.4694 -3.6153 Td[(v)]TJ/F8 9.9626 Tf 8.8283 0 Td[(m)27(u)1(s)-1(t)-365(b)-27(e)-366(of)-365(t)27(y)1(p)-28(e)]TJ/F19 9.9626 Tf 73.2914 0 Td[(typ)51(e)]TJ/F40 9.9626 Tf 18.0613 0 Td[(\050)]TJ/F19 9.9626 Tf 5.2303 0 Td[(kind)]TJ +/F8 9.9626 Tf 149.7086 481.0701 Td[(th)1(e)-364(ar)1(ra)28(ys)-363(con)28(tain)1(ing)-362(the)-363(v)28(ec)-1(tors)]TJ/F11 9.9626 Tf 148.0504 0 Td[(v)]TJ/F8 9.9626 Tf 8.7997 0 Td[(and)]TJ/F11 9.9626 Tf 19.664 0 Td[(w)]TJ/F8 9.9626 Tf 11.0136 0 Td[(in)28(v)28(ol)1(v)28(e)-1(d)-362(in)-362(th)1(e)-364(p)1(rec)-1(on)1(dit)1(ioner)]TJ -187.5277 -11.9552 Td[(app)1(lication)]TJ/F11 9.9626 Tf 51.7947 0 Td[(w)]TJ/F8 9.9626 Tf 10.7026 0 Td[(=)]TJ/F11 9.9626 Tf 11.0509 0 Td[(M)]TJ/F13 6.9738 Tf 10.7513 3.6154 Td[(\000)]TJ/F7 6.9738 Tf 6.2267 0 Td[(1)]TJ/F11 9.9626 Tf 4.4694 -3.6154 Td[(v)]TJ/F8 9.9626 Tf 8.8283 0 Td[(m)27(u)1(s)-1(t)-365(b)-27(e)-366(of)-365(t)27(y)1(p)-28(e)]TJ/F19 9.9626 Tf 73.2914 0 Td[(typ)51(e)]TJ/F39 9.9626 Tf 18.0613 0 Td[(\050)]TJ/F19 9.9626 Tf 5.2303 0 Td[(kind)]TJ ET -1 0 0 1 369.0577 472.8649 cm +1 0 0 1 369.0577 469.1149 cm q []0 d 0 J @@ -2380,11 +2521,11 @@ q 3.0552 0.1992 l S Q -1 0 0 1 -369.0577 -472.8649 cm +1 0 0 1 -369.0577 -469.1149 cm BT -/F19 9.9626 Tf 372.1129 472.8649 Td[(p)51(ar)51(ameter)]TJ/F40 9.9626 Tf 44.3541 0 Td[(\051)]TJ/F8 9.9626 Tf 5.2304 0 Td[(,)-373(w)-1(i)1(th)]TJ/F19 9.9626 Tf 29.503 0 Td[(typ)51(e)]TJ/F8 9.9626 Tf -301.4918 -11.9552 Td[(=)]TJ/F40 9.9626 Tf 11.3873 0 Td[(real)]TJ/F8 9.9626 Tf 20.9214 0 Td[(,)]TJ/F40 9.9626 Tf 6.4853 0 Td[(complex)]TJ/F8 9.9626 Tf 40.2509 0 Td[(and)]TJ/F19 9.9626 Tf 19.6895 0 Td[(kind)]TJ +/F19 9.9626 Tf 372.1129 469.1149 Td[(p)51(ar)51(ameter)]TJ/F39 9.9626 Tf 44.3541 0 Td[(\051)]TJ/F8 9.9626 Tf 5.2304 0 Td[(,)-373(w)-1(i)1(th)]TJ/F19 9.9626 Tf 29.503 0 Td[(typ)51(e)]TJ/F8 9.9626 Tf -301.4918 -11.9552 Td[(=)]TJ/F39 9.9626 Tf 11.3873 0 Td[(real)]TJ/F8 9.9626 Tf 20.9214 0 Td[(,)]TJ/F39 9.9626 Tf 6.4853 0 Td[(complex)]TJ/F8 9.9626 Tf 40.2509 0 Td[(and)]TJ/F19 9.9626 Tf 19.6895 0 Td[(kind)]TJ ET -1 0 0 1 267.3851 460.9097 cm +1 0 0 1 267.3851 457.1597 cm q []0 d 0 J @@ -2393,35 +2534,35 @@ q 3.0552 0.1992 l S Q -1 0 0 1 -267.3851 -460.9097 cm +1 0 0 1 -267.3851 -457.1597 cm BT -/F19 9.9626 Tf 270.4403 460.9097 Td[(p)51(ar)51(ameter)]TJ/F8 9.9626 Tf 47.9927 0 Td[(=)]TJ/F40 9.9626 Tf 11.3872 0 Td[(kind\0501.\051)]TJ/F8 9.9626 Tf 41.8427 0 Td[(,)]TJ/F40 9.9626 Tf 6.4854 0 Td[(kind\0501.d0\051)]TJ/F8 9.9626 Tf 52.3034 0 Td[(,)-373(acc)-1(ord)1(-)]TJ -280.7431 -11.9552 Td[(in)1(g)-492(to)-491(the)-492(spar)1(s)-1(e)-492(matri)1(x)-492(an)1(d)-491(prec)-1(on)1(di)1(tioner)-491(data)-491(s)-1(tr)1(uctur)1(e)-1(;)-570(note)-492(th)1(at)]TJ 0 -11.9551 Td[(th)1(e)-406(PSBLAS)-405(mo)-28(du)1(le)-406(pr)1(o)28(vides)-406(th)1(e)-407(constan)28(ts)]TJ/F40 9.9626 Tf 199.1978 0 Td[(psb_spk_)]TJ/F8 9.9626 Tf 45.8832 0 Td[(=)]TJ/F40 9.9626 Tf 11.7893 0 Td[(kind\0501.\051)]TJ/F8 9.9626 Tf 45.8832 0 Td[(and)]TJ/F40 9.9626 Tf -302.7535 -11.9552 Td[(psb_dpk_)]TJ/F8 9.9626 Tf 45.1636 0 Td[(=)]TJ/F40 9.9626 Tf 11.0696 0 Td[(kind\0501.d0\051)]TJ/F8 9.9626 Tf 52.3034 0 Td[(;)]TJ +/F19 9.9626 Tf 270.4403 457.1597 Td[(p)51(ar)51(ameter)]TJ/F8 9.9626 Tf 47.9927 0 Td[(=)]TJ/F39 9.9626 Tf 11.3872 0 Td[(kind\0501.\051)]TJ/F8 9.9626 Tf 41.8427 0 Td[(,)]TJ/F39 9.9626 Tf 6.4854 0 Td[(kind\0501.d0\051)]TJ/F8 9.9626 Tf 52.3034 0 Td[(,)-373(acc)-1(ord)1(-)]TJ -280.7431 -11.9551 Td[(in)1(g)-492(to)-491(the)-492(spar)1(s)-1(e)-492(matri)1(x)-492(an)1(d)-491(prec)-1(on)1(di)1(tioner)-491(data)-491(s)-1(tr)1(uctur)1(e)-1(;)-570(note)-492(th)1(at)]TJ 0 -11.9552 Td[(th)1(e)-406(PSBLAS)-405(mo)-28(du)1(le)-406(pr)1(o)28(vides)-406(th)1(e)-407(constan)28(ts)]TJ/F39 9.9626 Tf 199.1978 0 Td[(psb_spk_)]TJ/F8 9.9626 Tf 45.8832 0 Td[(=)]TJ/F39 9.9626 Tf 11.7893 0 Td[(kind\0501.\051)]TJ/F8 9.9626 Tf 45.8832 0 Td[(and)]TJ/F39 9.9626 Tf -302.7535 -11.9552 Td[(psb_dpk_)]TJ/F8 9.9626 Tf 45.1636 0 Td[(=)]TJ/F39 9.9626 Tf 11.0696 0 Td[(kind\0501.d0\051)]TJ/F8 9.9626 Tf 52.3034 0 Td[(;)]TJ ET -1 0 0 1 124.802 406.0564 cm +1 0 0 1 124.802 401.369 cm 0 g 0 G -1 0 0 1 -124.802 -406.0564 cm +1 0 0 1 -124.802 -401.369 cm BT -/F14 9.9626 Tf 139.746 406.0564 Td[(\017)]TJ +/F14 9.9626 Tf 139.746 401.369 Td[(\017)]TJ ET -1 0 0 1 144.7273 406.0564 cm +1 0 0 1 144.7273 401.369 cm 0 g 0 G -1 0 0 1 -144.7273 -406.0564 cm +1 0 0 1 -144.7273 -401.369 cm BT -/F8 9.9626 Tf 149.7086 406.0564 Td[(real)-287(p)1(arame)-1(ters)-287(d)1(e)-1(\014)1(nin)1(g)-287(th)1(e)-288(p)1(rec)-1(on)1(diti)1(oner)-287(m)28(ust)-287(b)-27(e)-287(dec)-1(lar)1(e)-1(d)-286(acc)-1(ord)1(in)1(g)-287(to)]TJ 0 -11.9552 Td[(th)1(e)-334(pr)1(e)-1(cis)-1(i)1(on)-333(of)-333(the)-333(previou)1(s)-334(dat)1(a)-334(stru)1(c)-1(tu)1(res)-334(\050se)-1(e)-334(S)1(e)-1(ction)]TJ +/F8 9.9626 Tf 149.7086 401.369 Td[(real)-287(p)1(arame)-1(ters)-287(d)1(e)-1(\014)1(nin)1(g)-287(th)1(e)-288(p)1(rec)-1(on)1(diti)1(oner)-287(m)28(ust)-287(b)-27(e)-287(dec)-1(lar)1(e)-1(d)-286(acc)-1(ord)1(in)1(g)-287(to)]TJ 0 -11.9552 Td[(th)1(e)-334(pr)1(e)-1(cis)-1(i)1(on)-333(of)-333(the)-333(previou)1(s)-334(dat)1(a)-334(stru)1(c)-1(tu)1(res)-334(\050se)-1(e)-334(S)1(e)-1(ction)]TJ ET -1 0 0 1 400.8229 394.1012 cm +1 0 0 1 400.8229 389.4138 cm 0 0 1 rg 0 0 1 RG -1 0 0 1 -400.8229 -394.1012 cm +1 0 0 1 -400.8229 -389.4138 cm BT -/F8 9.9626 Tf 400.8229 394.1012 Td[(6.2)]TJ +/F8 9.9626 Tf 400.8229 389.4138 Td[(5.2)]TJ ET -1 0 0 1 413.553 394.1012 cm +1 0 0 1 413.553 389.4138 cm 0 g 0 G -1 0 0 1 -413.553 -394.1012 cm +1 0 0 1 -413.553 -389.4138 cm BT -/F8 9.9626 Tf 413.553 394.1012 Td[(\051.)]TJ -288.751 -18.0503 Td[(A)-333(des)-1(crip)1(tion)-333(of)-333(eac)27(h)-333(r)1(outin)1(e)-334(is)-334(gi)1(v)28(e)-1(n)-333(i)1(n)-333(the)-334(r)1(e)-1(main)1(der)-333(of)-333(thi)1(s)-334(s)-1(ec)-1(t)1(ion.)]TJ/F18 11.9552 Tf 0 -27.4848 Td[(6.)-1(1)-1125(Subr)-1(out)-1(ine)-376(ml)-1(d)]TJ +/F8 9.9626 Tf 413.553 389.4138 Td[(\051.)]TJ -288.751 -19.9253 Td[(A)-333(des)-1(crip)1(tion)-333(of)-333(eac)27(h)-333(r)1(outin)1(e)-334(is)-334(gi)1(v)28(e)-1(n)-333(i)1(n)-333(the)-334(r)1(e)-1(main)1(der)-333(of)-333(thi)1(s)-334(s)-1(ec)-1(t)1(ion.)]TJ/F18 11.9552 Tf 0 -27.8884 Td[(5.)-1(1)-1125(Subr)-1(out)-1(ine)-376(ml)-1(d)]TJ ET -1 0 0 1 247.8242 348.5661 cm +1 0 0 1 247.8242 341.6001 cm q []0 d 0 J @@ -2430,40 +2571,40 @@ q 4.0349 0.1992 l S Q -1 0 0 1 -247.8242 -348.5661 cm +1 0 0 1 -247.8242 -341.6001 cm BT -/F18 11.9552 Tf 251.8591 348.5661 Td[(pre)-1(cini)-1(t)]TJ +/F18 11.9552 Tf 251.8591 341.6001 Td[(pre)-1(cini)-1(t)]TJ ET -1 0 0 1 223.6818 330.1768 cm +1 0 0 1 223.6818 323.2107 cm 0 g 0 G 0 g 0 G -1 0 0 1 -223.6818 -330.1768 cm +1 0 0 1 -223.6818 -323.2107 cm BT -/F40 9.9626 Tf 228.6631 330.1768 Td[(mld_precinit\050p,ptype,info\051)]TJ -13.0758 -11.9552 Td[(mld_precinit\050p,ptype,info,nlev\051)]TJ/F8 9.9626 Tf -90.7853 -19.5741 Td[(This)-326(r)1(outin)1(e)-326(allo)-28(cate)-1(s)-326(an)1(d)-326(i)1(niti)1(alize)-1(s)-326(the)-326(p)1(rec)-1(on)1(diti)1(oner)-326(d)1(ata)-326(structu)1(re)-1(,)-327(acc)-1(or)1(d-)]TJ 0 -11.9551 Td[(in)1(g)-334(to)-333(th)1(e)-334(pr)1(e)-1(cond)1(ition)1(e)-1(r)-333(t)28(yp)-27(e)-334(c)27(h)1(os)-1(en)-333(b)28(y)-333(th)1(e)-334(user.)]TJ/F37 9.9626 Tf 0 -25.4923 Td[(Argumen)32(t)-1(s)]TJ/F40 9.9626 Tf 5.9776 -17.7362 Td[(p)-4089(type\050mld_)]TJ/F19 9.9626 Tf 93.0439 0 Td[(x)]TJ/F40 9.9626 Tf 5.8212 0 Td[(prec_type\051,)-525(intent\050inout\051)]TJ/F8 9.9626 Tf 130.7585 0 Td[(.)]TJ/F37 9.9626 Tf 27.5597 0 Td[(CO)1(NTR)31(OLL)1(A)-1(RE)-1166(SE)]TJ -211.2125 -11.9552 Td[(DE)1(V)-1(E)-383(E)1(SSERE)-383(INOUT)-383(O)-383(SOLO)-383(OUT)]TJ/F8 9.9626 Tf 0 -11.9551 Td[(The)-366(p)1(rec)-1(on)1(dit)1(ioner)-365(data)-365(structu)1(re)-1(.)-540(Note)-365(that)]TJ/F19 9.9626 Tf 203.9037 0 Td[(x)]TJ/F8 9.9626 Tf 9.4605 0 Td[(m)27(u)1(s)-1(t)-365(b)-27(e)-366(c)28(hos)-1(en)-365(acc)-1(or)1(din)1(g)]TJ -213.3642 -11.9552 Td[(to)-306(t)1(he)-306(real/c)-1(omp)1(le)-1(x)1(,)-311(s)-1(in)1(gle/doub)1(le)-306(pr)1(e)-1(cision)-305(v)28(e)-1(rsion)-305(of)-305(MLD2P)1(4)-306(un)1(der)-306(u)1(s)-1(e.)]TJ/F40 9.9626 Tf -45.9708 -11.9552 Td[(ptype)-1989(character\050len=*\051,)-525(intent\050in\051)]TJ/F8 9.9626 Tf 192.4203 0 Td[(.)]TJ -146.4495 -11.9551 Td[(The)-334(t)28(y)1(p)-28(e)-334(of)-332(prec)-1(on)1(di)1(tioner.)-444(Its)-334(v)56(alu)1(e)-1(s)-334(ar)1(e)-334(s)-1(p)-27(ec)-1(i\014)1(e)-1(d)-332(in)-333(T)83(abl)1(e)]TJ +/F39 9.9626 Tf 228.6631 323.2107 Td[(mld_precinit\050p,ptype,info\051)]TJ -13.0758 -11.9552 Td[(mld_precinit\050p,ptype,info,nlev\051)]TJ/F8 9.9626 Tf -90.7853 -21.9178 Td[(This)-326(r)1(outin)1(e)-326(allo)-28(cate)-1(s)-326(an)1(d)-326(i)1(niti)1(alize)-1(s)-326(the)-326(p)1(rec)-1(on)1(diti)1(oner)-326(d)1(ata)-326(structu)1(re)-1(,)-327(acc)-1(or)1(d-)]TJ 0 -11.9551 Td[(in)1(g)-334(to)-333(th)1(e)-334(pr)1(e)-1(cond)1(ition)1(e)-1(r)-333(t)28(yp)-27(e)-334(c)27(h)1(os)-1(en)-333(b)28(y)-333(th)1(e)-334(user.)]TJ/F37 9.9626 Tf 0 -25.8959 Td[(Argumen)32(t)-1(s)]TJ/F39 9.9626 Tf 5.9776 -17.7362 Td[(p)-4089(type\050mld_)]TJ/F19 9.9626 Tf 93.0439 0 Td[(x)]TJ/F39 9.9626 Tf 5.8212 0 Td[(prec_type\051,)-525(intent\050inout\051)]TJ/F8 9.9626 Tf 130.7585 0 Td[(.)]TJ -183.6528 -11.9552 Td[(The)-366(p)1(rec)-1(on)1(dit)1(ioner)-365(data)-365(structu)1(re)-1(.)-540(Note)-365(that)]TJ/F19 9.9626 Tf 203.9037 0 Td[(x)]TJ/F8 9.9626 Tf 9.4605 0 Td[(m)27(u)1(s)-1(t)-365(b)-27(e)-366(c)28(hos)-1(en)-365(acc)-1(or)1(din)1(g)]TJ -213.3642 -11.9552 Td[(to)-306(t)1(he)-306(real/c)-1(omp)1(le)-1(x)1(,)-311(s)-1(in)1(gle/doub)1(le)-306(pr)1(e)-1(cision)-305(v)28(e)-1(rsion)-305(of)-305(MLD2P)1(4)-306(un)1(der)-306(u)1(s)-1(e.)]TJ/F39 9.9626 Tf -45.9708 -11.9551 Td[(ptype)-1989(character\050len=*\051,)-525(intent\050in\051)]TJ/F8 9.9626 Tf 192.4203 0 Td[(.)]TJ -146.4495 -11.9552 Td[(The)-334(t)28(y)1(p)-28(e)-334(of)-332(prec)-1(on)1(di)1(tioner.)-444(Its)-334(v)56(alu)1(e)-1(s)-334(ar)1(e)-334(s)-1(p)-27(ec)-1(i\014)1(e)-1(d)-332(in)-333(T)83(abl)1(e)]TJ ET -1 0 0 1 441.0098 183.688 cm +1 0 0 1 441.0098 185.9298 cm 0 0 1 rg 0 0 1 RG -1 0 0 1 -441.0098 -183.688 cm +1 0 0 1 -441.0098 -185.9298 cm BT -/F8 9.9626 Tf 441.0098 183.688 Td[(1)]TJ +/F8 9.9626 Tf 441.0098 185.9298 Td[(1)]TJ ET -1 0 0 1 445.9912 183.688 cm +1 0 0 1 445.9912 185.9298 cm 0 g 0 G -1 0 0 1 -445.9912 -183.688 cm +1 0 0 1 -445.9912 -185.9298 cm BT -/F8 9.9626 Tf 445.9912 183.688 Td[(.)]TJ/F40 9.9626 Tf -315.2116 -11.9551 Td[(info)-2514(integer,)-525(intent\050out\051)]TJ/F8 9.9626 Tf 150.5776 0 Td[(.)]TJ -104.6068 -11.9552 Td[(Er)1(ror)-333(co)-28(de.)-444(See)-334(Sec)-1(t)1(ion)]TJ +/F8 9.9626 Tf 445.9912 185.9298 Td[(.)]TJ/F39 9.9626 Tf -315.2116 -11.9552 Td[(info)-2514(integer,)-525(intent\050out\051)]TJ/F8 9.9626 Tf 150.5776 0 Td[(.)]TJ -104.6068 -11.9551 Td[(Er)1(ror)-333(co)-28(de.)-444(See)-334(Sec)-1(t)1(ion)]TJ ET -1 0 0 1 282.9634 159.7777 cm +1 0 0 1 282.9634 162.0195 cm 0 0 1 rg 0 0 1 RG -1 0 0 1 -282.9634 -159.7777 cm +1 0 0 1 -282.9634 -162.0195 cm BT -/F8 9.9626 Tf 282.9634 159.7777 Td[(7)]TJ +/F8 9.9626 Tf 282.9634 162.0195 Td[(6)]TJ ET -1 0 0 1 287.9447 159.7777 cm +1 0 0 1 287.9447 162.0195 cm 0 g 0 G -1 0 0 1 -287.9447 -159.7777 cm +1 0 0 1 -287.9447 -162.0195 cm BT -/F8 9.9626 Tf 291.2656 159.7777 Td[(for)-333(d)1(e)-1(t)1(ails.)]TJ/F40 9.9626 Tf -160.486 -11.9552 Td[(nlev)-2514(integer,)-525(optional,)-525(intent\050in\051)]TJ/F8 9.9626 Tf 197.6507 0 Td[(.)]TJ -151.6799 -11.9551 Td[(The)-280(n)28(um)28(b)-28(er)-280(of)-280(lev)28(e)-1(l)1(s)-281(of)-280(th)1(e)-281(m)27(u)1(ltil)1(e)-1(v)28(el)-280(precondi)1(tioner.)-426(If)]TJ/F40 9.9626 Tf 244.2444 0 Td[(nlev)]TJ/F8 9.9626 Tf 23.7134 0 Td[(is)-280(not)-280(pr)1(e)-1(se)-1(n)28(t)]TJ -267.9578 -11.9552 Td[(and)]TJ/F40 9.9626 Tf 18.3095 0 Td[(ptype)]TJ/F8 9.9626 Tf 26.1517 0 Td[(='M)1(L'/'ml',)-248(t)1(hen)]TJ/F40 9.9626 Tf 77.0971 0 Td[(nlev)]TJ/F8 9.9626 Tf 20.9214 0 Td[(=2)-226(is)-227(as)-1(sume)-1(d)1(.)-409(Oth)1(e)-1(r)1(wis)-1(e,)]TJ/F40 9.9626 Tf 116.4721 0 Td[(nlev)]TJ/F8 9.9626 Tf 23.1799 0 Td[(is)-227(ign)1(ored.)]TJ +/F8 9.9626 Tf 291.2656 162.0195 Td[(for)-333(d)1(e)-1(t)1(ails.)]TJ/F39 9.9626 Tf -160.486 -11.9552 Td[(nlev)-2514(integer,)-525(optional,)-525(intent\050in\051)]TJ/F8 9.9626 Tf 197.6507 0 Td[(.)]TJ -151.6799 -11.9552 Td[(The)-280(n)28(um)28(b)-28(er)-280(of)-280(lev)28(e)-1(l)1(s)-281(of)-280(th)1(e)-281(m)27(u)1(ltil)1(e)-1(v)28(el)-280(precondi)1(tioner.)-426(If)]TJ/F39 9.9626 Tf 244.2444 0 Td[(nlev)]TJ/F8 9.9626 Tf 23.7134 0 Td[(is)-280(not)-280(pr)1(e)-1(se)-1(n)28(t)]TJ -267.9578 -11.9551 Td[(and)]TJ/F39 9.9626 Tf 18.3095 0 Td[(ptype)]TJ/F8 9.9626 Tf 26.1517 0 Td[(='M)1(L'/'ml',)-248(t)1(hen)]TJ/F39 9.9626 Tf 77.0971 0 Td[(nlev)]TJ/F8 9.9626 Tf 20.9214 0 Td[(=2)-226(is)-227(as)-1(sume)-1(d)1(.)-409(Oth)1(e)-1(r)1(wis)-1(e,)]TJ/F39 9.9626 Tf 116.4721 0 Td[(nlev)]TJ/F8 9.9626 Tf 23.1799 0 Td[(is)-227(ign)1(ored.)]TJ ET 1 0 0 1 124.802 90.4377 cm 0 g 0 G @@ -2471,60 +2612,60 @@ ET 0 g 0 G endstream endobj -228 0 obj << +243 0 obj << /Type /Page -/Contents 229 0 R -/Resources 227 0 R +/Contents 244 0 R +/Resources 242 0 R /MediaBox [0 0 595.2756 841.8898] -/Parent 221 0 R -/Annots [ 231 0 R 238 0 R 240 0 R 241 0 R ] +/Parent 241 0 R +/Annots [ 246 0 R 253 0 R 255 0 R 256 0 R ] >> endobj -231 0 obj << +246 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [123.8057 740.0018 130.7796 748.9129] /Subtype /Link -/A << /S /GoTo /D (section.1) >> +/A << /S /GoTo /D (section.5) >> >> endobj -238 0 obj << +253 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] -/Rect [399.8266 390.6143 414.5492 402.5695] +/Rect [399.8266 385.9269 414.5492 397.882] /Subtype /Link -/A << /S /GoTo /D (subsection.6.2) >> +/A << /S /GoTo /D (subsection.5.2) >> >> endobj -240 0 obj << +255 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] -/Rect [440.0136 179.1052 446.9874 191.6028] +/Rect [440.0136 181.3469 446.9874 193.8446] /Subtype /Link /A << /S /GoTo /D (table.1) >> >> endobj -241 0 obj << +256 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] -/Rect [281.9671 155.1949 288.941 167.6925] +/Rect [281.9671 157.4366 288.941 169.9342] /Subtype /Link -/A << /S /GoTo /D (section.7) >> +/A << /S /GoTo /D (section.6) >> >> endobj -230 0 obj << -/D [228 0 R /XYZ 124.802 740.9981 null] +245 0 obj << +/D [243 0 R /XYZ 124.802 740.9981 null] >> endobj -34 0 obj << -/D [228 0 R /XYZ 124.802 716.0915 null] +30 0 obj << +/D [243 0 R /XYZ 124.802 716.0915 null] >> endobj -38 0 obj << -/D [228 0 R /XYZ 124.802 360.5767 null] +34 0 obj << +/D [243 0 R /XYZ 124.802 353.6106 null] >> endobj -239 0 obj << -/D [228 0 R /XYZ 124.802 252.8287 null] +254 0 obj << +/D [243 0 R /XYZ 124.802 243.1153 null] >> endobj -227 0 obj << -/Font << /F34 129 0 R /F8 91 0 R /F18 73 0 R /F40 175 0 R /F14 139 0 R /F19 132 0 R /F11 136 0 R /F13 234 0 R /F7 237 0 R /F37 109 0 R >> +242 0 obj << +/Font << /F34 134 0 R /F8 95 0 R /F18 77 0 R /F39 181 0 R /F14 145 0 R /F19 137 0 R /F11 142 0 R /F13 249 0 R /F7 252 0 R /F37 113 0 R >> /ProcSet [ /PDF /Text ] >> endobj -244 0 obj << -/Length 7522 +259 0 obj << +/Length 7524 >> stream 1 0 0 1 124.802 740.9981 cm @@ -2532,13 +2673,13 @@ stream 0 0 1 rg 0 0 1 RG 1 0 0 1 -124.802 -740.9981 cm BT -/F34 9.9626 Tf 124.802 740.9981 Td[(1)]TJ +/F34 9.9626 Tf 124.802 740.9981 Td[(5)]TJ ET 1 0 0 1 129.7833 740.9981 cm 0 g 0 G 1 0 0 1 -129.7833 -740.9981 cm BT -/F34 9.9626 Tf 133.1042 740.9981 Td[(General)-333(Ov)28(ervi)1(e)-1(w)]TJ +/F34 9.9626 Tf 133.1042 740.9981 Td[(Use)-1(r)-333(In)28(terf)1(ac)-1(e)]TJ ET 1 0 0 1 124.802 739.4042 cm q @@ -2546,18 +2687,18 @@ q 0 J 0.3985 w 0 0.1992 m -86.1908 0.1992 l +69.2958 0.1992 l S Q 1 0 0 1 -124.802 -739.4042 cm BT -/F8 9.9626 Tf 458.5504 740.9981 Td[(12)]TJ +/F8 9.9626 Tf 458.5504 740.9981 Td[(11)]TJ ET 1 0 0 1 468.5131 740.9981 cm 0 g 0 G 1 0 0 1 -468.5131 -740.9981 cm BT -/F18 11.9552 Tf 124.802 706.1289 Td[(6.)-1(2)-1125(Subr)-1(out)-1(ine)-376(ml)-1(d)]TJ +/F18 11.9552 Tf 124.802 706.1289 Td[(5.)-1(2)-1125(Subr)-1(out)-1(ine)-376(ml)-1(d)]TJ ET 1 0 0 1 247.8242 706.1289 cm q @@ -2577,7 +2718,7 @@ ET 0 g 0 G 1 0 0 1 -218.4515 -687.7395 cm BT -/F40 9.9626 Tf 223.4328 687.7395 Td[(mld_precset\050p,what,val,info\051)]TJ/F8 9.9626 Tf -98.6308 -21.9178 Td[(This)-412(rout)1(ine)-413(se)-1(t)1(s)-413(the)-413(p)1(arame)-1(t)1(e)-1(rs)-412(de\014n)1(ing)-412(the)-412(prec)-1(on)1(di)1(tioner.)-681(Mor)1(e)-413(precis)-1(ely)84(,)]TJ 0 -11.9552 Td[(th)1(e)-334(par)1(am)-1(ete)-1(r)-333(i)1(den)28(ti\014)1(e)-1(d)-333(b)28(y)]TJ/F40 9.9626 Tf 122.0979 0 Td[(what)]TJ/F8 9.9626 Tf 24.2422 0 Td[(is)-334(assigned)-333(the)-333(v)55(al)1(ue)-334(con)28(tain)1(e)-1(d)-333(i)1(n)]TJ/F40 9.9626 Tf 149.0524 0 Td[(val)]TJ/F8 9.9626 Tf 15.6911 0 Td[(.)]TJ/F37 9.9626 Tf -311.0836 -25.8959 Td[(Argumen)32(t)-1(s)]TJ/F40 9.9626 Tf 5.9776 -17.7362 Td[(p)-4089(type\050mld_)]TJ/F19 9.9626 Tf 93.0439 0 Td[(x)]TJ/F40 9.9626 Tf 5.8212 0 Td[(prec_type\051,)-525(intent\050inout\051)]TJ/F8 9.9626 Tf 130.7585 0 Td[(.)]TJ -183.6528 -11.9552 Td[(The)-366(p)1(rec)-1(on)1(dit)1(ioner)-365(data)-365(structu)1(re)-1(.)-540(Note)-365(that)]TJ/F19 9.9626 Tf 203.9037 0 Td[(x)]TJ/F8 9.9626 Tf 9.4605 0 Td[(m)27(u)1(s)-1(t)-365(b)-27(e)-366(c)28(hos)-1(en)-365(acc)-1(or)1(din)1(g)]TJ -213.3642 -11.9551 Td[(to)-306(t)1(he)-306(real/c)-1(omp)1(le)-1(x)1(,)-311(s)-1(in)1(gle/doub)1(le)-306(pr)1(e)-1(cision)-305(v)28(e)-1(rsion)-305(of)-305(MLD2P)1(4)-306(un)1(der)-306(u)1(s)-1(e.)]TJ/F40 9.9626 Tf -45.9708 -11.9552 Td[(what)-2514(integer,)-525(intent\050in\051)]TJ/F8 9.9626 Tf 145.3473 0 Td[(.)]TJ -99.3765 -11.9552 Td[(The)-301(n)28(um)28(b)-28(er)-301(id)1(e)-1(n)28(t)1(ifyi)1(ng)-301(the)-301(par)1(am)-1(ete)-1(r)-300(to)-301(b)-28(e)-301(s)-1(et.)-434(A)-301(mnem)-1(on)1(ic)-302(constan)28(t)-301(h)1(as)]TJ 0 -11.9551 Td[(b)-27(e)-1(en)-333(as)-1(so)-28(ciated)-333(to)-333(e)-1(ac)27(h)-332(of)-333(thes)-1(e)-334(n)29(um)28(b)-28(ers,)-333(as)-334(rep)-28(or)1(te)-1(d)-333(i)1(n)-333(T)83(abl)1(e)-1(s)]TJ +/F39 9.9626 Tf 223.4328 687.7395 Td[(mld_precset\050p,what,val,info\051)]TJ/F8 9.9626 Tf -98.6308 -21.9178 Td[(This)-412(rout)1(ine)-413(se)-1(t)1(s)-413(the)-413(p)1(arame)-1(t)1(e)-1(rs)-412(de\014n)1(ing)-412(the)-412(prec)-1(on)1(di)1(tioner.)-681(Mor)1(e)-413(precis)-1(ely)84(,)]TJ 0 -11.9552 Td[(th)1(e)-334(par)1(am)-1(ete)-1(r)-333(i)1(den)28(ti\014)1(e)-1(d)-333(b)28(y)]TJ/F39 9.9626 Tf 122.0979 0 Td[(what)]TJ/F8 9.9626 Tf 24.2422 0 Td[(is)-334(assigned)-333(the)-333(v)55(al)1(ue)-334(con)28(tain)1(e)-1(d)-333(i)1(n)]TJ/F39 9.9626 Tf 149.0524 0 Td[(val)]TJ/F8 9.9626 Tf 15.6911 0 Td[(.)]TJ/F37 9.9626 Tf -311.0836 -25.8959 Td[(Argumen)32(t)-1(s)]TJ/F39 9.9626 Tf 5.9776 -17.7362 Td[(p)-4089(type\050mld_)]TJ/F19 9.9626 Tf 93.0439 0 Td[(x)]TJ/F39 9.9626 Tf 5.8212 0 Td[(prec_type\051,)-525(intent\050inout\051)]TJ/F8 9.9626 Tf 130.7585 0 Td[(.)]TJ -183.6528 -11.9552 Td[(The)-366(p)1(rec)-1(on)1(dit)1(ioner)-365(data)-365(structu)1(re)-1(.)-540(Note)-365(that)]TJ/F19 9.9626 Tf 203.9037 0 Td[(x)]TJ/F8 9.9626 Tf 9.4605 0 Td[(m)27(u)1(s)-1(t)-365(b)-27(e)-366(c)28(hos)-1(en)-365(acc)-1(or)1(din)1(g)]TJ -213.3642 -11.9551 Td[(to)-306(t)1(he)-306(real/c)-1(omp)1(le)-1(x)1(,)-311(s)-1(in)1(gle/doub)1(le)-306(pr)1(e)-1(cision)-305(v)28(e)-1(rsion)-305(of)-305(MLD2P)1(4)-306(un)1(der)-306(u)1(s)-1(e.)]TJ/F39 9.9626 Tf -45.9708 -11.9552 Td[(what)-2514(integer,)-525(intent\050in\051)]TJ/F8 9.9626 Tf 145.3473 0 Td[(.)]TJ -99.3765 -11.9552 Td[(The)-301(n)28(um)28(b)-28(er)-301(id)1(e)-1(n)28(t)1(ifyi)1(ng)-301(the)-301(par)1(am)-1(ete)-1(r)-300(to)-301(b)-28(e)-301(s)-1(et.)-434(A)-301(mnem)-1(on)1(ic)-302(constan)28(t)-301(h)1(as)]TJ 0 -11.9551 Td[(b)-27(e)-1(en)-333(as)-1(so)-28(ciated)-333(to)-333(e)-1(ac)27(h)-332(of)-333(thes)-1(e)-334(n)29(um)28(b)-28(ers,)-333(as)-334(rep)-28(or)1(te)-1(d)-333(i)1(n)-333(T)83(abl)1(e)-1(s)]TJ ET 1 0 0 1 457.5035 550.4586 cm 0 0 1 rg 0 0 1 RG @@ -2601,13 +2742,13 @@ ET 0 g 0 G 1 0 0 1 -470.7871 -550.4586 cm BT -/F8 9.9626 Tf 470.7871 550.4586 Td[(.)]TJ/F40 9.9626 Tf -340.0075 -11.9552 Td[(val)-3039(integer)]TJ/F19 9.9626 Tf 85.0687 0 Td[(or)]TJ/F40 9.9626 Tf 12.8508 0 Td[(character\050len=*\051)]TJ/F19 9.9626 Tf 86.1709 0 Td[(or)]TJ/F40 9.9626 Tf 12.8508 0 Td[(real\050kind\0501.\051\051)]TJ/F19 9.9626 Tf 75.7103 0 Td[(or)]TJ/F40 9.9626 Tf 12.8507 0 Td[(real\050kind\0501.d0\051\051)]TJ/F8 9.9626 Tf 83.6854 0 Td[(,)]TJ/F40 9.9626 Tf -323.2168 -11.9552 Td[(intent\050in\051)]TJ/F8 9.9626 Tf 52.3034 0 Td[(.)]TJ -52.3034 -11.9551 Td[(The)-407(v)56(alu)1(e)-407(of)-406(the)-407(p)1(arame)-1(ter)-406(to)-407(b)-27(e)-407(se)-1(t.)-663(T)-1(h)1(e)-407(list)-407(of)-406(al)1(lo)28(w)27(ed)-406(v)55(al)1(ues)-407(and)-406(th)1(e)]TJ 0 -11.9552 Td[(corres)-1(p)-27(ond)1(in)1(g)-334(d)1(ata)-334(t)28(y)1(p)-28(es)-334(is)-334(gi)1(v)28(e)-1(n)-333(in)-332(T)83(able)]TJ/F37 9.9626 Tf 188.1282 0 Td[(??)]TJ/F8 9.9626 Tf 10.8205 0 Td[(.)]TJ/F40 9.9626 Tf -244.9195 -11.9552 Td[(info)-2514(integer,)-525(intent\050out\051)]TJ/F8 9.9626 Tf 150.5776 0 Td[(.)]TJ -104.6068 -11.9551 Td[(Er)1(ror)-333(co)-28(de.)-444(See)-334(Sec)-1(t)1(ion)]TJ +/F8 9.9626 Tf 470.7871 550.4586 Td[(.)]TJ/F39 9.9626 Tf -340.0075 -11.9552 Td[(val)-3039(integer)]TJ/F19 9.9626 Tf 85.0687 0 Td[(or)]TJ/F39 9.9626 Tf 12.8508 0 Td[(character\050len=*\051)]TJ/F19 9.9626 Tf 86.1709 0 Td[(or)]TJ/F39 9.9626 Tf 12.8508 0 Td[(real\050kind\0501.\051\051)]TJ/F19 9.9626 Tf 75.7103 0 Td[(or)]TJ/F39 9.9626 Tf 12.8507 0 Td[(real\050kind\0501.d0\051\051)]TJ/F8 9.9626 Tf 83.6854 0 Td[(,)]TJ/F39 9.9626 Tf -323.2168 -11.9552 Td[(intent\050in\051)]TJ/F8 9.9626 Tf 52.3034 0 Td[(.)]TJ -52.3034 -11.9551 Td[(The)-407(v)56(alu)1(e)-407(of)-406(the)-407(p)1(arame)-1(ter)-406(to)-407(b)-27(e)-407(se)-1(t.)-663(T)-1(h)1(e)-407(list)-407(of)-406(al)1(lo)28(w)27(ed)-406(v)55(al)1(ues)-407(and)-406(th)1(e)]TJ 0 -11.9552 Td[(corres)-1(p)-27(ond)1(in)1(g)-334(d)1(ata)-334(t)28(y)1(p)-28(es)-334(is)-334(gi)1(v)28(e)-1(n)-333(in)-332(T)83(able)]TJ/F37 9.9626 Tf 188.1282 0 Td[(??)]TJ/F8 9.9626 Tf 10.8205 0 Td[(.)]TJ/F39 9.9626 Tf -244.9195 -11.9552 Td[(info)-2514(integer,)-525(intent\050out\051)]TJ/F8 9.9626 Tf 150.5776 0 Td[(.)]TJ -104.6068 -11.9551 Td[(Er)1(ror)-333(co)-28(de.)-444(See)-334(Sec)-1(t)1(ion)]TJ ET 1 0 0 1 282.9634 478.7276 cm 0 0 1 rg 0 0 1 RG 1 0 0 1 -282.9634 -478.7276 cm BT -/F8 9.9626 Tf 282.9634 478.7276 Td[(7)]TJ +/F8 9.9626 Tf 282.9634 478.7276 Td[(6)]TJ ET 1 0 0 1 287.9447 478.7276 cm 0 g 0 G @@ -2693,83 +2834,83 @@ ET 0 g 0 G endstream endobj -243 0 obj << +258 0 obj << /Type /Page -/Contents 244 0 R -/Resources 242 0 R +/Contents 259 0 R +/Resources 257 0 R /MediaBox [0 0 595.2756 841.8898] -/Parent 221 0 R -/Annots [ 246 0 R 248 0 R 249 0 R 250 0 R 255 0 R 256 0 R ] +/Parent 241 0 R +/Annots [ 261 0 R 263 0 R 264 0 R 265 0 R 270 0 R 271 0 R ] >> endobj -246 0 obj << +261 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [123.8057 740.0018 130.7796 748.9129] /Subtype /Link -/A << /S /GoTo /D (section.1) >> +/A << /S /GoTo /D (section.5) >> >> endobj -248 0 obj << +263 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [456.5073 545.8757 463.4811 558.3733] /Subtype /Link /A << /S /GoTo /D (table.2) >> >> endobj -249 0 obj << +264 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [464.8095 545.8757 471.7833 558.3733] /Subtype /Link /A << /S /GoTo /D (table.5) >> >> endobj -250 0 obj << +265 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [281.9671 474.1447 288.941 486.6423] /Subtype /Link -/A << /S /GoTo /D (section.7) >> +/A << /S /GoTo /D (section.6) >> >> endobj -255 0 obj << +270 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [231.1047 323.7642 238.0786 334.6124] /Subtype /Link /A << /S /GoTo /D (table.2) >> >> endobj -256 0 obj << +271 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [239.4069 323.7642 246.3808 334.6124] /Subtype /Link /A << /S /GoTo /D (table.5) >> >> endobj -245 0 obj << -/D [243 0 R /XYZ 124.802 740.9981 null] +260 0 obj << +/D [258 0 R /XYZ 124.802 740.9981 null] >> endobj -42 0 obj << -/D [243 0 R /XYZ 124.802 716.0915 null] +38 0 obj << +/D [258 0 R /XYZ 124.802 716.0915 null] >> endobj -247 0 obj << -/D [243 0 R /XYZ 124.802 619.5993 null] +262 0 obj << +/D [258 0 R /XYZ 124.802 619.5993 null] >> endobj -251 0 obj << -/D [243 0 R /XYZ 124.802 432.357 null] +266 0 obj << +/D [258 0 R /XYZ 124.802 432.357 null] >> endobj -252 0 obj << -/D [243 0 R /XYZ 124.802 412.4317 null] +267 0 obj << +/D [258 0 R /XYZ 124.802 412.4317 null] >> endobj -253 0 obj << -/D [243 0 R /XYZ 124.802 392.5064 null] +268 0 obj << +/D [258 0 R /XYZ 124.802 392.5064 null] >> endobj -254 0 obj << -/D [243 0 R /XYZ 124.802 372.5811 null] +269 0 obj << +/D [258 0 R /XYZ 124.802 372.5811 null] >> endobj -242 0 obj << -/Font << /F34 129 0 R /F8 91 0 R /F18 73 0 R /F40 175 0 R /F37 109 0 R /F19 132 0 R >> +257 0 obj << +/Font << /F34 134 0 R /F8 95 0 R /F18 77 0 R /F39 181 0 R /F37 113 0 R /F19 137 0 R >> /ProcSet [ /PDF /Text ] >> endobj -259 0 obj << -/Length 7032 +274 0 obj << +/Length 6749 >> stream 1 0 0 1 124.802 740.9981 cm @@ -2777,13 +2918,13 @@ stream 0 0 1 rg 0 0 1 RG 1 0 0 1 -124.802 -740.9981 cm BT -/F34 9.9626 Tf 124.802 740.9981 Td[(1)]TJ +/F34 9.9626 Tf 124.802 740.9981 Td[(5)]TJ ET 1 0 0 1 129.7833 740.9981 cm 0 g 0 G 1 0 0 1 -129.7833 -740.9981 cm BT -/F34 9.9626 Tf 133.1042 740.9981 Td[(General)-333(Ov)28(ervi)1(e)-1(w)]TJ +/F34 9.9626 Tf 133.1042 740.9981 Td[(Use)-1(r)-333(In)28(terf)1(ac)-1(e)]TJ ET 1 0 0 1 124.802 739.4042 cm q @@ -2791,12 +2932,12 @@ q 0 J 0.3985 w 0 0.1992 m -86.1908 0.1992 l +69.2958 0.1992 l S Q 1 0 0 1 -124.802 -739.4042 cm BT -/F8 9.9626 Tf 458.5504 740.9981 Td[(13)]TJ +/F8 9.9626 Tf 458.5504 740.9981 Td[(12)]TJ ET 1 0 0 1 468.5131 740.9981 cm 0 g 0 G @@ -2805,16 +2946,16 @@ ET 1 0 0 1 171.8555 -595.7659 cm q 0 1 -1 0 0 0 cm 0 g 0 G -1 0 0 1 26.669 14.8886 cm +1 0 0 1 29.1734 14.8886 cm 0 g 0 G 0 g 0 G -1 0 0 1 4.9813 92.3537 cm +1 0 0 1 4.9813 80.3985 cm q []0 d 0 J 0.3985 w 0 0.1992 m -532.4653 0.1992 l +527.4565 0.1992 l S Q 1 0 0 1 -0.1992 -11.9552 cm @@ -2826,11 +2967,11 @@ q 0.1992 11.9552 l S Q -1 0 0 1 -328.1086 -215.6127 cm +1 0 0 1 -330.613 -203.6575 cm BT -/F40 9.9626 Tf 334.2854 219.1993 Td[(what)]TJ +/F39 9.9626 Tf 336.7898 207.2441 Td[(what)]TJ ET -1 0 0 1 434.2099 215.6127 cm +1 0 0 1 436.7143 203.6575 cm q []0 d 0 J @@ -2839,11 +2980,11 @@ q 0.1992 11.9552 l S Q -1 0 0 1 -434.2099 -215.6127 cm +1 0 0 1 -436.7143 -203.6575 cm BT -/F19 9.9626 Tf 440.3867 219.1993 Td[(data)-358(t)-1(y)1(p)51(e)]TJ +/F19 9.9626 Tf 442.8911 207.2441 Td[(data)-358(t)-1(y)1(p)51(e)]TJ ET -1 0 0 1 529.8505 215.6127 cm +1 0 0 1 532.3549 203.6575 cm q []0 d 0 J @@ -2852,11 +2993,11 @@ q 0.1992 11.9552 l S Q -1 0 0 1 -529.8505 -215.6127 cm +1 0 0 1 -532.3549 -203.6575 cm BT -/F40 9.9626 Tf 536.0274 219.1993 Td[(val)]TJ +/F39 9.9626 Tf 538.5318 207.2441 Td[(val)]TJ ET -1 0 0 1 598.4986 215.6127 cm +1 0 0 1 601.003 203.6575 cm q []0 d 0 J @@ -2865,11 +3006,11 @@ q 0.1992 11.9552 l S Q -1 0 0 1 -598.4986 -215.6127 cm +1 0 0 1 -601.003 -203.6575 cm BT -/F19 9.9626 Tf 604.6754 219.1993 Td[(defaul)1(t)]TJ +/F19 9.9626 Tf 607.1798 207.2441 Td[(defaul)1(t)]TJ ET -1 0 0 1 650.1935 215.6127 cm +1 0 0 1 647.6891 203.6575 cm q []0 d 0 J @@ -2878,11 +3019,11 @@ q 0.1992 11.9552 l S Q -1 0 0 1 -650.1935 -215.6127 cm +1 0 0 1 -647.6891 -203.6575 cm BT -/F19 9.9626 Tf 656.3704 219.1993 Td[(c)51(omments)]TJ +/F19 9.9626 Tf 653.866 207.2441 Td[(c)51(omments)]TJ ET -1 0 0 1 860.5739 215.6127 cm +1 0 0 1 858.0695 203.6575 cm q []0 d 0 J @@ -2891,13 +3032,13 @@ q 0.1992 11.9552 l S Q -1 0 0 1 -532.2661 -0.3985 cm +1 0 0 1 -527.2573 -0.3985 cm q []0 d 0 J 0.3985 w 0 0.1992 m -532.4653 0.1992 l +527.4565 0.1992 l S Q 1 0 0 1 -0.1992 -35.8655 cm @@ -2909,11 +3050,11 @@ q 0.1992 35.8655 l S Q -1 0 0 1 -328.1086 -179.3487 cm +1 0 0 1 -330.613 -167.3935 cm BT -/F40 9.9626 Tf 334.2854 206.8457 Td[(mld_ml_type_)]TJ +/F39 9.9626 Tf 336.7898 194.8905 Td[(mld_ml_type_)]TJ ET -1 0 0 1 434.2099 179.3487 cm +1 0 0 1 436.7143 167.3935 cm q []0 d 0 J @@ -2922,11 +3063,11 @@ q 0.1992 35.8655 l S Q -1 0 0 1 -434.2099 -179.3487 cm +1 0 0 1 -436.7143 -167.3935 cm BT -/F40 9.9626 Tf 440.3867 206.8457 Td[(character\050len=*\051)]TJ +/F39 9.9626 Tf 442.8911 194.8905 Td[(character\050len=*\051)]TJ ET -1 0 0 1 529.8505 179.3487 cm +1 0 0 1 532.3549 167.3935 cm q []0 d 0 J @@ -2935,11 +3076,11 @@ q 0.1992 35.8655 l S Q -1 0 0 1 -529.8505 -179.3487 cm +1 0 0 1 -532.3549 -167.3935 cm BT -/F8 9.9626 Tf 536.0274 206.8457 Td[('ADD')]TJ 0 -11.9552 Td[('M)1(UL)83(T')]TJ +/F8 9.9626 Tf 538.5318 194.8905 Td[('ADD')]TJ 0 -11.9552 Td[('M)1(UL)83(T')]TJ ET -1 0 0 1 598.4986 179.3487 cm +1 0 0 1 601.003 167.3935 cm q []0 d 0 J @@ -2948,11 +3089,11 @@ q 0.1992 35.8655 l S Q -1 0 0 1 -598.4986 -179.3487 cm +1 0 0 1 -601.003 -167.3935 cm BT -/F8 9.9626 Tf 604.6754 206.8457 Td[('M)1(UL)83(T')]TJ +/F8 9.9626 Tf 607.1798 194.8905 Td[('M)1(UL)83(T')]TJ ET -1 0 0 1 650.1935 179.3487 cm +1 0 0 1 647.6891 167.3935 cm q []0 d 0 J @@ -2961,11 +3102,11 @@ q 0.1992 35.8655 l S Q -1 0 0 1 -650.1935 -179.3487 cm +1 0 0 1 -647.6891 -167.3935 cm BT -/F8 9.9626 Tf 656.3704 206.8457 Td[(basic)-359(m)27(u)1(lti-lev)28(e)-1(l)-358(fr)1(am)-1(ew)27(or)1(k:)-495(addi)1(tiv)28(e)-359(or)-359(m)28(ul-)]TJ 0 -11.9552 Td[(tip)1(licativ)28(e)-239(am)-1(on)1(g)-239(the)-239(lev)28(e)-1(l)1(s)-240(alw)28(a)28(ys)-239(add)1(itiv)28(e)-239(in-)]TJ 0 -11.9552 Td[(side)-334(a)-333(lev)28(e)-1(l)1(\051)]TJ +/F8 9.9626 Tf 653.866 194.8905 Td[(basic)-359(m)27(u)1(lti-lev)28(e)-1(l)-358(fr)1(am)-1(ew)27(or)1(k:)-495(addi)1(tiv)28(e)-359(or)-359(m)28(ul-)]TJ 0 -11.9552 Td[(tip)1(licativ)28(e)-239(am)-1(on)1(g)-239(the)-239(lev)28(e)-1(l)1(s)-240(alw)28(a)28(ys)-239(add)1(itiv)28(e)-239(in-)]TJ 0 -11.9552 Td[(side)-334(a)-333(lev)28(e)-1(l)1(\051)]TJ ET -1 0 0 1 860.5739 179.3487 cm +1 0 0 1 858.0695 167.3935 cm q []0 d 0 J @@ -2974,7 +3115,7 @@ q 0.1992 35.8655 l S Q -1 0 0 1 -532.4653 -71.731 cm +1 0 0 1 -527.4565 -71.731 cm q []0 d 0 J @@ -2983,11 +3124,11 @@ q 0.1992 71.731 l S Q -1 0 0 1 -328.1086 -107.6177 cm +1 0 0 1 -330.613 -95.6625 cm BT -/F40 9.9626 Tf 334.2854 170.9801 Td[(mld_smoother_type_)]TJ +/F39 9.9626 Tf 336.7898 159.0249 Td[(mld_smoother_type_)]TJ ET -1 0 0 1 434.2099 107.6177 cm +1 0 0 1 436.7143 95.6625 cm q []0 d 0 J @@ -2996,11 +3137,11 @@ q 0.1992 71.731 l S Q -1 0 0 1 -434.2099 -107.6177 cm +1 0 0 1 -436.7143 -95.6625 cm BT -/F40 9.9626 Tf 440.3867 170.9801 Td[(character\050len=*\051)]TJ +/F39 9.9626 Tf 442.8911 159.0249 Td[(character\050len=*\051)]TJ ET -1 0 0 1 529.8505 107.6177 cm +1 0 0 1 532.3549 95.6625 cm q []0 d 0 J @@ -3009,11 +3150,11 @@ q 0.1992 71.731 l S Q -1 0 0 1 -529.8505 -107.6177 cm +1 0 0 1 -532.3549 -95.6625 cm BT -/F8 9.9626 Tf 536.0274 170.9801 Td[('DIA)28(G')]TJ 0 -11.9551 Td[('BJA)28(C')]TJ 0 -11.9552 Td[('AS)1(')]TJ +/F8 9.9626 Tf 538.5318 159.0249 Td[('DIA)28(G')]TJ 0 -11.9551 Td[('BJA)28(C')]TJ 0 -11.9552 Td[('AS)1(')]TJ ET -1 0 0 1 598.4986 107.6177 cm +1 0 0 1 601.003 95.6625 cm q []0 d 0 J @@ -3022,11 +3163,11 @@ q 0.1992 71.731 l S Q -1 0 0 1 -598.4986 -107.6177 cm +1 0 0 1 -601.003 -95.6625 cm BT -/F8 9.9626 Tf 604.6754 170.9801 Td[('AS)1(')]TJ +/F8 9.9626 Tf 607.1798 159.0249 Td[('AS)1(')]TJ ET -1 0 0 1 650.1935 107.6177 cm +1 0 0 1 647.6891 95.6625 cm q []0 d 0 J @@ -3035,11 +3176,11 @@ q 0.1992 71.731 l S Q -1 0 0 1 -650.1935 -107.6177 cm +1 0 0 1 -647.6891 -95.6625 cm BT -/F8 9.9626 Tf 656.3704 170.9801 Td[(basic)-398(one-)-1(l)1(e)-1(v)28(el)-398(pr)1(e)-1(cond)1(ition)1(e)-1(r)-397(\050i.e.)-398(sm)-1(o)-28(ot)1(her\051)]TJ 0 -11.9551 Td[(of)-920(th)1(e)-921(m)28(ulti)1(-)-1(lev)28(el)-920(prec)-1(on)1(di)1(tioner)]TJ/F37 9.9626 Tf 166.7939 0 Td[(CAM-)]TJ -166.794 -11.9552 Td[(BIA)-1(RE)-426(NOME)-426(COST)96(ANTE)-427(NE)1(L)-427(SW,)]TJ 0 -11.9552 Td[(ORA)-962(E)1(')-961(m)-1(ld)]TJ +/F8 9.9626 Tf 653.866 159.0249 Td[(basic)-398(one-)-1(l)1(e)-1(v)28(el)-398(pr)1(e)-1(cond)1(ition)1(e)-1(r)-397(\050i.e.)-398(sm)-1(o)-28(ot)1(her\051)]TJ 0 -11.9551 Td[(of)-920(th)1(e)-921(m)28(ulti)1(-)-1(lev)28(el)-920(prec)-1(on)1(di)1(tioner)]TJ/F37 9.9626 Tf 166.7939 0 Td[(CAM-)]TJ -166.794 -11.9552 Td[(BIA)-1(RE)-426(NOME)-426(COST)96(ANTE)-427(NE)1(L)-427(SW,)]TJ 0 -11.9552 Td[(ORA)-962(E)1(')-961(m)-1(ld)]TJ ET -1 0 0 1 731.8676 135.1146 cm +1 0 0 1 729.3632 123.1594 cm q []0 d 0 J @@ -3048,11 +3189,11 @@ q 3.4371 0.1992 l S Q -1 0 0 1 -731.8676 -135.1146 cm +1 0 0 1 -729.3632 -123.1594 cm BT -/F37 9.9626 Tf 735.3048 135.1146 Td[(pr)1(e)-1(c)]TJ +/F37 9.9626 Tf 732.8004 123.1594 Td[(pr)1(e)-1(c)]TJ ET -1 0 0 1 757.4186 135.1146 cm +1 0 0 1 754.9142 123.1594 cm q []0 d 0 J @@ -3061,11 +3202,11 @@ q 3.4371 0.1992 l S Q -1 0 0 1 -757.4186 -135.1146 cm +1 0 0 1 -754.9142 -123.1594 cm BT -/F37 9.9626 Tf 760.8558 135.1146 Td[(t)32(yp)-32(e.)-2246(INIBIR)-1(E)]TJ -104.4854 -11.9552 Td[(no)]TJ +/F37 9.9626 Tf 758.3514 123.1594 Td[(t)32(yp)-32(e.)-2246(INIBIR)-1(E)]TJ -104.4854 -11.9551 Td[(no)]TJ ET -1 0 0 1 669.1512 123.1595 cm +1 0 0 1 666.6468 111.2043 cm q []0 d 0 J @@ -3074,11 +3215,11 @@ q 3.4371 0.1992 l S Q -1 0 0 1 -669.1512 -123.1595 cm +1 0 0 1 -666.6468 -111.2043 cm BT -/F37 9.9626 Tf 672.5883 123.1595 Td[(prec)-460(NE)1(LL'A)-1(M)1(BITO)-460(DEL)-459(MUL)96(TI-)]TJ -16.218 -11.9552 Td[(LE)1(V)-1(E)1(L.)]TJ +/F37 9.9626 Tf 670.0839 111.2043 Td[(prec)-460(NE)1(LL'A)-1(M)1(BITO)-460(DEL)-459(MUL)96(TI-)]TJ -16.218 -11.9552 Td[(LE)1(V)-1(E)1(L.)]TJ ET -1 0 0 1 860.5739 107.6177 cm +1 0 0 1 858.0695 95.6625 cm q []0 d 0 J @@ -3087,136 +3228,136 @@ q 0.1992 71.731 l S Q -1 0 0 1 -532.4653 -59.7758 cm +1 0 0 1 -527.4565 -35.8655 cm q []0 d 0 J 0.3985 w 0.1992 0 m -0.1992 59.7758 l +0.1992 35.8655 l S Q -1 0 0 1 -328.1086 -47.8419 cm +1 0 0 1 -330.613 -59.797 cm BT -/F40 9.9626 Tf 334.2854 99.2491 Td[(mld_smoother_pos_)]TJ +/F39 9.9626 Tf 336.7898 87.2939 Td[(mld_smoother_pos_)]TJ ET -1 0 0 1 434.2099 47.8419 cm +1 0 0 1 436.7143 59.797 cm q []0 d 0 J 0.3985 w 0.1992 0 m -0.1992 59.7758 l +0.1992 35.8655 l S Q -1 0 0 1 -434.2099 -47.8419 cm +1 0 0 1 -436.7143 -59.797 cm BT -/F40 9.9626 Tf 440.3867 99.2491 Td[(character\050len=*\051)]TJ +/F39 9.9626 Tf 442.8911 87.2939 Td[(character\050len=*\051)]TJ ET -1 0 0 1 529.8505 47.8419 cm +1 0 0 1 532.3549 59.797 cm q []0 d 0 J 0.3985 w 0.1992 0 m -0.1992 59.7758 l +0.1992 35.8655 l S Q -1 0 0 1 -529.8505 -47.8419 cm +1 0 0 1 -532.3549 -59.797 cm BT -/F8 9.9626 Tf 536.0274 99.2491 Td[('P)1(RE')]TJ 0 -11.9551 Td[('P)1(OST')]TJ 0 -11.9552 Td[('TW)28(OS)1(IDE')]TJ +/F8 9.9626 Tf 538.5318 87.2939 Td[('P)1(RE')]TJ 0 -11.9551 Td[('P)1(OST')]TJ 0 -11.9552 Td[('TW)28(OS)1(IDE')]TJ ET -1 0 0 1 598.4986 47.8419 cm +1 0 0 1 601.003 59.797 cm q []0 d 0 J 0.3985 w 0.1992 0 m -0.1992 59.7758 l +0.1992 35.8655 l S Q -1 0 0 1 -598.4986 -47.8419 cm +1 0 0 1 -601.003 -59.797 cm BT -/F8 9.9626 Tf 604.6754 99.2491 Td[(2,..)1(.,)]TJ/F40 9.9626 Tf 18.8184 0 Td[(nlev)]TJ +/F8 9.9626 Tf 607.1798 87.2939 Td[('P)1(OST')]TJ ET -1 0 0 1 650.1935 47.8419 cm +1 0 0 1 647.6891 59.797 cm q []0 d 0 J 0.3985 w 0.1992 0 m -0.1992 59.7758 l +0.1992 35.8655 l S Q -1 0 0 1 -650.1935 -47.8419 cm +1 0 0 1 -647.6891 -59.797 cm BT -/F8 9.9626 Tf 656.3704 99.2491 Td[(\134p)-27(os)-1(it)1(ion")-623(of)-622(th)1(e)-624(sm)-1(o)-27(other:)-1023(pr)1(e)-1(-s)-1(mo)-28(oth)1(e)-1(r)1(,)]TJ 0 -11.9551 Td[(p)-27(os)-1(t-sm)-1(o)-28(ot)1(her,)-4942(p)1(re)-1(-/p)-27(os)-1(t-sm)-1(o)-27(other)]TJ/F37 9.9626 Tf 0 -11.9552 Td[(PR)-1(E)1(FE)1(R)-1(ISC)1(O)-873(TW)32(O)1(SIDE)-872(A)-873(BOTH)]TJ 0 -11.9552 Td[(PER)32(CHE)1(')-757(E')-757(DIV)-1(E)1(R)-1(SO)-756(D)32(A)-757(TR)-1(ILI-)]TJ 0 -11.9551 Td[(NOS)]TJ +/F8 9.9626 Tf 653.866 87.2939 Td[(\134p)-27(os)-1(it)1(ion")-623(of)-622(th)1(e)-624(sm)-1(o)-27(other:)-1023(pr)1(e)-1(-s)-1(mo)-28(oth)1(e)-1(r)1(,)]TJ 0 -11.9551 Td[(p)-27(os)-1(t-sm)-1(o)-28(ot)1(her,)-333(pr)1(e)-1(-/p)-28(ost-s)-1(mo)-28(oth)1(e)-1(r)]TJ ET -1 0 0 1 860.5739 47.8419 cm +1 0 0 1 858.0695 59.797 cm q []0 d 0 J 0.3985 w 0.1992 0 m -0.1992 59.7758 l +0.1992 35.8655 l S Q -1 0 0 1 -532.2661 -0.3985 cm +1 0 0 1 -527.2573 -0.3985 cm q []0 d 0 J 0.3985 w 0 0.1992 m -532.4653 0.1992 l +527.4565 0.1992 l S Q -1 0 0 1 116.5022 -27.84 cm +1 0 0 1 113.9978 -27.84 cm 0 g 0 G -1 0 0 1 -444.81 -19.6034 cm +1 0 0 1 -444.81 -31.5585 cm BT -/F8 9.9626 Tf 444.81 19.6034 Td[(T)83(ab)1(le)-334(2:)-444(P)28(aramete)-1(r)1(s)-334(de\014n)1(ing)-333(the)-333(t)28(yp)-28(e)-333(of)-333(m)27(u)1(lti-lev)28(e)-1(l)-333(p)1(re)-1(cond)1(ition)1(e)-1(r)1(.)]TJ +/F8 9.9626 Tf 444.81 31.5585 Td[(T)83(ab)1(le)-334(2:)-444(P)28(aramete)-1(r)1(s)-334(de\014n)1(ing)-333(the)-333(t)28(yp)-28(e)-333(of)-333(m)27(u)1(lti-lev)28(e)-1(l)-333(p)1(re)-1(cond)1(ition)1(e)-1(r)1(.)]TJ ET -1 0 0 1 744.2709 19.6034 cm +1 0 0 1 744.2709 31.5585 cm 0 g 0 G -1 0 0 1 148.1525 100.7223 cm +1 0 0 1 148.1525 88.7671 cm 0 g 0 G 1 0 0 1 -595.7659 0 cm Q 1 0 0 1 -171.8555 0 cm 0 g 0 G -1 0 0 1 0 -29.888 cm +1 0 0 1 0 -29.8879 cm 0 g 0 G 1 0 0 1 343.7111 0 cm 0 g 0 G endstream endobj -258 0 obj << +273 0 obj << /Type /Page -/Contents 259 0 R -/Resources 257 0 R +/Contents 274 0 R +/Resources 272 0 R /MediaBox [0 0 595.2756 841.8898] -/Parent 221 0 R -/Annots [ 261 0 R ] +/Parent 241 0 R +/Annots [ 276 0 R ] >> endobj -261 0 obj << +276 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [123.8057 740.0018 130.7796 748.9129] /Subtype /Link -/A << /S /GoTo /D (section.1) >> +/A << /S /GoTo /D (section.5) >> >> endobj -260 0 obj << -/D [258 0 R /XYZ 124.802 740.9981 null] +275 0 obj << +/D [273 0 R /XYZ 124.802 740.9981 null] >> endobj -191 0 obj << -/D [258 0 R /XYZ 484.3839 31.5585 null] +197 0 obj << +/D [273 0 R /XYZ 484.3839 43.5137 null] >> endobj -257 0 obj << -/Font << /F34 129 0 R /F8 91 0 R /F40 175 0 R /F19 132 0 R /F37 109 0 R >> +272 0 obj << +/Font << /F34 134 0 R /F8 95 0 R /F39 181 0 R /F19 137 0 R /F37 113 0 R >> /ProcSet [ /PDF /Text ] >> endobj -264 0 obj << -/Length 7045 +279 0 obj << +/Length 12049 >> stream 1 0 0 1 124.802 740.9981 cm @@ -3224,13 +3365,13 @@ stream 0 0 1 rg 0 0 1 RG 1 0 0 1 -124.802 -740.9981 cm BT -/F34 9.9626 Tf 124.802 740.9981 Td[(1)]TJ +/F34 9.9626 Tf 124.802 740.9981 Td[(5)]TJ ET 1 0 0 1 129.7833 740.9981 cm 0 g 0 G 1 0 0 1 -129.7833 -740.9981 cm BT -/F34 9.9626 Tf 133.1042 740.9981 Td[(General)-333(Ov)28(ervi)1(e)-1(w)]TJ +/F34 9.9626 Tf 133.1042 740.9981 Td[(Use)-1(r)-333(In)28(terf)1(ac)-1(e)]TJ ET 1 0 0 1 124.802 739.4042 cm q @@ -3238,12 +3379,12 @@ q 0 J 0.3985 w 0 0.1992 m -86.1908 0.1992 l +69.2958 0.1992 l S Q 1 0 0 1 -124.802 -739.4042 cm BT -/F8 9.9626 Tf 458.5504 740.9981 Td[(14)]TJ +/F8 9.9626 Tf 458.5504 740.9981 Td[(13)]TJ ET 1 0 0 1 468.5131 740.9981 cm 0 g 0 G @@ -3252,19 +3393,19 @@ ET 1 0 0 1 171.8555 -595.7659 cm q 0 1 -1 0 0 0 cm 0 g 0 G -1 0 0 1 61.1367 15.4421 cm +1 0 0 1 36.8805 15.4421 cm 0 g 0 G 0 g 0 G -1 0 0 1 4.9813 68.4433 cm +1 0 0 1 4.9814 170.0623 cm q []0 d 0 J 0.3985 w 0 0.1992 m -463.5299 0.1992 l +512.0422 0.1992 l S Q -1 0 0 1 -0.1992 -11.9551 cm +1 0 0 1 -0.1993 -11.9552 cm q []0 d 0 J @@ -3273,11 +3414,11 @@ q 0.1992 11.9552 l S Q -1 0 0 1 -362.5763 -192.2559 cm +1 0 0 1 -338.3201 -293.8748 cm BT -/F40 9.9626 Tf 368.7531 195.8425 Td[(what)]TJ +/F39 9.9626 Tf 344.497 297.4614 Td[(what)]TJ ET -1 0 0 1 452.9866 192.2559 cm +1 0 0 1 428.7304 293.8748 cm q []0 d 0 J @@ -3286,11 +3427,11 @@ q 0.1992 11.9552 l S Q -1 0 0 1 -452.9866 -192.2559 cm +1 0 0 1 -428.7304 -293.8748 cm BT -/F19 9.9626 Tf 459.1634 195.8425 Td[(data)-358(t)-1(y)1(p)51(e)]TJ +/F19 9.9626 Tf 434.9073 297.4614 Td[(data)-358(t)-1(y)1(p)51(e)]TJ ET -1 0 0 1 505.1532 192.2559 cm +1 0 0 1 524.371 293.8748 cm q []0 d 0 J @@ -3299,11 +3440,11 @@ q 0.1992 11.9552 l S Q -1 0 0 1 -505.1532 -192.2559 cm +1 0 0 1 -524.371 -293.8748 cm BT -/F40 9.9626 Tf 511.33 195.8425 Td[(val)]TJ +/F39 9.9626 Tf 530.5479 297.4614 Td[(val)]TJ ET -1 0 0 1 573.8012 192.2559 cm +1 0 0 1 593.0191 293.8748 cm q []0 d 0 J @@ -3312,11 +3453,11 @@ q 0.1992 11.9552 l S Q -1 0 0 1 -573.8012 -192.2559 cm +1 0 0 1 -593.0191 -293.8748 cm BT -/F19 9.9626 Tf 579.9781 195.8425 Td[(defaul)1(t)]TJ +/F19 9.9626 Tf 599.196 297.4614 Td[(defaul)1(t)]TJ ET -1 0 0 1 615.7258 192.2559 cm +1 0 0 1 639.982 293.8748 cm q []0 d 0 J @@ -3325,11 +3466,11 @@ q 0.1992 11.9552 l S Q -1 0 0 1 -615.7258 -192.2559 cm +1 0 0 1 -639.982 -293.8748 cm BT -/F19 9.9626 Tf 621.9026 195.8425 Td[(c)51(omments)]TJ +/F19 9.9626 Tf 646.1588 297.4614 Td[(c)51(omments)]TJ ET -1 0 0 1 826.1062 192.2559 cm +1 0 0 1 850.3623 293.8748 cm q []0 d 0 J @@ -3338,463 +3479,571 @@ q 0.1992 11.9552 l S Q -1 0 0 1 -463.3306 -0.3985 cm +1 0 0 1 -511.8429 -0.3985 cm q []0 d 0 J 0.3985 w 0 0.1992 m -463.5299 0.1992 l +512.0422 0.1992 l S Q -1 0 0 1 -0.1993 -23.9103 cm +1 0 0 1 -0.1993 -35.8655 cm q []0 d 0 J 0.3985 w 0.1992 0 m -0.1992 23.9103 l +0.1992 35.8655 l S Q -1 0 0 1 -362.5763 -167.9471 cm +1 0 0 1 -338.3201 -257.6108 cm BT -/F40 9.9626 Tf 368.7532 183.4888 Td[(mld_sub_ovr)]TJ +/F39 9.9626 Tf 344.497 285.1077 Td[(mld_sub_ovr)]TJ ET -1 0 0 1 452.9866 167.9471 cm +1 0 0 1 428.7304 257.6108 cm q []0 d 0 J 0.3985 w 0.1992 0 m -0.1992 23.9103 l +0.1992 35.8655 l S Q -1 0 0 1 -452.9866 -167.9471 cm +1 0 0 1 -428.7304 -257.6108 cm BT -/F40 9.9626 Tf 459.1634 183.4888 Td[(integer)]TJ +/F39 9.9626 Tf 434.9073 285.1077 Td[(integer)]TJ ET -1 0 0 1 505.1532 167.9471 cm +1 0 0 1 524.371 257.6108 cm q []0 d 0 J 0.3985 w 0.1992 0 m -0.1992 23.9103 l +0.1992 35.8655 l S Q -1 0 0 1 -505.1532 -167.9471 cm +1 0 0 1 -524.371 -257.6108 cm BT -/F8 9.9626 Tf 511.33 183.4888 Td[(an)28(y)-826(n)28(um)28(b)-27(e)-1(r)]TJ/F14 9.9626 Tf 0 -11.9552 Td[(\025)]TJ/F8 9.9626 Tf 10.5161 0 Td[(0)]TJ +/F8 9.9626 Tf 530.5479 285.1077 Td[(an)28(y)-826(n)28(um)28(b)-27(e)-1(r)]TJ/F14 9.9626 Tf 0 -11.9552 Td[(\025)]TJ/F8 9.9626 Tf 10.5161 0 Td[(0)]TJ ET -1 0 0 1 573.8012 167.9471 cm +1 0 0 1 593.0191 257.6108 cm q []0 d 0 J 0.3985 w 0.1992 0 m -0.1992 23.9103 l +0.1992 35.8655 l S Q -1 0 0 1 -573.8012 -167.9471 cm +1 0 0 1 -593.0191 -257.6108 cm BT -/F8 9.9626 Tf 579.9781 183.4888 Td[(1)]TJ +/F8 9.9626 Tf 599.196 285.1077 Td[(1)]TJ ET -1 0 0 1 615.7258 167.9471 cm +1 0 0 1 639.982 257.6108 cm q []0 d 0 J 0.3985 w 0.1992 0 m -0.1992 23.9103 l +0.1992 35.8655 l S Q -1 0 0 1 -615.7258 -167.9471 cm +1 0 0 1 -639.982 -257.6108 cm BT -/F37 9.9626 Tf 621.9026 183.4888 Td[(CAMBIAR)-1(E)-1069(NOM)1(E)-1070(P)96(AR)-1(AMETR)32(O)]TJ 0 -11.9552 Td[(NEL)-383(S)1(W)]TJ +/F37 9.9626 Tf 646.1588 285.1077 Td[(CAMBIAR)-1(E)-1069(NOM)1(E)-1070(P)96(AR)-1(AMETR)32(O)]TJ 0 -11.9552 Td[(NEL)-655(S)1(W)]TJ/F8 9.9626 Tf 53.9599 0 Td[(n)28(u)1(m)27(b)-27(e)-1(r)-569(of)-570(o)28(v)28(e)-1(rl)1(ap)-570(in)-569(the)-571(b)1(as)-1(i)1(c)]TJ -53.9599 -11.9551 Td[(Sc)28(h)28(w)28(arz)-334(p)1(re)-1(cond)1(ition)1(e)-1(r)]TJ ET -1 0 0 1 826.1062 167.9471 cm +1 0 0 1 850.3623 257.6108 cm q []0 d 0 J 0.3985 w 0.1992 0 m -0.1992 23.9103 l +0.1992 35.8655 l S Q -1 0 0 1 -463.5299 -11.9552 cm +1 0 0 1 -512.0422 -35.8655 cm q []0 d 0 J 0.3985 w 0.1992 0 m -0.1992 11.9552 l +0.1992 35.8655 l S Q -1 0 0 1 -362.5763 -155.9919 cm +1 0 0 1 -338.3201 -221.7453 cm BT -/F40 9.9626 Tf 368.7531 159.5785 Td[(mld_sub_restr_)]TJ +/F39 9.9626 Tf 344.497 249.2422 Td[(mld_sub_restr_)]TJ ET -1 0 0 1 452.9866 155.9919 cm +1 0 0 1 428.7304 221.7453 cm q []0 d 0 J 0.3985 w 0.1992 0 m -0.1992 11.9552 l +0.1992 35.8655 l S Q -1 0 0 1 52.1666 0 cm +1 0 0 1 -428.7304 -221.7453 cm +BT +/F39 9.9626 Tf 434.9073 249.2422 Td[(character\050len=*\051)]TJ +ET +1 0 0 1 524.371 221.7453 cm q []0 d 0 J 0.3985 w 0.1992 0 m -0.1992 11.9552 l +0.1992 35.8655 l S Q -1 0 0 1 68.6481 0 cm +1 0 0 1 -524.371 -221.7453 cm +BT +/F8 9.9626 Tf 530.5479 249.2422 Td[('HALO')]TJ 0 -11.9552 Td[('NONE)1(')]TJ +ET +1 0 0 1 593.0191 221.7453 cm q []0 d 0 J 0.3985 w 0.1992 0 m -0.1992 11.9552 l +0.1992 35.8655 l S Q -1 0 0 1 41.9245 0 cm +1 0 0 1 -593.0191 -221.7453 cm +BT +/F8 9.9626 Tf 599.196 249.2422 Td[('HALO')]TJ +ET +1 0 0 1 639.982 221.7453 cm q []0 d 0 J 0.3985 w 0.1992 0 m -0.1992 11.9552 l +0.1992 35.8655 l S Q -1 0 0 1 210.3804 0 cm +1 0 0 1 -639.982 -221.7453 cm +BT +/F8 9.9626 Tf 646.1588 249.2422 Td[(t)28(yp)-27(e)-681(of)-680(re)-1(stri)1(c)-1(ti)1(on)-681(op)-27(erator)-680(use)-1(d)-680(in)-680(b)1(as)-1(ic)]TJ 0 -11.9552 Td[(Sc)28(h)28(w)28(arz)-529(pr)1(e)-1(cond)1(ition)1(e)-1(r)1(:)-835('HALO)1(')-528(for)-528(taki)1(ng)]TJ 0 -11.9551 Td[(in)28(t)1(o)-334(acc)-1(ou)1(n)28(t)-333(c)-1(on)29(trib)1(ution)1(s)-334(fr)1(om)-334(th)1(e)-334(o)28(v)28(e)-1(r)1(lap)]TJ +ET +1 0 0 1 850.3623 221.7453 cm q []0 d 0 J 0.3985 w 0.1992 0 m -0.1992 11.9552 l +0.1992 35.8655 l S Q -1 0 0 1 -463.5299 -11.9552 cm +1 0 0 1 -512.0422 -35.8655 cm q []0 d 0 J 0.3985 w 0.1992 0 m -0.1992 11.9552 l +0.1992 35.8655 l S Q -1 0 0 1 -362.5763 -144.0367 cm +1 0 0 1 -338.3201 -185.8798 cm BT -/F40 9.9626 Tf 368.7532 147.6233 Td[(mld_sub_prol_)]TJ +/F39 9.9626 Tf 344.497 213.3767 Td[(mld_sub_prol_)]TJ ET -1 0 0 1 452.9866 144.0367 cm +1 0 0 1 428.7304 185.8798 cm q []0 d 0 J 0.3985 w 0.1992 0 m -0.1992 11.9552 l +0.1992 35.8655 l S Q -1 0 0 1 52.1666 0 cm +1 0 0 1 -428.7304 -185.8798 cm +BT +/F39 9.9626 Tf 434.9073 213.3767 Td[(character\050len=*\051)]TJ +ET +1 0 0 1 524.371 185.8798 cm q []0 d 0 J 0.3985 w 0.1992 0 m -0.1992 11.9552 l +0.1992 35.8655 l S Q -1 0 0 1 68.6481 0 cm +1 0 0 1 -524.371 -185.8798 cm +BT +/F8 9.9626 Tf 530.5479 213.3767 Td[('S)1(UM')]TJ 0 -11.9552 Td[('NONE)1(')]TJ +ET +1 0 0 1 593.0191 185.8798 cm q []0 d 0 J 0.3985 w 0.1992 0 m -0.1992 11.9552 l +0.1992 35.8655 l S Q -1 0 0 1 41.9245 0 cm +1 0 0 1 -593.0191 -185.8798 cm +BT +/F8 9.9626 Tf 599.196 213.3767 Td[('NONE)1(')]TJ +ET +1 0 0 1 639.982 185.8798 cm q []0 d 0 J 0.3985 w 0.1992 0 m -0.1992 11.9552 l +0.1992 35.8655 l S Q -1 0 0 1 210.3804 0 cm +1 0 0 1 -639.982 -185.8798 cm +BT +/F8 9.9626 Tf 646.1588 213.3767 Td[(t)28(yp)-27(e)-580(of)-580(p)1(rolon)1(gator)-579(op)-28(erator)-579(use)-1(d)-579(in)-579(b)1(as)-1(ic)]TJ 0 -11.9552 Td[(Sc)28(h)28(w)28(arz)-390(pr)1(e)-1(cond)1(ition)1(e)-1(r)1(:)-557('NONE)1(')-389(for)-389(neglec)-1(t-)]TJ 0 -11.9551 Td[(in)1(g)-334(con)28(tr)1(ibu)1(tions)-333(from)-333(the)-334(o)28(v)28(erlap)]TJ +ET +1 0 0 1 850.3623 185.8798 cm q []0 d 0 J 0.3985 w 0.1992 0 m -0.1992 11.9552 l +0.1992 35.8655 l S Q -1 0 0 1 -463.5299 -11.9552 cm +1 0 0 1 -512.0422 -71.731 cm q []0 d 0 J 0.3985 w 0.1992 0 m -0.1992 11.9552 l +0.1992 71.731 l S Q -1 0 0 1 -362.5763 -132.0815 cm +1 0 0 1 -338.3201 -114.1488 cm BT -/F40 9.9626 Tf 368.7532 135.6681 Td[(mld_sub_solve_)]TJ +/F39 9.9626 Tf 344.497 177.5112 Td[(mld_sub_solve_)]TJ ET -1 0 0 1 452.9866 132.0815 cm +1 0 0 1 428.7304 114.1488 cm q []0 d 0 J 0.3985 w 0.1992 0 m -0.1992 11.9552 l +0.1992 71.731 l S Q -1 0 0 1 52.1666 0 cm +1 0 0 1 -428.7304 -114.1488 cm +BT +/F39 9.9626 Tf 434.9073 177.5112 Td[(character\050len=*\051)]TJ +ET +1 0 0 1 524.371 114.1488 cm q []0 d 0 J 0.3985 w 0.1992 0 m -0.1992 11.9552 l +0.1992 71.731 l S Q -1 0 0 1 68.6481 0 cm +1 0 0 1 -524.371 -114.1488 cm +BT +/F8 9.9626 Tf 530.5479 177.5112 Td[('ILU')]TJ 0 -11.9552 Td[('M)1(I)-1(LU')]TJ 0 -11.9551 Td[('ILUT')]TJ 0 -11.9552 Td[('UM)1(F')]TJ 0 -11.9552 Td[('S)1(LU')]TJ +ET +1 0 0 1 593.0191 114.1488 cm q []0 d 0 J 0.3985 w 0.1992 0 m -0.1992 11.9552 l +0.1992 71.731 l S Q -1 0 0 1 41.9245 0 cm +1 0 0 1 -593.0191 -114.1488 cm +BT +/F8 9.9626 Tf 599.196 177.5112 Td[('UM)1(F')]TJ +ET +1 0 0 1 639.982 114.1488 cm q []0 d 0 J 0.3985 w 0.1992 0 m -0.1992 11.9552 l +0.1992 71.731 l S Q -1 0 0 1 210.3804 0 cm +1 0 0 1 -639.982 -114.1488 cm +BT +/F8 9.9626 Tf 646.1588 177.5112 Td[(a)28(v)56(ailabl)1(e)-557(lo)-27(c)-1(al)-556(solv)28(er:)-890('ILU')-555(for)-556(in)1(c)-1(omp)1(le)-1(te)]TJ 0 -11.9552 Td[(LU,)-747(')1(MILU')-746(for)-746(m)-1(o)-27(di\014)1(e)-1(d)-746(in)1(c)-1(omplete)-747(LU,)]TJ 0 -11.9551 Td[('ILUT')-664(for)-664(in)1(c)-1(omplete)-665(LU)-664(with)-664(thr)1(e)-1(shold)1(,)]TJ 0 -11.9552 Td[('UM)1(F')-351(f)1(or)-350(c)-1(ompl)1(e)-1(te)-351(LU)-350(usin)1(g)-351(UMF)1(P)83(A)28(CK)-350([)]TJ +ET +1 0 0 1 836.8353 141.6457 cm +0 1 0 rg 0 1 0 RG +1 0 0 1 -836.8353 -141.6457 cm +BT +/F8 9.9626 Tf 836.8353 141.6457 Td[(8)]TJ +ET +1 0 0 1 841.8166 141.6457 cm +0 g 0 G +1 0 0 1 -841.8166 -141.6457 cm +BT +/F8 9.9626 Tf 841.8166 141.6457 Td[(])]TJ -195.6578 -11.9552 Td[(v)28(ers)-1(i)1(on)-373(4.4,)-383('S)1(LU')-373(for)-373(complete)-374(LU)-373(usin)1(g)-374(S)1(u-)]TJ 0 -11.9551 Td[(p)-27(e)-1(r)1(LU)-334([)]TJ +ET +1 0 0 1 680.0872 117.7354 cm +0 1 0 rg 0 1 0 RG +1 0 0 1 -680.0872 -117.7354 cm +BT +/F8 9.9626 Tf 680.0872 117.7354 Td[(9)]TJ +ET +1 0 0 1 685.0686 117.7354 cm +0 g 0 G +1 0 0 1 -685.0686 -117.7354 cm +BT +/F8 9.9626 Tf 685.0686 117.7354 Td[(],)-333(v)28(ersion)-333(3.0)]TJ +ET +1 0 0 1 850.3623 114.1488 cm q []0 d 0 J 0.3985 w 0.1992 0 m -0.1992 11.9552 l +0.1992 71.731 l S Q -1 0 0 1 -463.5299 -23.9103 cm +1 0 0 1 -512.0422 -35.8655 cm q []0 d 0 J 0.3985 w 0.1992 0 m -0.1992 23.9103 l +0.1992 35.8655 l S Q -1 0 0 1 -362.5763 -108.1712 cm +1 0 0 1 -338.3201 -78.2833 cm BT -/F40 9.9626 Tf 368.7532 123.713 Td[(mld_sub_fillin_)]TJ +/F39 9.9626 Tf 344.497 105.7802 Td[(mld_sub_fillin_)]TJ ET -1 0 0 1 452.9866 108.1712 cm +1 0 0 1 428.7304 78.2833 cm q []0 d 0 J 0.3985 w 0.1992 0 m -0.1992 23.9103 l +0.1992 35.8655 l S Q -1 0 0 1 52.1666 0 cm +1 0 0 1 -428.7304 -78.2833 cm +BT +/F39 9.9626 Tf 434.9073 105.7802 Td[(integer)]TJ +ET +1 0 0 1 524.371 78.2833 cm q []0 d 0 J 0.3985 w 0.1992 0 m -0.1992 23.9103 l +0.1992 35.8655 l S Q -1 0 0 1 68.6481 0 cm +1 0 0 1 -524.371 -78.2833 cm +BT +/F8 9.9626 Tf 530.5479 105.7802 Td[(an)28(y)-826(n)28(um)28(b)-27(e)-1(r)]TJ/F14 9.9626 Tf 0 -11.9552 Td[(\025)]TJ/F8 9.9626 Tf 10.5161 0 Td[(0)]TJ +ET +1 0 0 1 593.0191 78.2833 cm q []0 d 0 J 0.3985 w 0.1992 0 m -0.1992 23.9103 l +0.1992 35.8655 l S Q -1 0 0 1 41.9245 0 cm +1 0 0 1 -593.0191 -78.2833 cm +BT +/F8 9.9626 Tf 599.196 105.7802 Td[(0)]TJ +ET +1 0 0 1 639.982 78.2833 cm q []0 d 0 J 0.3985 w 0.1992 0 m -0.1992 23.9103 l +0.1992 35.8655 l S Q -1 0 0 1 -615.7258 -108.1712 cm +1 0 0 1 -639.982 -78.2833 cm BT -/F37 9.9626 Tf 621.9027 123.713 Td[(CAMBIAR)-1(E)-1069(NOM)1(E)-1070(P)96(AR)-1(AMETR)32(O)]TJ 0 -11.9552 Td[(NEL)-383(S)1(W)]TJ +/F37 9.9626 Tf 646.1588 105.7802 Td[(CAMBIAR)-1(E)-1069(NOM)1(E)-1070(P)96(AR)-1(AMETR)32(O)]TJ 0 -11.9552 Td[(NEL)-468(SW)]TJ/F8 9.9626 Tf 50.4925 0 Td[(\014l)1(l-in)-408(lev)28(e)-1(l)-407(for)-408('ILU')1(,)-408('MILU')-408(an)1(d)]TJ -50.4925 -11.9551 Td[('ILUT')-333(of)-333(lo)-28(cal)-333(blo)-27(c)27(ks)]TJ ET -1 0 0 1 826.1062 108.1712 cm +1 0 0 1 850.3623 78.2833 cm q []0 d 0 J 0.3985 w 0.1992 0 m -0.1992 23.9103 l +0.1992 35.8655 l S Q -1 0 0 1 -463.5299 -11.9552 cm +1 0 0 1 -512.0422 -47.8207 cm q []0 d 0 J 0.3985 w 0.1992 0 m -0.1992 11.9552 l +0.1992 47.8207 l S Q -1 0 0 1 -362.5763 -96.216 cm +1 0 0 1 -338.3201 -30.4626 cm BT -/F40 9.9626 Tf 368.7532 99.8026 Td[(mld_sub_thresh_)]TJ +/F39 9.9626 Tf 344.497 69.9147 Td[(mld_sub_thresh_)]TJ ET -1 0 0 1 452.9866 96.216 cm +1 0 0 1 428.7304 30.4626 cm q []0 d 0 J 0.3985 w 0.1992 0 m -0.1992 11.9552 l +0.1992 47.8207 l S Q -1 0 0 1 52.1666 0 cm +1 0 0 1 -428.7304 -30.4626 cm +BT +/F39 9.9626 Tf 434.9073 69.9147 Td[(real)]TJ +ET +1 0 0 1 524.371 30.4626 cm q []0 d 0 J 0.3985 w 0.1992 0 m -0.1992 11.9552 l +0.1992 47.8207 l S Q -1 0 0 1 68.6481 0 cm +1 0 0 1 -524.371 -30.4626 cm +BT +/F8 9.9626 Tf 530.5479 69.9147 Td[(an)28(y)-826(n)28(um)28(b)-27(e)-1(r)]TJ/F14 9.9626 Tf 0 -11.9552 Td[(\025)]TJ/F8 9.9626 Tf 10.5161 0 Td[(0)]TJ/F11 9.9626 Tf 4.9813 0 Td[(:)]TJ +ET +1 0 0 1 593.0191 30.4626 cm q []0 d 0 J 0.3985 w 0.1992 0 m -0.1992 11.9552 l +0.1992 47.8207 l S Q -1 0 0 1 41.9245 0 cm +1 0 0 1 -593.0191 -30.4626 cm +BT +/F8 9.9626 Tf 599.196 69.9147 Td[(0.)]TJ +ET +1 0 0 1 639.982 30.4626 cm q []0 d 0 J 0.3985 w 0.1992 0 m -0.1992 11.9552 l +0.1992 47.8207 l S Q -1 0 0 1 210.3804 0 cm +1 0 0 1 -639.982 -30.4626 cm +BT +/F8 9.9626 Tf 646.1588 69.9147 Td[(dr)1(op)-561(tol)1(e)-1(r)1(ance)-562(f)1(or)-561('ILUT')]TJ/F37 9.9626 Tf 123.5788 0 Td[(NEL)1(LA)-645(DOC)1(-)]TJ -123.5788 -11.9552 Td[(UM)1(ENT)96(A)-1(Z)1(IONE)-819(I)-1(NTE)1(R)-1(NA)-820(DE)1(LLA)]TJ 0 -11.9551 Td[(R)31(O)1(UTINE)-1031(DI)-1032(F)128(A)96(TTOR)-1(IZ)1(ZA)-1(Z)1(I)-1(O)1(NE)]TJ 0 -11.9552 Td[(C'E')-383(INTER)31(O)1(,)-384(CAMBIAR)-1(E!)]TJ +ET +1 0 0 1 850.3623 30.4626 cm q []0 d 0 J 0.3985 w 0.1992 0 m -0.1992 11.9552 l +0.1992 47.8207 l S Q -1 0 0 1 -463.5299 -23.9103 cm +1 0 0 1 -512.0422 -59.7758 cm q []0 d 0 J 0.3985 w 0.1992 0 m -0.1992 23.9103 l +0.1992 59.7758 l S Q -1 0 0 1 -362.5763 -72.3057 cm +1 0 0 1 -338.3201 29.3132 cm BT -/F40 9.9626 Tf 368.7532 87.8475 Td[(mld_sub_ren_)]TJ +/F39 9.9626 Tf 344.497 22.094 Td[(mld_sub_ren_)]TJ ET -1 0 0 1 452.9866 72.3057 cm +1 0 0 1 428.7304 -29.3132 cm q []0 d 0 J 0.3985 w 0.1992 0 m -0.1992 23.9103 l +0.1992 59.7758 l S Q -1 0 0 1 52.1666 0 cm +1 0 0 1 -428.7304 29.3132 cm +BT +/F39 9.9626 Tf 434.9073 22.094 Td[(character\050len=*\051)]TJ +ET +1 0 0 1 524.371 -29.3132 cm q []0 d 0 J 0.3985 w 0.1992 0 m -0.1992 23.9103 l +0.1992 59.7758 l S Q -1 0 0 1 68.6481 0 cm +1 0 0 1 -524.371 29.3132 cm +BT +/F37 9.9626 Tf 530.5479 22.094 Td[(MANCA)]TJ 0 -11.9552 Td[(CO)1(ST)96(A)-1(NTE)]TJ 0 -11.9551 Td[(STRING)-1(A)]TJ 0 -11.9552 Td[(ASSOCI-)]TJ 0 -11.9552 Td[(A)95(T)96(A)]TJ +ET +1 0 0 1 593.0191 -29.3132 cm q []0 d 0 J 0.3985 w 0.1992 0 m -0.1992 23.9103 l +0.1992 59.7758 l S Q -1 0 0 1 41.9245 0 cm +1 0 0 1 46.9629 0 cm q []0 d 0 J 0.3985 w 0.1992 0 m -0.1992 23.9103 l +0.1992 59.7758 l S Q -1 0 0 1 -615.7258 -72.3057 cm +1 0 0 1 -639.982 29.3132 cm BT -/F37 9.9626 Tf 621.9027 87.8475 Td[(MANCA)-564(C)1(OST)96(A)-1(NTE)-563(STRINGA)-564(A)-1(S-)]TJ 0 -11.9552 Td[(SOC)1(IA)95(T)96(A)]TJ +/F8 9.9626 Tf 646.1588 22.094 Td[(reord)1(e)-1(r)1(ing)-333(algori)1(thm)-333(for)-333(the)-333(lo)-28(cal)-333(blo)-28(c)28(ks)]TJ ET -1 0 0 1 826.1062 72.3057 cm +1 0 0 1 850.3623 -29.3132 cm q []0 d 0 J 0.3985 w 0.1992 0 m -0.1992 23.9103 l +0.1992 59.7758 l S Q -1 0 0 1 -463.3306 -0.3985 cm +1 0 0 1 -511.8429 -0.3985 cm q []0 d 0 J 0.3985 w 0 0.1992 m -463.5299 0.1992 l +512.0422 0.1992 l S Q -1 0 0 1 64.8074 -28.3935 cm +1 0 0 1 89.0635 -28.3935 cm 0 g 0 G -1 0 0 1 -427.583 -43.5137 cm +1 0 0 1 -427.5829 58.1052 cm BT -/F8 9.9626 Tf 427.583 43.5137 Td[(T)83(ab)1(le)-334(3:)-444(P)28(aramete)-1(r)1(s)-334(de\014n)1(ing)-333(the)-333(basic)-334(on)1(e)-1(-lev)28(e)-1(l)-333(pr)1(e)-1(cond)1(ition)1(e)-1(r)-333(\050smo)-28(other\051.)]TJ +/F8 9.9626 Tf 427.583 -58.1052 Td[(T)83(ab)1(le)-334(3:)-444(P)28(aramete)-1(r)1(s)-334(de\014n)1(ing)-333(the)-333(basic)-334(on)1(e)-1(-lev)28(e)-1(l)-333(pr)1(e)-1(cond)1(ition)1(e)-1(r)-333(\050smo)-28(other\051.)]TJ ET -1 0 0 1 761.4981 43.5137 cm +1 0 0 1 761.498 -58.1052 cm 0 g 0 G -1 0 0 1 130.9254 76.8119 cm +1 0 0 1 130.9254 178.4308 cm 0 g 0 G 1 0 0 1 -595.7659 0 cm Q @@ -3806,33 +4055,47 @@ ET 0 g 0 G endstream endobj -263 0 obj << +278 0 obj << /Type /Page -/Contents 264 0 R -/Resources 262 0 R +/Contents 279 0 R +/Resources 277 0 R /MediaBox [0 0 595.2756 841.8898] -/Parent 221 0 R -/Annots [ 266 0 R ] +/Parent 241 0 R +/Annots [ 281 0 R 282 0 R 283 0 R ] >> endobj -266 0 obj << +281 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [123.8057 740.0018 130.7796 748.9129] /Subtype /Link -/A << /S /GoTo /D (section.1) >> +/A << /S /GoTo /D (section.5) >> >> endobj -265 0 obj << -/D [263 0 R /XYZ 124.802 740.9981 null] +282 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[0 1 0] +/Rect [835.839 140.6494 842.8129 149.0623] +/Subtype /Link +/A << /S /GoTo /D (cite.UMFPACK) >> >> endobj -267 0 obj << -/D [263 0 R /XYZ 467.1568 55.4688 null] +283 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[0 1 0] +/Rect [679.091 116.7391 686.0648 125.152] +/Subtype /Link +/A << /S /GoTo /D (cite.SUPERLU) >> >> endobj -262 0 obj << -/Font << /F34 129 0 R /F8 91 0 R /F40 175 0 R /F19 132 0 R /F14 139 0 R /F37 109 0 R >> +280 0 obj << +/D [278 0 R /XYZ 124.802 740.9981 null] +>> endobj +284 0 obj << +/D [278 0 R /XYZ 467.1568 -46.1501 null] +>> endobj +277 0 obj << +/Font << /F34 134 0 R /F8 95 0 R /F39 181 0 R /F19 137 0 R /F14 145 0 R /F37 113 0 R /F11 142 0 R >> /ProcSet [ /PDF /Text ] >> endobj -270 0 obj << -/Length 4922 +288 0 obj << +/Length 7591 >> stream 1 0 0 1 124.802 740.9981 cm @@ -3840,13 +4103,13 @@ stream 0 0 1 rg 0 0 1 RG 1 0 0 1 -124.802 -740.9981 cm BT -/F34 9.9626 Tf 124.802 740.9981 Td[(1)]TJ +/F34 9.9626 Tf 124.802 740.9981 Td[(5)]TJ ET 1 0 0 1 129.7833 740.9981 cm 0 g 0 G 1 0 0 1 -129.7833 -740.9981 cm BT -/F34 9.9626 Tf 133.1042 740.9981 Td[(General)-333(Ov)28(ervi)1(e)-1(w)]TJ +/F34 9.9626 Tf 133.1042 740.9981 Td[(Use)-1(r)-333(In)28(terf)1(ac)-1(e)]TJ ET 1 0 0 1 124.802 739.4042 cm q @@ -3854,12 +4117,12 @@ q 0 J 0.3985 w 0 0.1992 m -86.1908 0.1992 l +69.2958 0.1992 l S Q 1 0 0 1 -124.802 -739.4042 cm BT -/F8 9.9626 Tf 458.5504 740.9981 Td[(15)]TJ +/F8 9.9626 Tf 458.5504 740.9981 Td[(14)]TJ ET 1 0 0 1 468.5131 740.9981 cm 0 g 0 G @@ -3868,19 +4131,19 @@ ET 1 0 0 1 171.8555 -595.7659 cm q 0 1 -1 0 0 0 cm 0 g 0 G -1 0 0 1 58.5216 14.8886 cm +1 0 0 1 21.812 14.8886 cm 0 g 0 G 0 g 0 G -1 0 0 1 4.9813 38.5554 cm +1 0 0 1 4.9814 80.3985 cm q []0 d 0 J 0.3985 w 0 0.1992 m -468.7602 0.1992 l +542.1792 0.1992 l S Q -1 0 0 1 -0.1992 -11.9552 cm +1 0 0 1 -0.1993 -11.9552 cm q []0 d 0 J @@ -3889,11 +4152,11 @@ q 0.1992 11.9552 l S Q -1 0 0 1 -359.9612 -161.8144 cm +1 0 0 1 -323.2516 -203.6575 cm BT -/F40 9.9626 Tf 366.138 165.401 Td[(what)]TJ +/F39 9.9626 Tf 329.4285 207.2441 Td[(what)]TJ ET -1 0 0 1 455.6018 161.8145 cm +1 0 0 1 418.8923 203.6575 cm q []0 d 0 J @@ -3902,11 +4165,11 @@ q 0.1992 11.9552 l S Q -1 0 0 1 -455.6018 -161.8145 cm +1 0 0 1 -418.8923 -203.6575 cm BT -/F19 9.9626 Tf 461.7786 165.4011 Td[(data)-358(t)-1(y)1(p)51(e)]TJ +/F19 9.9626 Tf 425.0691 207.2441 Td[(data)-358(t)-1(y)1(p)51(e)]TJ ET -1 0 0 1 507.7684 161.8145 cm +1 0 0 1 514.5329 203.6575 cm q []0 d 0 J @@ -3915,11 +4178,11 @@ q 0.1992 11.9552 l S Q -1 0 0 1 -507.7684 -161.8145 cm +1 0 0 1 -514.5329 -203.6575 cm BT -/F40 9.9626 Tf 513.9452 165.4011 Td[(val)]TJ +/F39 9.9626 Tf 520.7097 207.2441 Td[(val)]TJ ET -1 0 0 1 576.4164 161.8145 cm +1 0 0 1 583.181 203.6575 cm q []0 d 0 J @@ -3928,11 +4191,11 @@ q 0.1992 11.9552 l S Q -1 0 0 1 -576.4164 -161.8145 cm +1 0 0 1 -583.181 -203.6575 cm BT -/F19 9.9626 Tf 582.5933 165.4011 Td[(defaul)1(t)]TJ +/F19 9.9626 Tf 589.3578 207.2441 Td[(defaul)1(t)]TJ ET -1 0 0 1 618.341 161.8145 cm +1 0 0 1 655.0505 203.6575 cm q []0 d 0 J @@ -3941,11 +4204,11 @@ q 0.1992 11.9552 l S Q -1 0 0 1 -618.341 -161.8145 cm +1 0 0 1 -655.0505 -203.6575 cm BT -/F19 9.9626 Tf 624.5178 165.4011 Td[(c)51(omments)]TJ +/F19 9.9626 Tf 661.2273 207.2441 Td[(c)51(omments)]TJ ET -1 0 0 1 828.7213 161.8145 cm +1 0 0 1 865.4308 203.6575 cm q []0 d 0 J @@ -3954,295 +4217,355 @@ q 0.1992 11.9552 l S Q -1 0 0 1 -468.5609 -0.3985 cm +1 0 0 1 -541.9799 -0.3985 cm q []0 d 0 J 0.3985 w 0 0.1992 m -468.7602 0.1992 l +542.1792 0.1992 l S Q -1 0 0 1 -0.1993 -11.9552 cm +1 0 0 1 -0.1993 -23.9103 cm q []0 d 0 J 0.3985 w 0.1992 0 m -0.1992 11.9552 l +0.1992 23.9103 l S Q -1 0 0 1 -359.9611 -149.4608 cm +1 0 0 1 -323.2516 -179.3487 cm BT -/F40 9.9626 Tf 366.138 153.0474 Td[(mld_aggr_alg_)]TJ +/F39 9.9626 Tf 329.4285 194.8905 Td[(mld_aggr_alg_)]TJ ET -1 0 0 1 455.6018 149.4608 cm +1 0 0 1 418.8923 179.3487 cm q []0 d 0 J 0.3985 w 0.1992 0 m -0.1992 11.9552 l +0.1992 23.9103 l S Q -1 0 0 1 52.1666 0 cm +1 0 0 1 -418.8923 -179.3487 cm +BT +/F39 9.9626 Tf 425.0691 194.8905 Td[(character\050len=*\051)]TJ +ET +1 0 0 1 514.5329 179.3487 cm q []0 d 0 J 0.3985 w 0.1992 0 m -0.1992 11.9552 l +0.1992 23.9103 l S Q -1 0 0 1 68.648 0 cm +1 0 0 1 -514.5329 -179.3487 cm +BT +/F8 9.9626 Tf 520.7097 194.8905 Td[('DE)1(C')]TJ +ET +1 0 0 1 583.181 179.3487 cm q []0 d 0 J 0.3985 w 0.1992 0 m -0.1992 11.9552 l +0.1992 23.9103 l S Q -1 0 0 1 41.9246 0 cm +1 0 0 1 -583.181 -179.3487 cm +BT +/F8 9.9626 Tf 589.3578 194.8905 Td[('DE)1(C')]TJ +ET +1 0 0 1 655.0505 179.3487 cm q []0 d 0 J 0.3985 w 0.1992 0 m -0.1992 11.9552 l +0.1992 23.9103 l S Q -1 0 0 1 210.3804 0 cm +1 0 0 1 -655.0505 -179.3487 cm +BT +/F8 9.9626 Tf 661.2273 194.8905 Td[(de\014n)1(e)-336(the)-336(aggregation)-335(sc)27(heme)-1(.)-451(No)28(w)-1(,)-336(on)1(ly)-336(d)1(e)-1(-)]TJ 0 -11.9552 Td[(coupl)1(e)-1(d)-333(aggr)1(e)-1(gati)1(on)-333(is)-334(a)28(v)56(ailabl)1(e)]TJ +ET +1 0 0 1 865.4308 179.3487 cm q []0 d 0 J 0.3985 w 0.1992 0 m -0.1992 11.9552 l +0.1992 23.9103 l S Q -1 0 0 1 -468.7602 -11.9552 cm +1 0 0 1 -542.1792 -23.9103 cm q []0 d 0 J 0.3985 w 0.1992 0 m -0.1992 11.9552 l +0.1992 23.9103 l S Q -1 0 0 1 -359.9612 -137.5056 cm +1 0 0 1 -323.2516 -155.4384 cm BT -/F40 9.9626 Tf 366.138 141.0922 Td[(mld_aggr_kind_)]TJ +/F39 9.9626 Tf 329.4285 170.9801 Td[(mld_aggr_kind_)]TJ ET -1 0 0 1 455.6018 137.5056 cm +1 0 0 1 418.8923 155.4384 cm q []0 d 0 J 0.3985 w 0.1992 0 m -0.1992 11.9552 l +0.1992 23.9103 l S Q -1 0 0 1 52.1666 0 cm +1 0 0 1 -418.8923 -155.4384 cm +BT +/F39 9.9626 Tf 425.0691 170.9801 Td[(character\050len=*\051)]TJ +ET +1 0 0 1 514.5329 155.4384 cm q []0 d 0 J 0.3985 w 0.1992 0 m -0.1992 11.9552 l +0.1992 23.9103 l S Q -1 0 0 1 68.6481 0 cm +1 0 0 1 -514.5329 -155.4384 cm +BT +/F8 9.9626 Tf 520.7097 170.9801 Td[('S)1(MOOTH',)]TJ 0 -11.9551 Td[('RA)111(W')]TJ +ET +1 0 0 1 583.181 155.4384 cm q []0 d 0 J 0.3985 w 0.1992 0 m -0.1992 11.9552 l +0.1992 23.9103 l S Q -1 0 0 1 41.9245 0 cm +1 0 0 1 -583.181 -155.4384 cm +BT +/F8 9.9626 Tf 589.3578 170.9801 Td[('S)1(MOOTH')]TJ +ET +1 0 0 1 655.0505 155.4384 cm q []0 d 0 J 0.3985 w 0.1992 0 m -0.1992 11.9552 l +0.1992 23.9103 l S Q -1 0 0 1 210.3804 0 cm +1 0 0 1 -655.0505 -155.4384 cm +BT +/F8 9.9626 Tf 661.2273 170.9801 Td[(de\014n)1(e)-806(th)1(e)-806(t)28(y)1(p)-28(e)-805(of)-805(aggregation)-804(te)-1(c)28(hn)1(ique)]TJ 0 -11.9551 Td[(\050sm)-1(o)-27(othed)-333(or)-333(non)1(s)-1(mo)-28(oth)1(e)-1(d)1(\051.)]TJ +ET +1 0 0 1 865.4308 155.4384 cm q []0 d 0 J 0.3985 w 0.1992 0 m -0.1992 11.9552 l +0.1992 23.9103 l S Q -1 0 0 1 -468.7602 -11.9551 cm +1 0 0 1 -542.1792 -23.9103 cm q []0 d 0 J 0.3985 w 0.1992 0 m -0.1992 11.9552 l +0.1992 23.9103 l S Q -1 0 0 1 -359.9611 -125.5505 cm +1 0 0 1 -323.2516 -131.5281 cm BT -/F40 9.9626 Tf 366.138 129.1371 Td[(mld_aggr_thresh_)]TJ +/F39 9.9626 Tf 329.4285 147.0698 Td[(mld_aggr_thresh_)]TJ ET -1 0 0 1 455.6017 125.5505 cm +1 0 0 1 418.8923 131.5281 cm q []0 d 0 J 0.3985 w 0.1992 0 m -0.1992 11.9552 l +0.1992 23.9103 l S Q -1 0 0 1 52.1666 0 cm +1 0 0 1 -418.8923 -131.5281 cm +BT +/F39 9.9626 Tf 425.0691 147.0698 Td[(real)]TJ +ET +1 0 0 1 514.5329 131.5281 cm q []0 d 0 J 0.3985 w 0.1992 0 m -0.1992 11.9552 l +0.1992 23.9103 l S Q -1 0 0 1 68.6481 0 cm +1 0 0 1 -514.5329 -131.5281 cm +BT +/F8 9.9626 Tf 520.7097 147.0698 Td[(an)28(y)-826(n)28(um)28(b)-27(e)-1(r)]TJ/F14 9.9626 Tf 0 -11.9552 Td[(2)]TJ/F8 9.9626 Tf 9.4091 0 Td[([0)]TJ/F11 9.9626 Tf 7.7488 0 Td[(;)]TJ/F8 9.9626 Tf 4.4278 0 Td[(1])]TJ +ET +1 0 0 1 583.181 131.5281 cm q []0 d 0 J 0.3985 w 0.1992 0 m -0.1992 11.9552 l +0.1992 23.9103 l S Q -1 0 0 1 41.9246 0 cm +1 0 0 1 -583.181 -131.5281 cm +BT +/F8 9.9626 Tf 589.3578 147.0698 Td[(0.)]TJ +ET +1 0 0 1 655.0505 131.5281 cm q []0 d 0 J 0.3985 w 0.1992 0 m -0.1992 11.9552 l +0.1992 23.9103 l S Q -1 0 0 1 210.3803 0 cm +1 0 0 1 -655.0505 -131.5281 cm +BT +/F8 9.9626 Tf 661.2273 147.0698 Td[(dr)1(opp)1(ing)-333(th)1(re)-1(shol)1(d)-333(in)-333(aggregation)]TJ +ET +1 0 0 1 865.4308 131.5281 cm q []0 d 0 J 0.3985 w 0.1992 0 m -0.1992 11.9552 l +0.1992 23.9103 l S Q -1 0 0 1 -468.7602 -23.9104 cm +1 0 0 1 -542.1792 -71.731 cm q []0 d 0 J 0.3985 w 0.1992 0 m -0.1992 23.9103 l +0.1992 71.731 l S Q -1 0 0 1 -359.9611 -101.6401 cm +1 0 0 1 -323.2516 -59.7971 cm BT -/F40 9.9626 Tf 366.138 117.1819 Td[(mld_aggr_eig_)]TJ +/F39 9.9626 Tf 329.4285 123.1595 Td[(mld_aggr_eig_)]TJ ET -1 0 0 1 455.6017 101.6401 cm +1 0 0 1 418.8923 59.7971 cm q []0 d 0 J 0.3985 w 0.1992 0 m -0.1992 23.9103 l +0.1992 71.731 l S Q -1 0 0 1 52.1666 0 cm +1 0 0 1 -418.8923 -59.7971 cm +BT +/F39 9.9626 Tf 425.0691 123.1595 Td[(character\050len=*\051)]TJ +ET +1 0 0 1 514.5329 59.7971 cm q []0 d 0 J 0.3985 w 0.1992 0 m -0.1992 23.9103 l +0.1992 71.731 l S Q -1 0 0 1 68.6481 0 cm +1 0 0 1 -514.5329 -59.7971 cm +BT +/F37 9.9626 Tf 520.7097 123.1595 Td[(MANCA)]TJ 0 -11.9552 Td[(STRING)-1(A)]TJ 0 -11.9551 Td[(CO)1(R)-1(-)]TJ 0 -11.9552 Td[(RI)-1(S)1(P)-1(O)1(N-)]TJ 0 -11.9552 Td[(DE)1(NTE)-1039(a)]TJ 0 -11.9551 Td[(ml)-1(d)]TJ +ET +1 0 0 1 540.4921 63.3836 cm q []0 d 0 J 0.3985 w -0.1992 0 m -0.1992 23.9103 l +0 0.1992 m +3.4371 0.1992 l S Q -1 0 0 1 41.9246 0 cm +1 0 0 1 -540.4921 -63.3836 cm +BT +/F37 9.9626 Tf 543.9292 63.3836 Td[(max)]TJ +ET +1 0 0 1 565.7801 63.3836 cm q []0 d 0 J 0.3985 w -0.1992 0 m -0.1992 23.9103 l +0 0.1992 m +3.4371 0.1992 l S Q -1 0 0 1 -618.341 -101.6401 cm +1 0 0 1 -565.7801 -63.3836 cm BT -/F37 9.9626 Tf 624.5178 117.1819 Td[(MANCA)-1259(STRINGA)-1259(CORR)-1(ISPON-)]TJ 0 -11.9552 Td[(DE)1(NTE)-383(a)-384(ml)-1(d)]TJ +/F37 9.9626 Tf 569.2172 63.3836 Td[(norm)]TJ ET -1 0 0 1 698.2849 105.2267 cm +1 0 0 1 583.181 59.797 cm q []0 d 0 J 0.3985 w -0 0.1992 m -3.4371 0.1992 l +0.1992 0 m +0.1992 71.731 l S Q -1 0 0 1 -698.2849 -105.2267 cm +1 0 0 1 -583.181 -59.797 cm BT -/F37 9.9626 Tf 701.722 105.2267 Td[(max)]TJ +/F8 9.9626 Tf 589.3578 123.1595 Td[('ANORM)1(')-111(??)-1(?)]TJ ET -1 0 0 1 723.5729 105.2267 cm +1 0 0 1 655.0505 59.797 cm q []0 d 0 J 0.3985 w -0 0.1992 m -3.4371 0.1992 l +0.1992 0 m +0.1992 71.731 l S Q -1 0 0 1 -723.5729 -105.2267 cm +1 0 0 1 -655.0505 -59.797 cm BT -/F37 9.9626 Tf 727.0101 105.2267 Td[(nor)1(m)]TJ +/F8 9.9626 Tf 661.2273 123.1595 Td[(de\014n)1(e)-259(the)-259(algori)1(thm)-259(to)-259(ev)56(aluate)-259(th)1(e)-260(maxim)28(um)]TJ 0 -11.9552 Td[(eige)-1(n)29(v)55(al)1(ue)-251(of)]TJ/F11 9.9626 Tf 57.3022 0 Td[(D)]TJ/F13 6.9738 Tf 8.525 3.6154 Td[(\000)]TJ/F7 6.9738 Tf 6.2267 0 Td[(1)]TJ/F11 9.9626 Tf 4.4693 -3.6154 Td[(A)]TJ/F8 9.9626 Tf 9.9711 0 Td[(for)-250(s)-1(mo)-28(oth)1(e)-1(d)-250(aggregation)1(.)]TJ -86.4943 -11.9552 Td[(No)28(w,)-378(only)-368(the)-369(A-)-1(n)1(orm)-369(of)-369(th)1(e)-370(matrix)-368(is)-370(a)28(v)56(ail-)]TJ 0 -11.9551 Td[(abl)1(e)]TJ ET -1 0 0 1 828.7213 101.6401 cm +1 0 0 1 865.4308 59.797 cm q []0 d 0 J 0.3985 w 0.1992 0 m -0.1992 23.9103 l +0.1992 71.731 l S Q -1 0 0 1 -468.5609 -0.3985 cm +1 0 0 1 -541.9799 -0.3985 cm q []0 d 0 J 0.3985 w 0 0.1992 m -468.7602 0.1992 l +542.1792 0.1992 l S Q -1 0 0 1 109.4179 -27.84 cm +1 0 0 1 146.1274 -27.84 cm 0 g 0 G -1 0 0 1 -469.5783 -73.4016 cm +1 0 0 1 -469.5783 -31.5585 cm BT -/F8 9.9626 Tf 469.5783 73.4016 Td[(T)83(ab)1(le)-334(4:)-444(P)28(aramete)-1(r)1(s)-334(de\014n)1(ing)-333(the)-333(aggregation)-333(algor)1(ithm.)]TJ +/F8 9.9626 Tf 469.5783 31.5585 Td[(T)83(ab)1(le)-334(4:)-444(P)28(aramete)-1(r)1(s)-334(de\014n)1(ing)-333(the)-333(aggregation)-333(algor)1(ithm.)]TJ ET -1 0 0 1 719.5027 73.4016 cm +1 0 0 1 719.5027 31.5585 cm 0 g 0 G -1 0 0 1 172.9207 46.924 cm +1 0 0 1 172.9207 88.7671 cm 0 g 0 G 1 0 0 1 -595.7658 0 cm Q @@ -4254,33 +4577,33 @@ ET 0 g 0 G endstream endobj -269 0 obj << +287 0 obj << /Type /Page -/Contents 270 0 R -/Resources 268 0 R +/Contents 288 0 R +/Resources 286 0 R /MediaBox [0 0 595.2756 841.8898] -/Parent 274 0 R -/Annots [ 272 0 R ] +/Parent 241 0 R +/Annots [ 290 0 R ] >> endobj -272 0 obj << +290 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [123.8057 740.0018 130.7796 748.9129] /Subtype /Link -/A << /S /GoTo /D (section.1) >> +/A << /S /GoTo /D (section.5) >> >> endobj -271 0 obj << -/D [269 0 R /XYZ 124.802 740.9981 null] +289 0 obj << +/D [287 0 R /XYZ 124.802 740.9981 null] >> endobj -273 0 obj << -/D [269 0 R /XYZ 509.1522 85.3568 null] +291 0 obj << +/D [287 0 R /XYZ 509.1522 43.5137 null] >> endobj -268 0 obj << -/Font << /F34 129 0 R /F8 91 0 R /F40 175 0 R /F19 132 0 R /F37 109 0 R >> +286 0 obj << +/Font << /F34 134 0 R /F8 95 0 R /F39 181 0 R /F19 137 0 R /F14 145 0 R /F11 142 0 R /F37 113 0 R /F13 249 0 R /F7 252 0 R >> /ProcSet [ /PDF /Text ] >> endobj -277 0 obj << -/Length 6120 +294 0 obj << +/Length 11455 >> stream 1 0 0 1 124.802 740.9981 cm @@ -4288,13 +4611,13 @@ stream 0 0 1 rg 0 0 1 RG 1 0 0 1 -124.802 -740.9981 cm BT -/F34 9.9626 Tf 124.802 740.9981 Td[(1)]TJ +/F34 9.9626 Tf 124.802 740.9981 Td[(5)]TJ ET 1 0 0 1 129.7833 740.9981 cm 0 g 0 G 1 0 0 1 -129.7833 -740.9981 cm BT -/F34 9.9626 Tf 133.1042 740.9981 Td[(General)-333(Ov)28(ervi)1(e)-1(w)]TJ +/F34 9.9626 Tf 133.1042 740.9981 Td[(Use)-1(r)-333(In)28(terf)1(ac)-1(e)]TJ ET 1 0 0 1 124.802 739.4042 cm q @@ -4302,12 +4625,12 @@ q 0 J 0.3985 w 0 0.1992 m -86.1908 0.1992 l +69.2958 0.1992 l S Q 1 0 0 1 -124.802 -739.4042 cm BT -/F8 9.9626 Tf 458.5504 740.9981 Td[(16)]TJ +/F8 9.9626 Tf 458.5504 740.9981 Td[(15)]TJ ET 1 0 0 1 468.5131 740.9981 cm 0 g 0 G @@ -4316,16 +4639,16 @@ ET 1 0 0 1 171.8555 -595.7659 cm q 0 1 -1 0 0 0 cm 0 g 0 G -1 0 0 1 48.0609 14.8886 cm +1 0 0 1 22.9053 14.8886 cm 0 g 0 G 0 g 0 G -1 0 0 1 4.9813 56.4882 cm +1 0 0 1 4.9813 170.0623 cm q []0 d 0 J 0.3985 w 0 0.1992 m -489.6816 0.1992 l +539.9927 0.1992 l S Q 1 0 0 1 -0.1992 -11.9552 cm @@ -4337,11 +4660,11 @@ q 0.1992 11.9552 l S Q -1 0 0 1 -349.5005 -179.7472 cm +1 0 0 1 -324.3449 -293.3213 cm BT -/F40 9.9626 Tf 355.6773 183.3338 Td[(what)]TJ +/F39 9.9626 Tf 330.5217 296.9079 Td[(what)]TJ ET -1 0 0 1 466.0624 179.7472 cm +1 0 0 1 440.9069 293.3213 cm q []0 d 0 J @@ -4350,11 +4673,11 @@ q 0.1992 11.9552 l S Q -1 0 0 1 -466.0624 -179.7472 cm +1 0 0 1 -440.9069 -293.3213 cm BT -/F19 9.9626 Tf 472.2393 183.3338 Td[(data)-358(t)-1(y)1(p)51(e)]TJ +/F19 9.9626 Tf 447.0837 296.9079 Td[(data)-358(t)-1(y)1(p)51(e)]TJ ET -1 0 0 1 518.229 179.7472 cm +1 0 0 1 536.5475 293.3213 cm q []0 d 0 J @@ -4363,11 +4686,11 @@ q 0.1992 11.9552 l S Q -1 0 0 1 -518.229 -179.7472 cm +1 0 0 1 -536.5475 -293.3213 cm BT -/F40 9.9626 Tf 524.4059 183.3338 Td[(val)]TJ +/F39 9.9626 Tf 542.7243 296.9079 Td[(val)]TJ ET -1 0 0 1 586.8771 179.7472 cm +1 0 0 1 605.1956 293.3213 cm q []0 d 0 J @@ -4376,11 +4699,11 @@ q 0.1992 11.9552 l S Q -1 0 0 1 -586.8771 -179.7472 cm +1 0 0 1 -605.1956 -293.3213 cm BT -/F19 9.9626 Tf 593.054 183.3338 Td[(defaul)1(t)]TJ +/F19 9.9626 Tf 611.3724 296.9079 Td[(defaul)1(t)]TJ ET -1 0 0 1 628.8017 179.7472 cm +1 0 0 1 653.9572 293.3213 cm q []0 d 0 J @@ -4389,11 +4712,11 @@ q 0.1992 11.9552 l S Q -1 0 0 1 -628.8017 -179.7472 cm +1 0 0 1 -653.9572 -293.3213 cm BT -/F19 9.9626 Tf 634.9785 183.3338 Td[(c)51(omments)]TJ +/F19 9.9626 Tf 660.1341 296.9079 Td[(c)51(omments)]TJ ET -1 0 0 1 839.182 179.7472 cm +1 0 0 1 864.3376 293.3213 cm q []0 d 0 J @@ -4402,393 +4725,502 @@ q 0.1992 11.9552 l S Q -1 0 0 1 -489.4823 -0.3985 cm +1 0 0 1 -539.7935 -0.3985 cm q []0 d 0 J 0.3985 w 0 0.1992 m -489.6816 0.1992 l +539.9927 0.1992 l S Q -1 0 0 1 -0.1992 -11.9552 cm +1 0 0 1 -0.1992 -23.9103 cm q []0 d 0 J 0.3985 w 0.1992 0 m -0.1992 11.9552 l +0.1992 23.9103 l S Q -1 0 0 1 -349.5005 -167.3935 cm +1 0 0 1 -324.3449 -269.0125 cm BT -/F40 9.9626 Tf 355.6773 170.9801 Td[(mld_coarse_mat_)]TJ +/F39 9.9626 Tf 330.5217 284.5542 Td[(mld_coarse_mat_)]TJ ET -1 0 0 1 466.0624 167.3936 cm +1 0 0 1 440.9069 269.0125 cm q []0 d 0 J 0.3985 w 0.1992 0 m -0.1992 11.9552 l +0.1992 23.9103 l S Q -1 0 0 1 52.1666 0 cm +1 0 0 1 -440.9069 -269.0125 cm +BT +/F39 9.9626 Tf 447.0837 284.5542 Td[(character\050len=*\051)]TJ +ET +1 0 0 1 536.5475 269.0125 cm q []0 d 0 J 0.3985 w 0.1992 0 m -0.1992 11.9552 l +0.1992 23.9103 l S Q -1 0 0 1 68.6481 0 cm +1 0 0 1 -536.5475 -269.0125 cm +BT +/F8 9.9626 Tf 542.7243 284.5542 Td[('DIS)1(T)-1(R')1(,)]TJ 0 -11.9551 Td[('RE)1(PL')]TJ +ET +1 0 0 1 605.1956 269.0125 cm q []0 d 0 J 0.3985 w 0.1992 0 m -0.1992 11.9552 l +0.1992 23.9103 l S Q -1 0 0 1 41.9246 0 cm +1 0 0 1 -605.1956 -269.0125 cm +BT +/F8 9.9626 Tf 611.3724 284.5542 Td[('DIS)1(T)-1(R')]TJ +ET +1 0 0 1 653.9572 269.0125 cm q []0 d 0 J 0.3985 w 0.1992 0 m -0.1992 11.9552 l +0.1992 23.9103 l S Q -1 0 0 1 210.3803 0 cm +1 0 0 1 -653.9572 -269.0125 cm +BT +/F8 9.9626 Tf 660.1341 284.5542 Td[(Coarse)-334(matrix:)-444(d)1(is)-1(t)1(rib)1(uted)-333(or)-333(replicated)]TJ +ET +1 0 0 1 864.3376 269.0125 cm q []0 d 0 J 0.3985 w 0.1992 0 m -0.1992 11.9552 l +0.1992 23.9103 l S Q -1 0 0 1 -489.6815 -23.9104 cm +1 0 0 1 -539.9927 -107.5965 cm q []0 d 0 J 0.3985 w 0.1992 0 m -0.1992 23.9103 l +0.1992 107.5965 l S Q -1 0 0 1 -349.5005 -143.4832 cm +1 0 0 1 -324.3449 -161.416 cm BT -/F40 9.9626 Tf 355.6773 159.025 Td[(mld_coarse_solve_)]TJ +/F39 9.9626 Tf 330.5217 260.6439 Td[(mld_coarse_solve_)]TJ ET -1 0 0 1 466.0624 143.4832 cm +1 0 0 1 440.9069 161.416 cm q []0 d 0 J 0.3985 w 0.1992 0 m -0.1992 23.9103 l +0.1992 107.5965 l S Q -1 0 0 1 52.1666 0 cm +1 0 0 1 -440.9069 -161.416 cm +BT +/F39 9.9626 Tf 447.0837 260.6439 Td[(character\050len=*\051)]TJ +ET +1 0 0 1 536.5475 161.416 cm q []0 d 0 J 0.3985 w 0.1992 0 m -0.1992 23.9103 l +0.1992 107.5965 l S Q -1 0 0 1 68.6481 0 cm +1 0 0 1 -536.5475 -161.416 cm +BT +/F8 9.9626 Tf 542.7243 260.6439 Td[('BJA)28(C')]TJ 0 -11.9552 Td[('UM)1(F')]TJ 0 -11.9551 Td[('S)1(LUDIST')]TJ +ET +1 0 0 1 605.1956 161.416 cm q []0 d 0 J 0.3985 w 0.1992 0 m -0.1992 23.9103 l +0.1992 107.5965 l S Q -1 0 0 1 41.9246 0 cm +1 0 0 1 -605.1956 -161.416 cm +BT +/F8 9.9626 Tf 611.3724 260.6439 Td[('BJA)28(C')]TJ +ET +1 0 0 1 653.9572 161.416 cm q []0 d 0 J 0.3985 w 0.1992 0 m -0.1992 23.9103 l +0.1992 107.5965 l +S +Q +1 0 0 1 -653.9572 -161.416 cm +BT +/F37 9.9626 Tf 660.1341 260.6439 Td[(VEDI)-1005(OSS)1(ER)127(V)128(A)-1(ZIONI)-1004(EMAIL)-1005(15-)]TJ 0 -11.9552 Td[(16/06/08)]TJ/F8 9.9626 Tf 49.6087 0 Td[(a)28(v)56(ailabl)1(e)-380(s)-1(olv)28(er)-379(for)-379(coarse)-380(s)-1(ystem)-1(.)]TJ -49.6087 -11.9551 Td[(On)1(ly)-596('BJA)27(C')-596(an)1(d)-596('SLUDIS)1(T')-596(c)-1(an)-596(b)-27(e)-597(used)]TJ 0 -11.9552 Td[(for)-531(distrib)1(uted)-532(coarse)-533(matrix)1(.)-1041('BJA)27(C')-532(cor-)]TJ 0 -11.9552 Td[(res)-1(p)-27(on)1(ds)-563(t)1(o)-563(some)-563(sw)27(ee)-1(p)1(s)-563(of)-561(a)-562(blo)-28(c)28(k-Jac)-1(ob)1(i)]TJ 0 -11.9551 Td[(solv)28(e)-1(r)1(,)-539(while)-498('S)1(LUDIST')-498(corr)1(e)-1(sp)-28(on)1(ds)-498(to)-498(the)]TJ 0 -11.9552 Td[(use)-248(of)-247(th)1(e)-248(e)-1(x)1(te)-1(r)1(nal)-247(pac)28(k)55(age)-248(S)1(up)-27(e)-1(r)1(LU)]TJ +ET +1 0 0 1 816.6585 188.9129 cm +q +[]0 d +0 J +0.3985 w +0 0.1992 m +2.9888 0.1992 l S Q -1 0 0 1 -628.8017 -143.4832 cm +1 0 0 1 -816.6585 -188.9129 cm +BT +/F8 9.9626 Tf 819.6473 188.9129 Td[(Dist)-247([)]TJ +ET +1 0 0 1 843.0618 188.9129 cm +0 1 0 rg 0 1 0 RG +1 0 0 1 -843.0618 -188.9129 cm +BT +/F8 9.9626 Tf 843.0618 188.9129 Td[(13)]TJ +ET +1 0 0 1 853.0244 188.9129 cm +0 g 0 G +1 0 0 1 -853.0244 -188.9129 cm BT -/F37 9.9626 Tf 634.9785 159.025 Td[(VEDI)-1005(OSS)1(ER)127(V)128(A)-1(ZIONI)-1004(EMAIL)-1005(15-)]TJ 0 -11.9552 Td[(16/06/08)]TJ +/F8 9.9626 Tf 853.0244 188.9129 Td[(],)]TJ -192.8903 -11.9552 Td[(v)28(ers)-1(i)1(on)-227(2.0,)-249(f)1(or)-227(distri)1(but)1(e)-1(d)-227(sparse)-228(factori)1(z)-1(ati)1(on)]TJ 0 -11.9551 Td[(and)-332(s)-1(olv)28(e.)]TJ ET -1 0 0 1 839.182 143.4832 cm +1 0 0 1 864.3376 161.416 cm q []0 d 0 J 0.3985 w 0.1992 0 m -0.1992 23.9103 l +0.1992 107.5965 l S Q -1 0 0 1 -489.6815 -23.9103 cm +1 0 0 1 -539.9927 -59.7759 cm q []0 d 0 J 0.3985 w 0.1992 0 m -0.1992 23.9103 l +0.1992 59.7758 l S Q -1 0 0 1 -349.5005 -119.5729 cm +1 0 0 1 -324.3449 -101.6401 cm BT -/F40 9.9626 Tf 355.6773 135.1146 Td[(mld_coarse_subsolve_)]TJ +/F39 9.9626 Tf 330.5217 153.0474 Td[(mld_coarse_subsolve_)]TJ ET -1 0 0 1 466.0624 119.5729 cm +1 0 0 1 440.9069 101.6401 cm q []0 d 0 J 0.3985 w 0.1992 0 m -0.1992 23.9103 l +0.1992 59.7758 l S Q -1 0 0 1 52.1666 0 cm +1 0 0 1 -440.9069 -101.6401 cm +BT +/F39 9.9626 Tf 447.0837 153.0474 Td[(character\050len=*\051)]TJ +ET +1 0 0 1 536.5475 101.6401 cm q []0 d 0 J 0.3985 w 0.1992 0 m -0.1992 23.9103 l +0.1992 59.7758 l S Q -1 0 0 1 68.6481 0 cm +1 0 0 1 -536.5475 -101.6401 cm +BT +/F8 9.9626 Tf 542.7243 153.0474 Td[('ILU')]TJ 0 -11.9552 Td[('M)1(I)-1(LU')]TJ 0 -11.9551 Td[('ILUT')]TJ 0 -11.9552 Td[('UM)1(F')]TJ 0 -11.9552 Td[('S)1(LU')]TJ +ET +1 0 0 1 605.1956 101.6401 cm q []0 d 0 J 0.3985 w 0.1992 0 m -0.1992 23.9103 l +0.1992 59.7758 l S Q -1 0 0 1 41.9246 0 cm +1 0 0 1 -605.1956 -101.6401 cm +BT +/F8 9.9626 Tf 611.3724 153.0474 Td[('UM)1(F')]TJ +ET +1 0 0 1 653.9572 101.6401 cm q []0 d 0 J 0.3985 w 0.1992 0 m -0.1992 23.9103 l +0.1992 59.7758 l S Q -1 0 0 1 -628.8017 -119.5729 cm +1 0 0 1 -653.9572 -101.6401 cm BT -/F37 9.9626 Tf 634.9785 135.1146 Td[(VEDI)-1005(OSS)1(ER)127(V)128(A)-1(ZIONI)-1004(EMAIL)-1005(15-)]TJ 0 -11.9551 Td[(16/06/08)]TJ +/F37 9.9626 Tf 660.1341 153.0474 Td[(VEDI)-1005(OSS)1(ER)127(V)128(A)-1(ZIONI)-1004(EMAIL)-1005(15-)]TJ 0 -11.9552 Td[(16/06/08)]TJ/F8 9.9626 Tf 50.0902 0 Td[(a)28(v)56(ailabl)1(e)-429(solv)28(er)-428(f)1(or)-428(d)1(iagonal)-427(lo)-28(cal)]TJ -50.0902 -11.9551 Td[(bl)1(o)-28(c)27(ks)-422(of)-422(the)-422(c)-1(oar)1(s)-1(e)-423(matr)1(ix,)-444(w)-1(h)1(e)-1(n)-421('BJA)27(C')-422(is)]TJ 0 -11.9552 Td[(used)-333(as)-334(c)-1(oar)1(s)-1(e)-333(s)-1(olv)28(er)]TJ ET -1 0 0 1 839.182 119.5729 cm +1 0 0 1 864.3376 101.6401 cm q []0 d 0 J 0.3985 w 0.1992 0 m -0.1992 23.9103 l +0.1992 59.7758 l S Q -1 0 0 1 -489.6815 -11.9552 cm +1 0 0 1 -539.9927 -23.9103 cm q []0 d 0 J 0.3985 w 0.1992 0 m -0.1992 11.9552 l +0.1992 23.9103 l S Q -1 0 0 1 -349.5005 -107.6177 cm +1 0 0 1 -324.3449 -77.7298 cm BT -/F40 9.9626 Tf 355.6773 111.2043 Td[(mld_coarse_sweeps_)]TJ +/F39 9.9626 Tf 330.5217 93.2716 Td[(mld_coarse_sweeps_)]TJ ET -1 0 0 1 466.0624 107.6177 cm +1 0 0 1 440.9069 77.7298 cm q []0 d 0 J 0.3985 w 0.1992 0 m -0.1992 11.9552 l +0.1992 23.9103 l S Q -1 0 0 1 52.1666 0 cm +1 0 0 1 -440.9069 -77.7298 cm +BT +/F39 9.9626 Tf 447.0837 93.2716 Td[(integer)]TJ +ET +1 0 0 1 536.5475 77.7298 cm q []0 d 0 J 0.3985 w 0.1992 0 m -0.1992 11.9552 l +0.1992 23.9103 l S Q -1 0 0 1 68.6481 0 cm +1 0 0 1 -536.5475 -77.7298 cm +BT +/F8 9.9626 Tf 542.7243 93.2716 Td[(an)28(y)-826(n)28(um)28(b)-27(e)-1(r)]TJ/F11 9.9626 Tf 0 -11.9552 Td[(>)]TJ/F8 9.9626 Tf 10.5161 0 Td[(0)]TJ +ET +1 0 0 1 605.1956 77.7298 cm q []0 d 0 J 0.3985 w 0.1992 0 m -0.1992 11.9552 l +0.1992 23.9103 l S Q -1 0 0 1 41.9246 0 cm +1 0 0 1 -605.1956 -77.7298 cm +BT +/F8 9.9626 Tf 611.3724 93.2716 Td[(4)]TJ +ET +1 0 0 1 653.9572 77.7298 cm q []0 d 0 J 0.3985 w 0.1992 0 m -0.1992 11.9552 l +0.1992 23.9103 l S Q -1 0 0 1 210.3803 0 cm +1 0 0 1 -653.9572 -77.7298 cm +BT +/F8 9.9626 Tf 660.1341 93.2716 Td[(n)28(u)1(m)27(b)-27(e)-1(r)-358(of)-358(Blo)-28(c)28(k-Jac)-1(ob)1(i)-358(s)-1(w)28(e)-1(eps)-359(wh)1(e)-1(n)-358('BJA)28(C')]TJ 0 -11.9552 Td[(is)-334(u)1(s)-1(ed)-333(as)-334(coarse)-334(solv)28(e)-1(r)]TJ +ET +1 0 0 1 864.3376 77.7298 cm q []0 d 0 J 0.3985 w 0.1992 0 m -0.1992 11.9552 l +0.1992 23.9103 l S Q -1 0 0 1 -489.6815 -11.9552 cm +1 0 0 1 -539.9927 -59.7758 cm q []0 d 0 J 0.3985 w 0.1992 0 m -0.1992 11.9552 l +0.1992 59.7758 l S Q -1 0 0 1 -349.5005 -95.6625 cm +1 0 0 1 -324.3449 -17.954 cm BT -/F40 9.9626 Tf 355.6773 99.2491 Td[(mld_coarse_fillin_)]TJ +/F39 9.9626 Tf 330.5217 69.3612 Td[(mld_coarse_fillin_)]TJ ET -1 0 0 1 466.0624 95.6626 cm +1 0 0 1 440.9069 17.954 cm q []0 d 0 J 0.3985 w 0.1992 0 m -0.1992 11.9552 l +0.1992 59.7758 l S Q -1 0 0 1 52.1666 0 cm +1 0 0 1 -440.9069 -17.954 cm +BT +/F39 9.9626 Tf 447.0837 69.3612 Td[(integer)]TJ +ET +1 0 0 1 536.5475 17.954 cm q []0 d 0 J 0.3985 w 0.1992 0 m -0.1992 11.9552 l +0.1992 59.7758 l S Q -1 0 0 1 68.6481 0 cm +1 0 0 1 -536.5475 -17.954 cm +BT +/F8 9.9626 Tf 542.7243 69.3612 Td[(an)28(y)-826(n)28(um)28(b)-27(e)-1(r)]TJ/F14 9.9626 Tf 0 -11.9552 Td[(\025)]TJ/F8 9.9626 Tf 10.5161 0 Td[(0)]TJ +ET +1 0 0 1 605.1956 17.954 cm q []0 d 0 J 0.3985 w 0.1992 0 m -0.1992 11.9552 l +0.1992 59.7758 l S Q -1 0 0 1 41.9246 0 cm +1 0 0 1 -605.1956 -17.954 cm +BT +/F8 9.9626 Tf 611.3724 69.3612 Td[(0)]TJ +ET +1 0 0 1 653.9572 17.954 cm q []0 d 0 J 0.3985 w 0.1992 0 m -0.1992 11.9552 l +0.1992 59.7758 l S Q -1 0 0 1 -628.8017 -95.6626 cm +1 0 0 1 -653.9572 -17.954 cm BT -/F37 9.9626 Tf 634.9785 99.2491 Td[(MOD)1(I)-1(F)1(ICA)-320(NOME)-319(P)96(A)-1(RAM.)-320(NEL)-319(SW)]TJ +/F8 9.9626 Tf 660.1341 69.3612 Td[(\014l)1(l-in)-458(l)1(e)-1(v)28(el)-458(in)-457(incomplete)-458(factorization)-457(of)-458(lo-)]TJ 0 -11.9552 Td[(cal)-282(di)1(agonal)-282(b)1(lo)-28(c)28(ks)-283(of)-281(the)-282(coarse)-283(matri)1(x,)-292(when)]TJ 0 -11.9551 Td[('BJA)28(C')-400(is)-400(use)-1(d)-400(as)-400(coars)-1(e)-400(s)-1(ol)1(v)28(e)-1(r)-399(and)-400(')1(I)-1(LU')-399(or)]TJ 0 -11.9552 Td[('M)1(I)-1(LU')-420(i)1(s)-421(use)-1(d)-420(as)-421(l)1(o)-28(c)-1(al)-420(solv)28(e)-1(r)]TJ/F37 9.9626 Tf 137.3213 0 Td[(MOD)1(I)-1(F)1(ICA)]TJ -137.3213 -11.9552 Td[(NOME)-382(P)95(AR)-1(AM.)-384(NE)1(L)-383(SW)]TJ ET -1 0 0 1 839.182 95.6626 cm +1 0 0 1 864.3376 17.954 cm q []0 d 0 J 0.3985 w 0.1992 0 m -0.1992 11.9552 l +0.1992 59.7758 l S Q -1 0 0 1 -489.6815 -11.9552 cm +1 0 0 1 -539.9927 -47.8207 cm q []0 d 0 J 0.3985 w 0.1992 0 m -0.1992 11.9552 l +0.1992 47.8207 l S Q -1 0 0 1 -349.5005 -83.7074 cm +1 0 0 1 -324.3449 29.8667 cm BT -/F40 9.9626 Tf 355.6773 87.294 Td[(mld_coarse_thresh_)]TJ +/F39 9.9626 Tf 330.5217 9.5854 Td[(mld_coarse_thresh_)]TJ ET -1 0 0 1 466.0624 83.7074 cm +1 0 0 1 440.9069 -29.8667 cm q []0 d 0 J 0.3985 w 0.1992 0 m -0.1992 11.9552 l +0.1992 47.8207 l S Q -1 0 0 1 52.1666 0 cm +1 0 0 1 -440.9069 29.8667 cm +BT +/F39 9.9626 Tf 447.0837 9.5854 Td[(real)]TJ +ET +1 0 0 1 536.5475 -29.8667 cm q []0 d 0 J 0.3985 w 0.1992 0 m -0.1992 11.9552 l +0.1992 47.8207 l S Q -1 0 0 1 68.6481 0 cm +1 0 0 1 -536.5475 29.8667 cm +BT +/F8 9.9626 Tf 542.7243 9.5854 Td[(an)28(y)-826(n)28(um)28(b)-27(e)-1(r)]TJ/F14 9.9626 Tf 0 -11.9552 Td[(\025)]TJ/F8 9.9626 Tf 10.5161 0 Td[(0)]TJ/F11 9.9626 Tf 4.9813 0 Td[(:)]TJ +ET +1 0 0 1 605.1956 -29.8667 cm q []0 d 0 J 0.3985 w 0.1992 0 m -0.1992 11.9552 l +0.1992 47.8207 l S Q -1 0 0 1 41.9246 0 cm +1 0 0 1 -605.1956 29.8667 cm +BT +/F8 9.9626 Tf 611.3724 9.5854 Td[(0.)]TJ +ET +1 0 0 1 653.9572 -29.8667 cm q []0 d 0 J 0.3985 w 0.1992 0 m -0.1992 11.9552 l +0.1992 47.8207 l S Q -1 0 0 1 210.3803 0 cm +1 0 0 1 -653.9572 29.8667 cm +BT +/F8 9.9626 Tf 660.1341 9.5854 Td[(dr)1(op)-426(toleran)1(c)-1(e)-426(in)-426(in)1(c)-1(ompl)1(e)-1(te)-426(factorization)-425(of)]TJ 0 -11.9552 Td[(lo)-28(cal)-576(d)1(iagonal)-575(blo)-28(c)28(ks)-576(of)-576(th)1(e)-577(coarse)-577(matri)1(x,)]TJ 0 -11.9552 Td[(when)-586('BJA)27(C')-586(is)-587(u)1(s)-1(ed)-586(as)-587(c)-1(oar)1(s)-1(e)-587(solv)28(e)-1(r)-586(an)1(d)]TJ 0 -11.9551 Td[('ILUT')-333(is)-334(u)1(s)-1(ed)-333(as)-334(lo)-27(c)-1(al)-333(solv)28(e)-1(r)]TJ +ET +1 0 0 1 864.3376 -29.8667 cm q []0 d 0 J 0.3985 w 0.1992 0 m -0.1992 11.9552 l +0.1992 47.8207 l S Q -1 0 0 1 -489.4823 -0.3985 cm +1 0 0 1 -539.7935 -0.3985 cm q []0 d 0 J 0.3985 w 0 0.1992 m -489.6816 0.1992 l +539.9927 0.1992 l S Q -1 0 0 1 75.1851 -27.84 cm +1 0 0 1 100.3407 -27.84 cm 0 g 0 G -1 0 0 1 -424.8848 -55.4689 cm +1 0 0 1 -424.8848 58.1052 cm BT -/F8 9.9626 Tf 424.8848 55.4689 Td[(T)83(ab)1(le)-334(5:)-444(P)28(aramete)-1(r)1(s)-334(de\014n)1(ing)-333(the)-333(c)-1(oar)1(s)-1(e-)-1(space)-334(correc)-1(t)1(ion)-333(at)-333(the)-334(coarse)-1(st)-333(lev)28(e)-1(l.)]TJ +/F8 9.9626 Tf 424.8848 -58.1052 Td[(T)83(ab)1(le)-334(5:)-444(P)28(aramete)-1(r)1(s)-334(de\014n)1(ing)-333(the)-333(c)-1(oar)1(s)-1(e-)-1(space)-334(correc)-1(t)1(ion)-333(at)-333(the)-334(coarse)-1(st)-333(lev)28(e)-1(l.)]TJ ET -1 0 0 1 764.1962 55.4689 cm +1 0 0 1 764.1962 -58.1052 cm 0 g 0 G -1 0 0 1 128.2272 64.8567 cm +1 0 0 1 128.2272 178.4308 cm 0 g 0 G 1 0 0 1 -595.7659 0 cm Q @@ -4800,33 +5232,40 @@ ET 0 g 0 G endstream endobj -276 0 obj << +293 0 obj << /Type /Page -/Contents 277 0 R -/Resources 275 0 R +/Contents 294 0 R +/Resources 292 0 R /MediaBox [0 0 595.2756 841.8898] -/Parent 274 0 R -/Annots [ 279 0 R ] +/Parent 298 0 R +/Annots [ 296 0 R 297 0 R ] >> endobj -279 0 obj << +296 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [123.8057 740.0018 130.7796 748.9129] /Subtype /Link -/A << /S /GoTo /D (section.1) >> +/A << /S /GoTo /D (section.5) >> >> endobj -278 0 obj << -/D [276 0 R /XYZ 124.802 740.9981 null] +297 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[0 1 0] +/Rect [842.0655 187.9166 854.0207 196.3295] +/Subtype /Link +/A << /S /GoTo /D (cite.SUPERLUDIST) >> >> endobj -192 0 obj << -/D [276 0 R /XYZ 464.4587 67.424 null] +295 0 obj << +/D [293 0 R /XYZ 124.802 740.9981 null] >> endobj -275 0 obj << -/Font << /F34 129 0 R /F8 91 0 R /F40 175 0 R /F19 132 0 R /F37 109 0 R >> +198 0 obj << +/D [293 0 R /XYZ 464.4587 -46.1501 null] +>> endobj +292 0 obj << +/Font << /F34 134 0 R /F8 95 0 R /F39 181 0 R /F19 137 0 R /F37 113 0 R /F11 142 0 R /F14 145 0 R >> /ProcSet [ /PDF /Text ] >> endobj -282 0 obj << -/Length 4074 +302 0 obj << +/Length 4429 >> stream 1 0 0 1 124.802 740.9981 cm @@ -4834,13 +5273,13 @@ stream 0 0 1 rg 0 0 1 RG 1 0 0 1 -124.802 -740.9981 cm BT -/F34 9.9626 Tf 124.802 740.9981 Td[(1)]TJ +/F34 9.9626 Tf 124.802 740.9981 Td[(5)]TJ ET 1 0 0 1 129.7833 740.9981 cm 0 g 0 G 1 0 0 1 -129.7833 -740.9981 cm BT -/F34 9.9626 Tf 133.1042 740.9981 Td[(General)-333(Ov)28(ervi)1(e)-1(w)]TJ +/F34 9.9626 Tf 133.1042 740.9981 Td[(Use)-1(r)-333(In)28(terf)1(ac)-1(e)]TJ ET 1 0 0 1 124.802 739.4042 cm q @@ -4848,18 +5287,18 @@ q 0 J 0.3985 w 0 0.1992 m -86.1908 0.1992 l +69.2958 0.1992 l S Q 1 0 0 1 -124.802 -739.4042 cm BT -/F8 9.9626 Tf 458.5504 740.9981 Td[(17)]TJ +/F8 9.9626 Tf 458.5504 740.9981 Td[(16)]TJ ET 1 0 0 1 468.5131 740.9981 cm 0 g 0 G 1 0 0 1 -468.5131 -740.9981 cm BT -/F18 11.9552 Tf 124.802 706.1289 Td[(6.)-1(3)-1125(Subr)-1(out)-1(ine)-376(ml)-1(d)]TJ +/F18 11.9552 Tf 124.802 706.1289 Td[(5.)-1(3)-1125(Subr)-1(out)-1(ine)-376(ml)-1(d)]TJ ET 1 0 0 1 247.8242 706.1289 cm q @@ -4879,13 +5318,37 @@ ET 0 g 0 G 1 0 0 1 -218.4515 -687.7395 cm BT -/F40 9.9626 Tf 223.4328 687.7395 Td[(mld_precbld\050a,desc_a,p,info\051)]TJ/F8 9.9626 Tf -98.6308 -21.9178 Td[(This)-369(rou)1(tin)1(e)-370(b)1(uil)1(ds)-369(the)-369(pr)1(e)-1(cond)1(ition)1(e)-1(r)-368(ac)-1(cord)1(ing)-369(to)-368(the)-369(requi)1(re)-1(men)28(ts)-369(m)-1(ad)1(e)-370(b)29(y)]TJ 0 -11.9552 Td[(th)1(e)-334(use)-1(r)-333(th)1(rou)1(gh)-333(the)-333(routi)1(nes)]TJ/F40 9.9626 Tf 131.3687 0 Td[(mld_precinit)]TJ/F8 9.9626 Tf 66.085 0 Td[(and)]TJ/F40 9.9626 Tf 19.3718 0 Td[(mld_precset)]TJ/F8 9.9626 Tf 57.5337 0 Td[(.)]TJ/F37 9.9626 Tf -274.3592 -25.8959 Td[(Argumen)32(t)-1(s)]TJ/F40 9.9626 Tf 5.9776 -17.7362 Td[(a)-4089(type\050psb_)]TJ/F19 9.9626 Tf 93.0439 0 Td[(x)]TJ/F40 9.9626 Tf 5.8212 0 Td[(spmat_type\051,)-525(intent\050in\051)]TJ/F8 9.9626 Tf 120.2978 0 Td[(.)]TJ -173.1921 -11.9552 Td[(The)-386(s)-1(p)1(arse)-387(matri)1(x)-386(s)-1(tr)1(uctur)1(e)-387(con)28(tain)1(ing)-386(t)1(he)-386(lo)-28(cal)-386(par)1(t)-386(of)-386(th)1(e)-387(matri)1(x)-386(to)-386(b)-27(e)]TJ 0 -11.9551 Td[(pr)1(e)-1(cond)1(ition)1(e)-1(d)1(.)-430(Note)-289(that)]TJ/F19 9.9626 Tf 116.0655 0 Td[(x)]TJ/F8 9.9626 Tf 8.7034 0 Td[(m)27(u)1(s)-1(t)-289(b)-27(e)-290(c)27(h)1(os)-1(en)-289(acc)-1(or)1(din)1(g)-290(to)-289(th)1(e)-290(real/com)-1(p)1(lex,)]TJ -124.7689 -11.9552 Td[(single/dou)1(bl)1(e)-442(prec)-1(i)1(s)-1(ion)-441(v)28(ersion)-441(of)-441(MLD2P)1(4)-442(u)1(nd)1(e)-1(r)-441(use)-1(.)-768(See)-442(the)-442(P)1(SBLAS)]TJ 0 -11.9552 Td[(Use)-1(r')1(s)-334(Gu)1(ide)-334(f)1(or)-333(details)-333([)]TJ/F37 9.9626 Tf 108.7728 0 Td[(?)]TJ/F8 9.9626 Tf 5.4102 0 Td[(].)]TJ/F40 9.9626 Tf -160.1538 -11.9551 Td[(desc_a)-1464(type\050psb_desc_type\051,)-525(intent\050in\051)]TJ/F8 9.9626 Tf 208.1113 0 Td[(.)]TJ -162.1405 -11.9552 Td[(The)-484(c)-1(omm)27(u)1(nication)-484(d)1(e)-1(sc)-1(r)1(ipt)1(or)-484(of)-484(a.)-897(See)-485(th)1(e)-485(PS)1(BL)-1(AS)-483(Us)-1(er's)-484(Gu)1(ide)-485(f)1(or)]TJ 0 -11.9552 Td[(detail)1(s)-334([)]TJ/F37 9.9626 Tf 34.3712 0 Td[(?)]TJ/F8 9.9626 Tf 5.4102 0 Td[(].)]TJ/F40 9.9626 Tf -85.7522 -11.9551 Td[(p)-4089(type\050mld_)]TJ/F19 9.9626 Tf 93.0439 0 Td[(x)]TJ/F40 9.9626 Tf 5.8212 0 Td[(prec_type\051,)-525(intent\050inout\051)]TJ/F8 9.9626 Tf 130.7585 0 Td[(.)]TJ -183.6528 -11.9552 Td[(The)-366(p)1(rec)-1(on)1(dit)1(ioner)-365(data)-365(structu)1(re)-1(.)-540(Note)-365(that)]TJ/F19 9.9626 Tf 203.9037 0 Td[(x)]TJ/F8 9.9626 Tf 9.4605 0 Td[(m)27(u)1(s)-1(t)-365(b)-27(e)-366(c)28(hos)-1(en)-365(acc)-1(or)1(din)1(g)]TJ -213.3642 -11.9552 Td[(to)-306(t)1(he)-306(real/c)-1(omp)1(le)-1(x)1(,)-311(s)-1(in)1(gle/doub)1(le)-306(pr)1(e)-1(cision)-305(v)28(e)-1(rsion)-305(of)-305(MLD2P)1(4)-306(un)1(der)-306(u)1(s)-1(e.)]TJ/F40 9.9626 Tf -45.9708 -11.9551 Td[(info)-2514(integer,)-525(intent\050out\051)]TJ/F8 9.9626 Tf 150.5776 0 Td[(.)]TJ -104.6068 -11.9552 Td[(Er)1(ror)-333(co)-28(de.)-444(See)-334(Sec)-1(t)1(ion)]TJ +/F39 9.9626 Tf 223.4328 687.7395 Td[(mld_precbld\050a,desc_a,p,info\051)]TJ/F8 9.9626 Tf -98.6308 -21.9178 Td[(This)-369(rou)1(tin)1(e)-370(b)1(uil)1(ds)-369(the)-369(pr)1(e)-1(cond)1(ition)1(e)-1(r)-368(ac)-1(cord)1(ing)-369(to)-368(the)-369(requi)1(re)-1(men)28(ts)-369(m)-1(ad)1(e)-370(b)29(y)]TJ 0 -11.9552 Td[(th)1(e)-334(use)-1(r)-333(th)1(rou)1(gh)-333(the)-333(routi)1(nes)]TJ/F39 9.9626 Tf 131.3687 0 Td[(mld_precinit)]TJ/F8 9.9626 Tf 66.085 0 Td[(and)]TJ/F39 9.9626 Tf 19.3718 0 Td[(mld_precset)]TJ/F8 9.9626 Tf 57.5337 0 Td[(.)]TJ/F37 9.9626 Tf -274.3592 -25.8959 Td[(Argumen)32(t)-1(s)]TJ/F39 9.9626 Tf 5.9776 -17.7362 Td[(a)-4089(type\050psb_)]TJ/F19 9.9626 Tf 93.0439 0 Td[(x)]TJ/F39 9.9626 Tf 5.8212 0 Td[(spmat_type\051,)-525(intent\050in\051)]TJ/F8 9.9626 Tf 120.2978 0 Td[(.)]TJ -173.1921 -11.9552 Td[(The)-386(s)-1(p)1(arse)-387(matri)1(x)-386(s)-1(tr)1(uctur)1(e)-387(con)28(tain)1(ing)-386(t)1(he)-386(lo)-28(cal)-386(par)1(t)-386(of)-386(th)1(e)-387(matri)1(x)-386(to)-386(b)-27(e)]TJ 0 -11.9551 Td[(pr)1(e)-1(cond)1(ition)1(e)-1(d)1(.)-430(Note)-289(that)]TJ/F19 9.9626 Tf 116.0655 0 Td[(x)]TJ/F8 9.9626 Tf 8.7034 0 Td[(m)27(u)1(s)-1(t)-289(b)-27(e)-290(c)27(h)1(os)-1(en)-289(acc)-1(or)1(din)1(g)-290(to)-289(th)1(e)-290(real/com)-1(p)1(lex,)]TJ -124.7689 -11.9552 Td[(single/dou)1(bl)1(e)-442(prec)-1(i)1(s)-1(ion)-441(v)28(ersion)-441(of)-441(MLD2P)1(4)-442(u)1(nd)1(e)-1(r)-441(use)-1(.)-768(See)-442(the)-442(P)1(SBLAS)]TJ 0 -11.9552 Td[(Use)-1(r')1(s)-334(Gu)1(ide)-334(f)1(or)-333(details)-333([)]TJ +ET +1 0 0 1 285.5232 562.4137 cm +0 1 0 rg 0 1 0 RG +1 0 0 1 -285.5232 -562.4137 cm +BT +/F8 9.9626 Tf 285.5232 562.4137 Td[(11)]TJ +ET +1 0 0 1 295.4859 562.4137 cm +0 g 0 G +1 0 0 1 -295.4859 -562.4137 cm +BT +/F8 9.9626 Tf 295.4859 562.4137 Td[(].)]TJ/F39 9.9626 Tf -164.7063 -11.9551 Td[(desc_a)-1464(type\050psb_desc_type\051,)-525(intent\050in\051)]TJ/F8 9.9626 Tf 208.1114 0 Td[(.)]TJ -162.1406 -11.9552 Td[(The)-484(c)-1(omm)27(u)1(nication)-484(d)1(e)-1(sc)-1(r)1(ipt)1(or)-484(of)-484(a.)-897(See)-485(th)1(e)-485(PS)1(B)-1(LAS)-483(Us)-1(er's)-484(Gu)1(ide)-485(f)1(or)]TJ 0 -11.9552 Td[(detail)1(s)-334([)]TJ +ET +1 0 0 1 211.1216 526.5482 cm +0 1 0 rg 0 1 0 RG +1 0 0 1 -211.1216 -526.5482 cm +BT +/F8 9.9626 Tf 211.1216 526.5482 Td[(11)]TJ +ET +1 0 0 1 221.0842 526.5482 cm +0 g 0 G +1 0 0 1 -221.0842 -526.5482 cm +BT +/F8 9.9626 Tf 221.0842 526.5482 Td[(].)]TJ/F39 9.9626 Tf -90.3046 -11.9551 Td[(p)-4089(type\050mld_)]TJ/F19 9.9626 Tf 93.0439 0 Td[(x)]TJ/F39 9.9626 Tf 5.8212 0 Td[(prec_type\051,)-525(intent\050inout\051)]TJ/F8 9.9626 Tf 130.7585 0 Td[(.)]TJ -183.6528 -11.9552 Td[(The)-366(p)1(rec)-1(on)1(dit)1(ioner)-365(data)-365(structu)1(re)-1(.)-540(Note)-365(that)]TJ/F19 9.9626 Tf 203.9037 0 Td[(x)]TJ/F8 9.9626 Tf 9.4605 0 Td[(m)27(u)1(s)-1(t)-365(b)-27(e)-366(c)28(hos)-1(en)-365(acc)-1(or)1(din)1(g)]TJ -213.3642 -11.9552 Td[(to)-306(t)1(he)-306(real/c)-1(omp)1(le)-1(x)1(,)-311(s)-1(in)1(gle/doub)1(le)-306(pr)1(e)-1(cision)-305(v)28(e)-1(rsion)-305(of)-305(MLD2P)1(4)-306(un)1(der)-306(u)1(s)-1(e.)]TJ/F39 9.9626 Tf -45.9708 -11.9551 Td[(info)-2514(integer,)-525(intent\050out\051)]TJ/F8 9.9626 Tf 150.5776 0 Td[(.)]TJ -104.6068 -11.9552 Td[(Er)1(ror)-333(co)-28(de.)-444(See)-334(Sec)-1(t)1(ion)]TJ ET 1 0 0 1 282.9634 466.7724 cm 0 0 1 rg 0 0 1 RG 1 0 0 1 -282.9634 -466.7724 cm BT -/F8 9.9626 Tf 282.9634 466.7724 Td[(7)]TJ +/F8 9.9626 Tf 282.9634 466.7724 Td[(6)]TJ ET 1 0 0 1 287.9447 466.7724 cm 0 g 0 G @@ -4899,43 +5362,57 @@ ET 0 g 0 G endstream endobj -281 0 obj << +301 0 obj << /Type /Page -/Contents 282 0 R -/Resources 280 0 R +/Contents 302 0 R +/Resources 300 0 R /MediaBox [0 0 595.2756 841.8898] -/Parent 274 0 R -/Annots [ 284 0 R 286 0 R ] +/Parent 298 0 R +/Annots [ 304 0 R 306 0 R 307 0 R 308 0 R ] >> endobj -284 0 obj << +304 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [123.8057 740.0018 130.7796 748.9129] /Subtype /Link -/A << /S /GoTo /D (section.1) >> +/A << /S /GoTo /D (section.5) >> >> endobj -286 0 obj << +306 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[0 1 0] +/Rect [284.527 561.4175 296.4822 569.8304] +/Subtype /Link +/A << /S /GoTo /D (cite.PSBLASGUIDE) >> +>> endobj +307 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[0 1 0] +/Rect [210.1253 525.552 222.0805 533.9649] +/Subtype /Link +/A << /S /GoTo /D (cite.PSBLASGUIDE) >> +>> endobj +308 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [281.9671 462.1895 288.941 474.6872] /Subtype /Link -/A << /S /GoTo /D (section.7) >> +/A << /S /GoTo /D (section.6) >> >> endobj -283 0 obj << -/D [281 0 R /XYZ 124.802 740.9981 null] +303 0 obj << +/D [301 0 R /XYZ 124.802 740.9981 null] >> endobj -46 0 obj << -/D [281 0 R /XYZ 124.802 716.0915 null] +42 0 obj << +/D [301 0 R /XYZ 124.802 716.0915 null] >> endobj -285 0 obj << -/D [281 0 R /XYZ 124.802 619.5993 null] +305 0 obj << +/D [301 0 R /XYZ 124.802 619.5993 null] >> endobj -280 0 obj << -/Font << /F34 129 0 R /F8 91 0 R /F18 73 0 R /F40 175 0 R /F37 109 0 R /F19 132 0 R >> +300 0 obj << +/Font << /F34 134 0 R /F8 95 0 R /F18 77 0 R /F39 181 0 R /F37 113 0 R /F19 137 0 R >> /ProcSet [ /PDF /Text ] >> endobj -289 0 obj << -/Length 11564 +311 0 obj << +/Length 11566 >> stream 1 0 0 1 124.802 740.9981 cm @@ -4943,13 +5420,13 @@ stream 0 0 1 rg 0 0 1 RG 1 0 0 1 -124.802 -740.9981 cm BT -/F34 9.9626 Tf 124.802 740.9981 Td[(1)]TJ +/F34 9.9626 Tf 124.802 740.9981 Td[(5)]TJ ET 1 0 0 1 129.7833 740.9981 cm 0 g 0 G 1 0 0 1 -129.7833 -740.9981 cm BT -/F34 9.9626 Tf 133.1042 740.9981 Td[(General)-333(Ov)28(ervi)1(e)-1(w)]TJ +/F34 9.9626 Tf 133.1042 740.9981 Td[(Use)-1(r)-333(In)28(terf)1(ac)-1(e)]TJ ET 1 0 0 1 124.802 739.4042 cm q @@ -4957,18 +5434,18 @@ q 0 J 0.3985 w 0 0.1992 m -86.1908 0.1992 l +69.2958 0.1992 l S Q 1 0 0 1 -124.802 -739.4042 cm BT -/F8 9.9626 Tf 458.5504 740.9981 Td[(18)]TJ +/F8 9.9626 Tf 458.5504 740.9981 Td[(17)]TJ ET 1 0 0 1 468.5131 740.9981 cm 0 g 0 G 1 0 0 1 -468.5131 -740.9981 cm BT -/F18 11.9552 Tf 124.802 706.1289 Td[(6.)-1(4)-1125(Subr)-1(out)-1(ine)-376(ml)-1(d)]TJ +/F18 11.9552 Tf 124.802 706.1289 Td[(5.)-1(4)-1125(Subr)-1(out)-1(ine)-376(ml)-1(d)]TJ ET 1 0 0 1 247.8242 706.1289 cm q @@ -4988,7 +5465,7 @@ ET 0 g 0 G 1 0 0 1 -210.6059 -687.7395 cm BT -/F40 9.9626 Tf 215.5873 687.7395 Td[(mld_precaply\050p,x,y,desc_a,info\051)]TJ -28.7669 -11.9552 Td[(mld_precaply\050p,x,y,desc_a,info,trans,work\051)]TJ/F8 9.9626 Tf -62.0184 -21.1124 Td[(This)-315(r)1(outi)1(ne)-315(com)-1(p)1(utes)]TJ/F11 9.9626 Tf 100.8637 0 Td[(y)]TJ/F8 9.9626 Tf 8.0093 0 Td[(=)]TJ/F11 9.9626 Tf 10.516 0 Td[(op)]TJ/F8 9.9626 Tf 9.8416 0 Td[(\050)]TJ/F11 9.9626 Tf 3.8744 0 Td[(M)]TJ/F13 6.9738 Tf 10.7513 3.6154 Td[(\000)]TJ/F7 6.9738 Tf 6.2267 0 Td[(1)]TJ/F8 9.9626 Tf 4.4694 -3.6154 Td[(\051)]TJ/F11 9.9626 Tf 5.5348 0 Td[(x)]TJ/F8 9.9626 Tf 5.6939 0 Td[(,)-318(where)]TJ/F11 9.9626 Tf 34.5599 0 Td[(M)]TJ/F8 9.9626 Tf 13.885 0 Td[(is)-315(a)-314(previou)1(s)-1(l)1(y)-315(b)1(uil)1(t)-315(p)1(rec)-1(on)1(di-)]TJ -214.2259 -11.9552 Td[(tion)1(e)-1(r)1(,)-376(stored)-366(in)-367(th)1(e)]TJ/F40 9.9626 Tf 91.7522 0 Td[(p)]TJ/F8 9.9626 Tf 8.8863 0 Td[(dat)1(a)-367(s)-1(tr)1(ucture,)-375(and)]TJ/F11 9.9626 Tf 88.6497 0 Td[(op)]TJ/F8 9.9626 Tf 13.4976 0 Td[(denot)1(e)-1(s)-367(the)-367(pr)1(e)-1(cond)1(ition)1(e)-1(r)-367(i)1(ts)-1(elf)]TJ -202.7858 -11.9551 Td[(or)-412(it)1(s)-413(tr)1(ansp)-28(ose)-1(,)-431(ac)-1(cord)1(ing)-412(to)-412(th)1(e)-413(v)56(alu)1(e)-413(of)]TJ/F40 9.9626 Tf 191.3062 0 Td[(trans)]TJ/F8 9.9626 Tf 26.1517 0 Td[(.)-680(Note)-413(th)1(at,)-432(wh)1(e)-1(n)-412(M)1(LD2P4)]TJ -217.4579 -11.9552 Td[(is)-344(use)-1(d)-343(with)-344(a)-344(K)1(rylo)28(v)-344(solv)28(er)-344(fr)1(om)-345(P)1(SBLAS,)]TJ/F40 9.9626 Tf 194.1243 0 Td[(mld_precaply)]TJ/F8 9.9626 Tf 66.191 0 Td[(is)-344(c)-1(al)1(le)-1(d)-343(withi)1(n)-344(th)1(e)]TJ -260.3153 -11.9552 Td[(PS)1(BLAS)-333(rout)1(ine)]TJ/F40 9.9626 Tf 76.2697 0 Td[(mld_krylov)]TJ/F8 9.9626 Tf 55.6243 0 Td[(and)-332(hence)-334(is)-334(com)-1(p)1(lete)-1(l)1(y)-334(t)1(ranspar)1(e)-1(n)28(t)-333(to)-333(the)-333(use)-1(r)1(.)]TJ/F37 9.9626 Tf -131.894 -25.7572 Td[(Argumen)32(t)-1(s)]TJ/F40 9.9626 Tf 5.9776 -17.7362 Td[(p)-4089(type\050mld_)]TJ/F19 9.9626 Tf 93.0439 0 Td[(x)]TJ/F40 9.9626 Tf 5.8212 0 Td[(prec_type\051,)-525(intent\050inout\051)]TJ/F8 9.9626 Tf 130.7585 0 Td[(.)]TJ -183.6528 -11.9552 Td[(The)-225(pr)1(e)-1(cond)1(ition)1(e)-1(r)-224(data)-224(s)-1(tr)1(uctur)1(e)-1(,)-246(c)-1(on)29(taini)1(ng)-225(th)1(e)-225(lo)-28(cal)-225(p)1(art)-225(of)]TJ/F11 9.9626 Tf 267.1386 0 Td[(M)]TJ/F8 9.9626 Tf 10.7513 0 Td[(.)-408(Note)-225(that)]TJ/F19 9.9626 Tf -277.8899 -11.9551 Td[(x)]TJ/F8 9.9626 Tf 10.2133 0 Td[(m)27(u)1(s)-1(t)-440(b)-28(e)-441(c)27(h)1(os)-1(en)-441(accordi)1(ng)-441(to)-441(t)1(he)-441(real/c)-1(ompl)1(e)-1(x,)-467(s)-1(i)1(ngle/dou)1(ble)-441(p)1(re)-1(cision)]TJ -10.2133 -11.9552 Td[(v)28(ers)-1(i)1(on)-333(of)-333(MLD2P)1(4)-334(u)1(nd)1(e)-1(r)-333(u)1(s)-1(e.)]TJ/F40 9.9626 Tf -45.9708 -11.9552 Td[(x)]TJ/F19 9.9626 Tf 45.9708 0 Td[(typ)51(e)]TJ/F40 9.9626 Tf 18.0613 0 Td[(\050)]TJ/F19 9.9626 Tf 5.2303 0 Td[(kind)]TJ +/F39 9.9626 Tf 215.5873 687.7395 Td[(mld_precaply\050p,x,y,desc_a,info\051)]TJ -28.7669 -11.9552 Td[(mld_precaply\050p,x,y,desc_a,info,trans,work\051)]TJ/F8 9.9626 Tf -62.0184 -21.1124 Td[(This)-315(r)1(outi)1(ne)-315(com)-1(p)1(utes)]TJ/F11 9.9626 Tf 100.8637 0 Td[(y)]TJ/F8 9.9626 Tf 8.0093 0 Td[(=)]TJ/F11 9.9626 Tf 10.516 0 Td[(op)]TJ/F8 9.9626 Tf 9.8416 0 Td[(\050)]TJ/F11 9.9626 Tf 3.8744 0 Td[(M)]TJ/F13 6.9738 Tf 10.7513 3.6154 Td[(\000)]TJ/F7 6.9738 Tf 6.2267 0 Td[(1)]TJ/F8 9.9626 Tf 4.4694 -3.6154 Td[(\051)]TJ/F11 9.9626 Tf 5.5348 0 Td[(x)]TJ/F8 9.9626 Tf 5.6939 0 Td[(,)-318(where)]TJ/F11 9.9626 Tf 34.5599 0 Td[(M)]TJ/F8 9.9626 Tf 13.885 0 Td[(is)-315(a)-314(previou)1(s)-1(l)1(y)-315(b)1(uil)1(t)-315(p)1(rec)-1(on)1(di-)]TJ -214.2259 -11.9552 Td[(tion)1(e)-1(r)1(,)-376(stored)-366(in)-367(th)1(e)]TJ/F39 9.9626 Tf 91.7522 0 Td[(p)]TJ/F8 9.9626 Tf 8.8863 0 Td[(dat)1(a)-367(s)-1(tr)1(ucture,)-375(and)]TJ/F11 9.9626 Tf 88.6497 0 Td[(op)]TJ/F8 9.9626 Tf 13.4976 0 Td[(denot)1(e)-1(s)-367(the)-367(pr)1(e)-1(cond)1(ition)1(e)-1(r)-367(i)1(ts)-1(elf)]TJ -202.7858 -11.9551 Td[(or)-412(it)1(s)-413(tr)1(ansp)-28(ose)-1(,)-431(ac)-1(cord)1(ing)-412(to)-412(th)1(e)-413(v)56(alu)1(e)-413(of)]TJ/F39 9.9626 Tf 191.3062 0 Td[(trans)]TJ/F8 9.9626 Tf 26.1517 0 Td[(.)-680(Note)-413(th)1(at,)-432(wh)1(e)-1(n)-412(M)1(LD2P4)]TJ -217.4579 -11.9552 Td[(is)-344(use)-1(d)-343(with)-344(a)-344(K)1(rylo)28(v)-344(solv)28(er)-344(fr)1(om)-345(P)1(SBLAS,)]TJ/F39 9.9626 Tf 194.1243 0 Td[(mld_precaply)]TJ/F8 9.9626 Tf 66.191 0 Td[(is)-344(c)-1(al)1(le)-1(d)-343(withi)1(n)-344(th)1(e)]TJ -260.3153 -11.9552 Td[(PS)1(BLAS)-333(rout)1(ine)]TJ/F39 9.9626 Tf 76.2697 0 Td[(mld_krylov)]TJ/F8 9.9626 Tf 55.6243 0 Td[(and)-332(hence)-334(is)-334(com)-1(p)1(lete)-1(l)1(y)-334(t)1(ranspar)1(e)-1(n)28(t)-333(to)-333(the)-333(use)-1(r)1(.)]TJ/F37 9.9626 Tf -131.894 -25.7572 Td[(Argumen)32(t)-1(s)]TJ/F39 9.9626 Tf 5.9776 -17.7362 Td[(p)-4089(type\050mld_)]TJ/F19 9.9626 Tf 93.0439 0 Td[(x)]TJ/F39 9.9626 Tf 5.8212 0 Td[(prec_type\051,)-525(intent\050inout\051)]TJ/F8 9.9626 Tf 130.7585 0 Td[(.)]TJ -183.6528 -11.9552 Td[(The)-225(pr)1(e)-1(cond)1(ition)1(e)-1(r)-224(data)-224(s)-1(tr)1(uctur)1(e)-1(,)-246(c)-1(on)29(taini)1(ng)-225(th)1(e)-225(lo)-28(cal)-225(p)1(art)-225(of)]TJ/F11 9.9626 Tf 267.1386 0 Td[(M)]TJ/F8 9.9626 Tf 10.7513 0 Td[(.)-408(Note)-225(that)]TJ/F19 9.9626 Tf -277.8899 -11.9551 Td[(x)]TJ/F8 9.9626 Tf 10.2133 0 Td[(m)27(u)1(s)-1(t)-440(b)-28(e)-441(c)27(h)1(os)-1(en)-441(accordi)1(ng)-441(to)-441(t)1(he)-441(real/c)-1(ompl)1(e)-1(x,)-467(s)-1(i)1(ngle/dou)1(ble)-441(p)1(re)-1(cision)]TJ -10.2133 -11.9552 Td[(v)28(ers)-1(i)1(on)-333(of)-333(MLD2P)1(4)-334(u)1(nd)1(e)-1(r)-333(u)1(s)-1(e.)]TJ/F39 9.9626 Tf -45.9708 -11.9552 Td[(x)]TJ/F19 9.9626 Tf 45.9708 0 Td[(typ)51(e)]TJ/F39 9.9626 Tf 18.0613 0 Td[(\050)]TJ/F19 9.9626 Tf 5.2303 0 Td[(kind)]TJ ET 1 0 0 1 218.9842 515.5372 cm q @@ -5001,7 +5478,7 @@ S Q 1 0 0 1 -218.9842 -515.5372 cm BT -/F19 9.9626 Tf 222.0394 515.5372 Td[(p)51(ar)51(ameter)]TJ/F40 9.9626 Tf 44.3541 0 Td[(\051,)-525(dimension\050:\051,)-525(intent\050in\051)]TJ/F8 9.9626 Tf 141.2192 0 Td[(.)]TJ -230.8623 -11.9552 Td[(The)-417(lo)-27(c)-1(al)-416(par)1(t)-417(of)-416(th)1(e)-417(v)28(e)-1(ctor)]TJ/F11 9.9626 Tf 129.0095 0 Td[(x)]TJ/F8 9.9626 Tf 5.6939 0 Td[(.)-694(Note)-417(th)1(at)]TJ/F19 9.9626 Tf 57.0028 0 Td[(typ)51(e)]TJ/F8 9.9626 Tf 22.2113 0 Td[(and)]TJ/F19 9.9626 Tf 20.2009 0 Td[(kind)]TJ +/F19 9.9626 Tf 222.0394 515.5372 Td[(p)51(ar)51(ameter)]TJ/F39 9.9626 Tf 44.3541 0 Td[(\051,)-525(dimension\050:\051,)-525(intent\050in\051)]TJ/F8 9.9626 Tf 141.2192 0 Td[(.)]TJ -230.8623 -11.9552 Td[(The)-417(lo)-27(c)-1(al)-416(par)1(t)-417(of)-416(th)1(e)-417(v)28(e)-1(ctor)]TJ/F11 9.9626 Tf 129.0095 0 Td[(x)]TJ/F8 9.9626 Tf 5.6939 0 Td[(.)-694(Note)-417(th)1(at)]TJ/F19 9.9626 Tf 57.0028 0 Td[(typ)51(e)]TJ/F8 9.9626 Tf 22.2113 0 Td[(and)]TJ/F19 9.9626 Tf 20.2009 0 Td[(kind)]TJ ET 1 0 0 1 429.811 503.582 cm q @@ -5014,7 +5491,7 @@ S Q 1 0 0 1 -429.811 -503.582 cm BT -/F19 9.9626 Tf 432.8662 503.582 Td[(p)51(ar)51(ameter)]TJ/F8 9.9626 Tf 48.5041 0 Td[(m)27(u)1(s)-1(t)]TJ -304.6199 -11.9552 Td[(b)-27(e)-318(c)28(hose)-1(n)-316(acc)-1(ord)1(in)1(g)-317(to)-317(th)1(e)-317(re)-1(al)1(/c)-1(ompl)1(e)-1(x,)-319(s)-1(in)1(gle)-1(/d)1(oub)1(le)-317(pr)1(e)-1(cision)-317(v)28(ersion)-316(of)]TJ 0 -11.9551 Td[(MLD2P)1(4)-333(und)1(e)-1(r)-333(u)1(s)-1(e.)]TJ/F40 9.9626 Tf -45.9708 -11.9552 Td[(y)]TJ/F19 9.9626 Tf 45.9708 0 Td[(typ)51(e)]TJ/F40 9.9626 Tf 18.0613 0 Td[(\050)]TJ/F19 9.9626 Tf 5.2303 0 Td[(kind)]TJ +/F19 9.9626 Tf 432.8662 503.582 Td[(p)51(ar)51(ameter)]TJ/F8 9.9626 Tf 48.5041 0 Td[(m)27(u)1(s)-1(t)]TJ -304.6199 -11.9552 Td[(b)-27(e)-318(c)28(hose)-1(n)-316(acc)-1(ord)1(in)1(g)-317(to)-317(th)1(e)-317(re)-1(al)1(/c)-1(ompl)1(e)-1(x,)-319(s)-1(in)1(gle)-1(/d)1(oub)1(le)-317(pr)1(e)-1(cision)-317(v)28(ersion)-316(of)]TJ 0 -11.9551 Td[(MLD2P)1(4)-333(und)1(e)-1(r)-333(u)1(s)-1(e.)]TJ/F39 9.9626 Tf -45.9708 -11.9552 Td[(y)]TJ/F19 9.9626 Tf 45.9708 0 Td[(typ)51(e)]TJ/F39 9.9626 Tf 18.0613 0 Td[(\050)]TJ/F19 9.9626 Tf 5.2303 0 Td[(kind)]TJ ET 1 0 0 1 218.9842 467.7165 cm q @@ -5027,7 +5504,7 @@ S Q 1 0 0 1 -218.9842 -467.7165 cm BT -/F19 9.9626 Tf 222.0394 467.7165 Td[(p)51(ar)51(ameter)]TJ/F40 9.9626 Tf 44.3541 0 Td[(\051,)-525(dimension\050:\051,)-525(intent\050out\051)]TJ/F8 9.9626 Tf 146.4496 0 Td[(.)]TJ -236.0927 -11.9552 Td[(The)-420(lo)-28(cal)-420(p)1(art)-420(of)-419(th)1(e)-421(v)28(ector)]TJ/F11 9.9626 Tf 129.2032 0 Td[(y)]TJ/F8 9.9626 Tf 5.242 0 Td[(.)-704(Not)1(e)-421(th)1(at)]TJ/F19 9.9626 Tf 57.1642 0 Td[(typ)51(e)]TJ/F8 9.9626 Tf 22.2435 0 Td[(and)]TJ/F19 9.9626 Tf 20.2332 0 Td[(kind)]TJ +/F19 9.9626 Tf 222.0394 467.7165 Td[(p)51(ar)51(ameter)]TJ/F39 9.9626 Tf 44.3541 0 Td[(\051,)-525(dimension\050:\051,)-525(intent\050out\051)]TJ/F8 9.9626 Tf 146.4496 0 Td[(.)]TJ -236.0927 -11.9552 Td[(The)-420(lo)-28(cal)-420(p)1(art)-420(of)-419(th)1(e)-421(v)28(ector)]TJ/F11 9.9626 Tf 129.2032 0 Td[(y)]TJ/F8 9.9626 Tf 5.242 0 Td[(.)-704(Not)1(e)-421(th)1(at)]TJ/F19 9.9626 Tf 57.1642 0 Td[(typ)51(e)]TJ/F8 9.9626 Tf 22.2435 0 Td[(and)]TJ/F19 9.9626 Tf 20.2332 0 Td[(kind)]TJ ET 1 0 0 1 429.7787 455.7613 cm q @@ -5040,19 +5517,19 @@ S Q 1 0 0 1 -429.7787 -455.7613 cm BT -/F19 9.9626 Tf 432.8339 455.7613 Td[(p)51(ar)51(ameter)]TJ/F8 9.9626 Tf 48.5364 0 Td[(m)27(u)1(s)-1(t)]TJ -304.6199 -11.9552 Td[(b)-27(e)-318(c)28(hose)-1(n)-316(acc)-1(ord)1(in)1(g)-317(to)-317(th)1(e)-317(re)-1(al)1(/c)-1(ompl)1(e)-1(x,)-319(s)-1(in)1(gle)-1(/d)1(oub)1(le)-317(pr)1(e)-1(cision)-317(v)28(ersion)-316(of)]TJ 0 -11.9551 Td[(MLD2P)1(4)-333(und)1(e)-1(r)-333(u)1(s)-1(e.)]TJ/F40 9.9626 Tf -45.9708 -11.9552 Td[(desc_a)-1464(type\050psb_desc_type\051,)-525(intent\050in\051)]TJ/F8 9.9626 Tf 208.1114 0 Td[(.)]TJ -162.1406 -11.9552 Td[(The)-491(com)-1(m)28(un)1(ication)-490(des)-1(crip)1(tor)-490(as)-1(so)-28(ciate)-1(d)-490(to)-490(the)-491(matr)1(ix)-491(to)-490(b)-27(e)-491(prec)-1(on)1(di)1(-)]TJ 0 -11.9551 Td[(tion)1(e)-1(d)1(.)]TJ/F40 9.9626 Tf -45.9708 -11.9552 Td[(info)-2514(integer,)-525(intent\050out\051)]TJ/F8 9.9626 Tf 150.5776 0 Td[(.)]TJ -104.6068 -11.9552 Td[(Er)1(ror)-333(co)-28(de.)-444(See)-334(Sec)-1(t)1(ion)]TJ +/F19 9.9626 Tf 432.8339 455.7613 Td[(p)51(ar)51(ameter)]TJ/F8 9.9626 Tf 48.5364 0 Td[(m)27(u)1(s)-1(t)]TJ -304.6199 -11.9552 Td[(b)-27(e)-318(c)28(hose)-1(n)-316(acc)-1(ord)1(in)1(g)-317(to)-317(th)1(e)-317(re)-1(al)1(/c)-1(ompl)1(e)-1(x,)-319(s)-1(in)1(gle)-1(/d)1(oub)1(le)-317(pr)1(e)-1(cision)-317(v)28(ersion)-316(of)]TJ 0 -11.9551 Td[(MLD2P)1(4)-333(und)1(e)-1(r)-333(u)1(s)-1(e.)]TJ/F39 9.9626 Tf -45.9708 -11.9552 Td[(desc_a)-1464(type\050psb_desc_type\051,)-525(intent\050in\051)]TJ/F8 9.9626 Tf 208.1114 0 Td[(.)]TJ -162.1406 -11.9552 Td[(The)-491(com)-1(m)28(un)1(ication)-490(des)-1(crip)1(tor)-490(as)-1(so)-28(ciate)-1(d)-490(to)-490(the)-491(matr)1(ix)-491(to)-490(b)-27(e)-491(prec)-1(on)1(di)1(-)]TJ 0 -11.9551 Td[(tion)1(e)-1(d)1(.)]TJ/F39 9.9626 Tf -45.9708 -11.9552 Td[(info)-2514(integer,)-525(intent\050out\051)]TJ/F8 9.9626 Tf 150.5776 0 Td[(.)]TJ -104.6068 -11.9552 Td[(Er)1(ror)-333(co)-28(de.)-444(See)-334(Sec)-1(t)1(ion)]TJ ET 1 0 0 1 282.9634 372.0751 cm 0 0 1 rg 0 0 1 RG 1 0 0 1 -282.9634 -372.0751 cm BT -/F8 9.9626 Tf 282.9634 372.0751 Td[(7)]TJ +/F8 9.9626 Tf 282.9634 372.0751 Td[(6)]TJ ET 1 0 0 1 287.9447 372.0751 cm 0 g 0 G 1 0 0 1 -287.9447 -372.0751 cm BT -/F8 9.9626 Tf 291.2656 372.0751 Td[(for)-333(d)1(e)-1(t)1(ails.)]TJ/F40 9.9626 Tf -160.486 -11.9551 Td[(trans)-1989(character\050len=1\051,)-525(optional,)-525(intent\050in\051.)]TJ/F8 9.9626 Tf 45.9708 -11.9552 Td[(If)]TJ/F40 9.9626 Tf 11.6988 0 Td[(trans)]TJ/F8 9.9626 Tf 31.2088 0 Td[(=)]TJ/F40 9.9626 Tf 12.8058 0 Td[('N','n')]TJ/F8 9.9626 Tf 41.6694 0 Td[(th)1(e)-1(n)]TJ/F11 9.9626 Tf 24.4289 0 Td[(op)]TJ/F8 9.9626 Tf 9.8416 0 Td[(\050)]TJ/F11 9.9626 Tf 3.8744 0 Td[(M)]TJ/F13 6.9738 Tf 10.7513 3.6154 Td[(\000)]TJ/F7 6.9738 Tf 6.2267 0 Td[(1)]TJ/F8 9.9626 Tf 4.4693 -3.6154 Td[(\051)-568(=)]TJ/F11 9.9626 Tf 22.9449 0 Td[(M)]TJ/F13 6.9738 Tf 10.7514 3.6154 Td[(\000)]TJ/F7 6.9738 Tf 6.2266 0 Td[(1)]TJ/F8 9.9626 Tf 4.4694 -3.6154 Td[(;)-595(i)1(f)]TJ/F40 9.9626 Tf 19.5612 0 Td[(trans)]TJ/F8 9.9626 Tf 31.2087 0 Td[(=)]TJ/F40 9.9626 Tf 12.8058 0 Td[('T','t')]TJ/F8 9.9626 Tf 41.6694 0 Td[(th)1(e)-1(n)]TJ/F11 9.9626 Tf -306.6124 -11.9552 Td[(op)]TJ/F8 9.9626 Tf 9.8416 0 Td[(\050)]TJ/F11 9.9626 Tf 3.8744 0 Td[(M)]TJ/F13 6.9738 Tf 10.7513 3.6154 Td[(\000)]TJ/F7 6.9738 Tf 6.2267 0 Td[(1)]TJ/F8 9.9626 Tf 4.4694 -3.6154 Td[(\051)-278(=)]TJ/F11 9.9626 Tf 17.1578 0 Td[(M)]TJ/F13 6.9738 Tf 10.7513 3.6154 Td[(\000)]TJ/F10 6.9738 Tf 6.2267 0 Td[(T)]TJ/F8 9.9626 Tf 9.597 -3.6154 Td[(\050tr)1(ansp)-28(ose)-334(of)]TJ/F11 9.9626 Tf 59.9143 0 Td[(M)]TJ/F13 6.9738 Tf 10.7513 3.6154 Td[(\000)]TJ/F7 6.9738 Tf 6.2267 0 Td[(1)]TJ/F8 9.9626 Tf 4.4694 -3.6154 Td[(\051.)]TJ/F40 9.9626 Tf -206.2286 -11.9551 Td[(work)]TJ/F19 9.9626 Tf 45.9708 0 Td[(typ)51(e)]TJ/F40 9.9626 Tf 18.0613 0 Td[(\050)]TJ/F19 9.9626 Tf 5.2303 0 Td[(kind)]TJ +/F8 9.9626 Tf 291.2656 372.0751 Td[(for)-333(d)1(e)-1(t)1(ails.)]TJ/F39 9.9626 Tf -160.486 -11.9551 Td[(trans)-1989(character\050len=1\051,)-525(optional,)-525(intent\050in\051.)]TJ/F8 9.9626 Tf 45.9708 -11.9552 Td[(If)]TJ/F39 9.9626 Tf 11.6988 0 Td[(trans)]TJ/F8 9.9626 Tf 31.2088 0 Td[(=)]TJ/F39 9.9626 Tf 12.8058 0 Td[('N','n')]TJ/F8 9.9626 Tf 41.6694 0 Td[(th)1(e)-1(n)]TJ/F11 9.9626 Tf 24.4289 0 Td[(op)]TJ/F8 9.9626 Tf 9.8416 0 Td[(\050)]TJ/F11 9.9626 Tf 3.8744 0 Td[(M)]TJ/F13 6.9738 Tf 10.7513 3.6154 Td[(\000)]TJ/F7 6.9738 Tf 6.2267 0 Td[(1)]TJ/F8 9.9626 Tf 4.4693 -3.6154 Td[(\051)-568(=)]TJ/F11 9.9626 Tf 22.9449 0 Td[(M)]TJ/F13 6.9738 Tf 10.7514 3.6154 Td[(\000)]TJ/F7 6.9738 Tf 6.2266 0 Td[(1)]TJ/F8 9.9626 Tf 4.4694 -3.6154 Td[(;)-595(i)1(f)]TJ/F39 9.9626 Tf 19.5612 0 Td[(trans)]TJ/F8 9.9626 Tf 31.2087 0 Td[(=)]TJ/F39 9.9626 Tf 12.8058 0 Td[('T','t')]TJ/F8 9.9626 Tf 41.6694 0 Td[(th)1(e)-1(n)]TJ/F11 9.9626 Tf -306.6124 -11.9552 Td[(op)]TJ/F8 9.9626 Tf 9.8416 0 Td[(\050)]TJ/F11 9.9626 Tf 3.8744 0 Td[(M)]TJ/F13 6.9738 Tf 10.7513 3.6154 Td[(\000)]TJ/F7 6.9738 Tf 6.2267 0 Td[(1)]TJ/F8 9.9626 Tf 4.4694 -3.6154 Td[(\051)-278(=)]TJ/F11 9.9626 Tf 17.1578 0 Td[(M)]TJ/F13 6.9738 Tf 10.7513 3.6154 Td[(\000)]TJ/F10 6.9738 Tf 6.2267 0 Td[(T)]TJ/F8 9.9626 Tf 9.597 -3.6154 Td[(\050tr)1(ansp)-28(ose)-334(of)]TJ/F11 9.9626 Tf 59.9143 0 Td[(M)]TJ/F13 6.9738 Tf 10.7513 3.6154 Td[(\000)]TJ/F7 6.9738 Tf 6.2267 0 Td[(1)]TJ/F8 9.9626 Tf 4.4694 -3.6154 Td[(\051.)]TJ/F39 9.9626 Tf -206.2286 -11.9551 Td[(work)]TJ/F19 9.9626 Tf 45.9708 0 Td[(typ)51(e)]TJ/F39 9.9626 Tf 18.0613 0 Td[(\050)]TJ/F19 9.9626 Tf 5.2303 0 Td[(kind)]TJ ET 1 0 0 1 218.9842 324.2545 cm q @@ -5065,7 +5542,7 @@ S Q 1 0 0 1 -218.9842 -324.2545 cm BT -/F19 9.9626 Tf 222.0394 324.2545 Td[(p)51(ar)51(ameter)]TJ/F40 9.9626 Tf 44.3541 0 Td[(\051,)-525(dimension\050:\051,)-525(optional,)-525(target)]TJ/F8 9.9626 Tf 172.6013 0 Td[(.)]TJ -262.2444 -11.9552 Td[(W)84(orkspace)-1(.)-6765(Its)-2441(s)-1(i)1(z)-1(e)-2441(m)28(ust)-2441(b)-27(e)-2441(at)-2440(leas)-1(t)]TJ/F40 9.9626 Tf 0 -11.9552 Td[(4)-525(*)-525(psb_cd_get_local_cols\050desc_a\051)]TJ/F8 9.9626 Tf 177.6271 0 Td[(\050se)-1(e)-505(th)1(e)-505(PS)1(B)-1(LAS)-503(Us)-1(er's)-505(G)1(uid)1(e)-1(\051.)]TJ -177.6271 -11.9551 Td[(Note)-624(th)1(at)]TJ/F19 9.9626 Tf 51.4415 0 Td[(typ)51(e)]TJ/F8 9.9626 Tf 24.2718 0 Td[(and)]TJ/F19 9.9626 Tf 22.2615 0 Td[(kind)]TJ +/F19 9.9626 Tf 222.0394 324.2545 Td[(p)51(ar)51(ameter)]TJ/F39 9.9626 Tf 44.3541 0 Td[(\051,)-525(dimension\050:\051,)-525(optional,)-525(target)]TJ/F8 9.9626 Tf 172.6013 0 Td[(.)]TJ -262.2444 -11.9552 Td[(W)84(orkspace)-1(.)-6765(Its)-2441(s)-1(i)1(z)-1(e)-2441(m)28(ust)-2441(b)-27(e)-2441(at)-2440(leas)-1(t)]TJ/F39 9.9626 Tf 0 -11.9552 Td[(4)-525(*)-525(psb_cd_get_local_cols\050desc_a\051)]TJ/F8 9.9626 Tf 177.6271 0 Td[(\050se)-1(e)-505(th)1(e)-505(PS)1(B)-1(LAS)-503(Us)-1(er's)-505(G)1(uid)1(e)-1(\051.)]TJ -177.6271 -11.9551 Td[(Note)-624(th)1(at)]TJ/F19 9.9626 Tf 51.4415 0 Td[(typ)51(e)]TJ/F8 9.9626 Tf 24.2718 0 Td[(and)]TJ/F19 9.9626 Tf 22.2615 0 Td[(kind)]TJ ET 1 0 0 1 293.6673 288.389 cm q @@ -5078,7 +5555,7 @@ S Q 1 0 0 1 -293.6673 -288.389 cm BT -/F19 9.9626 Tf 296.7225 288.389 Td[(p)51(ar)51(ameter)]TJ/F8 9.9626 Tf 50.5647 0 Td[(m)27(u)1(s)-1(t)-623(b)-27(e)-624(c)27(h)1(os)-1(en)-623(ac)-1(cord)1(ing)-623(to)-623(the)]TJ -170.5368 -11.9552 Td[(real/com)-1(p)1(lex,)-333(s)-1(in)1(gle/doub)1(le)-334(p)1(rec)-1(ision)-333(v)28(ersion)-333(of)-333(M)1(LD2P4)-333(un)1(der)-333(use)-1(.)]TJ/F18 11.9552 Tf -51.9484 -26.687 Td[(6.)-1(5)-1125(Subr)-1(out)-1(ine)-376(ml)-1(d)]TJ +/F19 9.9626 Tf 296.7225 288.389 Td[(p)51(ar)51(ameter)]TJ/F8 9.9626 Tf 50.5647 0 Td[(m)27(u)1(s)-1(t)-623(b)-27(e)-624(c)27(h)1(os)-1(en)-623(ac)-1(cord)1(ing)-623(to)-623(the)]TJ -170.5368 -11.9552 Td[(real/com)-1(p)1(lex,)-333(s)-1(in)1(gle/doub)1(le)-334(p)1(rec)-1(ision)-333(v)28(ersion)-333(of)-333(M)1(LD2P4)-333(un)1(der)-333(use)-1(.)]TJ/F18 11.9552 Tf -51.9484 -26.687 Td[(5.)-1(5)-1125(Subr)-1(out)-1(ine)-376(ml)-1(d)]TJ ET 1 0 0 1 247.8242 249.7467 cm q @@ -5098,13 +5575,13 @@ ET 0 g 0 G 1 0 0 1 -239.3728 -231.3574 cm BT -/F40 9.9626 Tf 244.3541 231.3574 Td[(mld_precfree\050p,info\051)]TJ/F8 9.9626 Tf -119.5521 -21.1124 Td[(This)-333(rout)1(ine)-334(d)1(e)-1(al)1(lo)-28(cate)-1(s)-333(the)-334(p)1(rec)-1(on)1(diti)1(oner)-333(data)-333(s)-1(tr)1(uctur)1(e)-1(.)]TJ/F37 9.9626 Tf 0 -25.7572 Td[(Argumen)32(t)-1(s)]TJ/F40 9.9626 Tf 5.9776 -17.7362 Td[(p)-4089(type\050mld_)]TJ/F19 9.9626 Tf 93.0439 0 Td[(x)]TJ/F40 9.9626 Tf 5.8212 0 Td[(prec_type\051,)-525(intent\050inout\051)]TJ/F8 9.9626 Tf 130.7585 0 Td[(.)]TJ -183.6528 -11.9552 Td[(The)-366(p)1(rec)-1(on)1(dit)1(ioner)-365(data)-365(structu)1(re)-1(.)-540(Note)-365(that)]TJ/F19 9.9626 Tf 203.9037 0 Td[(x)]TJ/F8 9.9626 Tf 9.4605 0 Td[(m)27(u)1(s)-1(t)-365(b)-27(e)-366(c)28(hos)-1(en)-365(acc)-1(or)1(din)1(g)]TJ -213.3642 -11.9552 Td[(to)-306(t)1(he)-306(real/c)-1(omp)1(le)-1(x)1(,)-311(s)-1(in)1(gle/doub)1(le)-306(pr)1(e)-1(cision)-305(v)28(e)-1(rsion)-305(of)-305(MLD2P)1(4)-306(un)1(der)-306(u)1(s)-1(e.)]TJ/F40 9.9626 Tf -45.9708 -11.9551 Td[(info)-2514(integer,)-525(intent\050out\051)]TJ/F8 9.9626 Tf 150.5776 0 Td[(.)]TJ -104.6068 -11.9552 Td[(Er)1(ror)-333(co)-28(de.)-444(See)-334(Sec)-1(t)1(ion)]TJ +/F39 9.9626 Tf 244.3541 231.3574 Td[(mld_precfree\050p,info\051)]TJ/F8 9.9626 Tf -119.5521 -21.1124 Td[(This)-333(rout)1(ine)-334(d)1(e)-1(al)1(lo)-28(cate)-1(s)-333(the)-334(p)1(rec)-1(on)1(diti)1(oner)-333(data)-333(s)-1(tr)1(uctur)1(e)-1(.)]TJ/F37 9.9626 Tf 0 -25.7572 Td[(Argumen)32(t)-1(s)]TJ/F39 9.9626 Tf 5.9776 -17.7362 Td[(p)-4089(type\050mld_)]TJ/F19 9.9626 Tf 93.0439 0 Td[(x)]TJ/F39 9.9626 Tf 5.8212 0 Td[(prec_type\051,)-525(intent\050inout\051)]TJ/F8 9.9626 Tf 130.7585 0 Td[(.)]TJ -183.6528 -11.9552 Td[(The)-366(p)1(rec)-1(on)1(dit)1(ioner)-365(data)-365(structu)1(re)-1(.)-540(Note)-365(that)]TJ/F19 9.9626 Tf 203.9037 0 Td[(x)]TJ/F8 9.9626 Tf 9.4605 0 Td[(m)27(u)1(s)-1(t)-365(b)-27(e)-366(c)28(hos)-1(en)-365(acc)-1(or)1(din)1(g)]TJ -213.3642 -11.9552 Td[(to)-306(t)1(he)-306(real/c)-1(omp)1(le)-1(x)1(,)-311(s)-1(in)1(gle/doub)1(le)-306(pr)1(e)-1(cision)-305(v)28(e)-1(rsion)-305(of)-305(MLD2P)1(4)-306(un)1(der)-306(u)1(s)-1(e.)]TJ/F39 9.9626 Tf -45.9708 -11.9551 Td[(info)-2514(integer,)-525(intent\050out\051)]TJ/F8 9.9626 Tf 150.5776 0 Td[(.)]TJ -104.6068 -11.9552 Td[(Er)1(ror)-333(co)-28(de.)-444(See)-334(Sec)-1(t)1(ion)]TJ ET 1 0 0 1 282.9634 118.9309 cm 0 0 1 rg 0 0 1 RG 1 0 0 1 -282.9634 -118.9309 cm BT -/F8 9.9626 Tf 282.9634 118.9309 Td[(7)]TJ +/F8 9.9626 Tf 282.9634 118.9309 Td[(6)]TJ ET 1 0 0 1 287.9447 118.9309 cm 0 g 0 G @@ -5118,56 +5595,56 @@ ET 0 g 0 G endstream endobj -288 0 obj << +310 0 obj << /Type /Page -/Contents 289 0 R -/Resources 287 0 R +/Contents 311 0 R +/Resources 309 0 R /MediaBox [0 0 595.2756 841.8898] -/Parent 274 0 R -/Annots [ 291 0 R 293 0 R 298 0 R ] +/Parent 298 0 R +/Annots [ 313 0 R 315 0 R 320 0 R ] >> endobj -291 0 obj << +313 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [123.8057 740.0018 130.7796 748.9129] /Subtype /Link -/A << /S /GoTo /D (section.1) >> +/A << /S /GoTo /D (section.5) >> >> endobj -293 0 obj << +315 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [281.9671 367.4923 288.941 379.9899] /Subtype /Link -/A << /S /GoTo /D (section.7) >> +/A << /S /GoTo /D (section.6) >> >> endobj -298 0 obj << +320 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [281.9671 114.348 288.941 126.8456] /Subtype /Link -/A << /S /GoTo /D (section.7) >> +/A << /S /GoTo /D (section.6) >> >> endobj -290 0 obj << -/D [288 0 R /XYZ 124.802 740.9981 null] +312 0 obj << +/D [310 0 R /XYZ 124.802 740.9981 null] >> endobj -50 0 obj << -/D [288 0 R /XYZ 124.802 716.0915 null] +46 0 obj << +/D [310 0 R /XYZ 124.802 716.0915 null] >> endobj -292 0 obj << -/D [288 0 R /XYZ 124.802 572.7227 null] +314 0 obj << +/D [310 0 R /XYZ 124.802 572.7227 null] >> endobj -54 0 obj << -/D [288 0 R /XYZ 124.802 259.0452 null] +50 0 obj << +/D [310 0 R /XYZ 124.802 259.0452 null] >> endobj -297 0 obj << -/D [288 0 R /XYZ 124.802 176.1164 null] +319 0 obj << +/D [310 0 R /XYZ 124.802 176.1164 null] >> endobj -287 0 obj << -/Font << /F34 129 0 R /F8 91 0 R /F18 73 0 R /F40 175 0 R /F11 136 0 R /F13 234 0 R /F7 237 0 R /F37 109 0 R /F19 132 0 R /F10 296 0 R >> +309 0 obj << +/Font << /F34 134 0 R /F8 95 0 R /F18 77 0 R /F39 181 0 R /F11 142 0 R /F13 249 0 R /F7 252 0 R /F37 113 0 R /F19 137 0 R /F10 318 0 R >> /ProcSet [ /PDF /Text ] >> endobj -301 0 obj << -/Length 2758 +323 0 obj << +/Length 2760 >> stream 1 0 0 1 124.802 740.9981 cm @@ -5175,13 +5652,13 @@ stream 0 0 1 rg 0 0 1 RG 1 0 0 1 -124.802 -740.9981 cm BT -/F34 9.9626 Tf 124.802 740.9981 Td[(1)]TJ +/F34 9.9626 Tf 124.802 740.9981 Td[(5)]TJ ET 1 0 0 1 129.7833 740.9981 cm 0 g 0 G 1 0 0 1 -129.7833 -740.9981 cm BT -/F34 9.9626 Tf 133.1042 740.9981 Td[(General)-333(Ov)28(ervi)1(e)-1(w)]TJ +/F34 9.9626 Tf 133.1042 740.9981 Td[(Use)-1(r)-333(In)28(terf)1(ac)-1(e)]TJ ET 1 0 0 1 124.802 739.4042 cm q @@ -5189,18 +5666,18 @@ q 0 J 0.3985 w 0 0.1992 m -86.1908 0.1992 l +69.2958 0.1992 l S Q 1 0 0 1 -124.802 -739.4042 cm BT -/F8 9.9626 Tf 458.5504 740.9981 Td[(19)]TJ +/F8 9.9626 Tf 458.5504 740.9981 Td[(18)]TJ ET 1 0 0 1 468.5131 740.9981 cm 0 g 0 G 1 0 0 1 -468.5131 -740.9981 cm BT -/F18 11.9552 Tf 124.802 706.1289 Td[(6.)-1(6)-1125(Subr)-1(out)-1(ine)-376(ml)-1(d)]TJ +/F18 11.9552 Tf 124.802 706.1289 Td[(5.)-1(6)-1125(Subr)-1(out)-1(ine)-376(ml)-1(d)]TJ ET 1 0 0 1 247.8242 706.1289 cm q @@ -5220,7 +5697,7 @@ ET 0 g 0 G 1 0 0 1 -236.7577 -687.7395 cm BT -/F40 9.9626 Tf 241.739 687.7395 Td[(mld_precdescr\050p,iout\051)]TJ/F8 9.9626 Tf -116.937 -21.9178 Td[(This)-370(rou)1(tine)-370(pri)1(n)28(ts)-371(a)-370(d)1(e)-1(sc)-1(r)1(ipti)1(on)-370(of)-370(th)1(e)-371(pr)1(e)-1(cond)1(ition)1(e)-1(r)-370(t)1(o)-371(th)1(e)-371(stand)1(ard)-370(ou)1(tpu)1(t)]TJ 0 -11.9552 Td[(or)-267(to)-267(a)-267(\014le.)]TJ/F37 9.9626 Tf 50.4151 0 Td[(F)128(AR)-1(E)-307(U)1(NA)-308(SOLA)-307(R)31(OU)1(TI)-1(NE)1(,)-308(C)1(OL)-307(P)95(AR)-1(AME)1(TR)31(O)-307(IOUT)]TJ -50.4151 -11.9551 Td[(OPZIONALE)1(.)]TJ 0 -25.8959 Td[(Argumen)32(t)-1(s)]TJ/F40 9.9626 Tf 5.9776 -17.7362 Td[(p)-4089(type\050mld_)]TJ/F19 9.9626 Tf 93.0439 0 Td[(x)]TJ/F40 9.9626 Tf 5.8212 0 Td[(prec_type\051,)-525(intent\050in\051)]TJ/F8 9.9626 Tf 115.0675 0 Td[(.)]TJ -167.9618 -11.9552 Td[(The)-545(pr)1(e)-1(cond)1(ition)1(e)-1(r)-544(data)-544(s)-1(tr)1(uctur)1(e)-1(.)-1078(Note)-545(that)]TJ/F19 9.9626 Tf 218.2066 0 Td[(x)]TJ/F8 9.9626 Tf 11.2483 0 Td[(m)27(u)1(s)-1(t)-544(b)-28(e)-545(c)28(hose)-1(n)]TJ -229.4549 -11.9552 Td[(acc)-1(ord)1(in)1(g)-590(t)1(o)-590(t)1(he)-590(r)1(e)-1(al)1(/c)-1(omplex,)-653(sin)1(gle)-1(/d)1(oub)1(le)-590(p)1(rec)-1(ision)-588(v)28(e)-1(rsion)-588(of)]TJ 0 -11.9551 Td[(MLD2P)1(4)-333(und)1(e)-1(r)-333(u)1(s)-1(e.)]TJ/F40 9.9626 Tf -45.9708 -11.9552 Td[(iout)-2514(integer,)-525(intent\050in\051)]TJ/F8 9.9626 Tf 145.3473 0 Td[(.)]TJ -99.3765 -11.9552 Td[(The)-283(id)-283(of)-282(th)1(e)-284(\014)1(le)-284(wh)1(e)-1(re)-283(th)1(e)-284(p)1(re)-1(cond)1(ition)1(e)-1(r)-282(des)-1(crip)1(tion)-282(w)-1(i)1(ll)-283(b)-27(e)-284(p)1(rin)29(te)-1(d)1(.)]TJ 0 -11.9551 Td[(If)]TJ/F40 9.9626 Tf 9.9627 0 Td[(iout)]TJ/F8 9.9626 Tf 24.2422 0 Td[(is)-334(miss)-1(i)1(ng,)-333(th)1(e)-334(des)-1(crip)1(tion)-333(is)-333(pri)1(n)28(ted)-333(on)-333(the)-333(s)-1(tan)1(dard)-332(outp)1(ut.)]TJ +/F39 9.9626 Tf 241.739 687.7395 Td[(mld_precdescr\050p,iout\051)]TJ/F8 9.9626 Tf -116.937 -21.9178 Td[(This)-370(rou)1(tine)-370(pri)1(n)28(ts)-371(a)-370(d)1(e)-1(sc)-1(r)1(ipti)1(on)-370(of)-370(th)1(e)-371(pr)1(e)-1(cond)1(ition)1(e)-1(r)-370(t)1(o)-371(th)1(e)-371(stand)1(ard)-370(ou)1(tpu)1(t)]TJ 0 -11.9552 Td[(or)-267(to)-267(a)-267(\014le.)]TJ/F37 9.9626 Tf 50.4151 0 Td[(F)128(AR)-1(E)-307(U)1(NA)-308(SOLA)-307(R)31(OU)1(TI)-1(NE)1(,)-308(C)1(OL)-307(P)95(AR)-1(AME)1(TR)31(O)-307(IOUT)]TJ -50.4151 -11.9551 Td[(OPZIONALE)1(.)]TJ 0 -25.8959 Td[(Argumen)32(t)-1(s)]TJ/F39 9.9626 Tf 5.9776 -17.7362 Td[(p)-4089(type\050mld_)]TJ/F19 9.9626 Tf 93.0439 0 Td[(x)]TJ/F39 9.9626 Tf 5.8212 0 Td[(prec_type\051,)-525(intent\050in\051)]TJ/F8 9.9626 Tf 115.0675 0 Td[(.)]TJ -167.9618 -11.9552 Td[(The)-545(pr)1(e)-1(cond)1(ition)1(e)-1(r)-544(data)-544(s)-1(tr)1(uctur)1(e)-1(.)-1078(Note)-545(that)]TJ/F19 9.9626 Tf 218.2066 0 Td[(x)]TJ/F8 9.9626 Tf 11.2483 0 Td[(m)27(u)1(s)-1(t)-544(b)-28(e)-545(c)28(hose)-1(n)]TJ -229.4549 -11.9552 Td[(acc)-1(ord)1(in)1(g)-590(t)1(o)-590(t)1(he)-590(r)1(e)-1(al)1(/c)-1(omplex,)-653(sin)1(gle)-1(/d)1(oub)1(le)-590(p)1(rec)-1(ision)-588(v)28(e)-1(rsion)-588(of)]TJ 0 -11.9551 Td[(MLD2P)1(4)-333(und)1(e)-1(r)-333(u)1(s)-1(e.)]TJ/F39 9.9626 Tf -45.9708 -11.9552 Td[(iout)-2514(integer,)-525(intent\050in\051)]TJ/F8 9.9626 Tf 145.3473 0 Td[(.)]TJ -99.3765 -11.9552 Td[(The)-283(id)-283(of)-282(th)1(e)-284(\014)1(le)-284(wh)1(e)-1(re)-283(th)1(e)-284(p)1(re)-1(cond)1(ition)1(e)-1(r)-282(des)-1(crip)1(tion)-282(w)-1(i)1(ll)-283(b)-27(e)-284(p)1(rin)29(te)-1(d)1(.)]TJ 0 -11.9551 Td[(If)]TJ/F39 9.9626 Tf 9.9627 0 Td[(iout)]TJ/F8 9.9626 Tf 24.2422 0 Td[(is)-334(miss)-1(i)1(ng,)-333(th)1(e)-334(des)-1(crip)1(tion)-333(is)-333(pri)1(n)28(ted)-333(on)-333(the)-333(s)-1(tan)1(dard)-332(outp)1(ut.)]TJ ET 1 0 0 1 124.802 90.4377 cm 0 g 0 G @@ -5228,36 +5705,36 @@ ET 0 g 0 G endstream endobj -300 0 obj << +322 0 obj << /Type /Page -/Contents 301 0 R -/Resources 299 0 R +/Contents 323 0 R +/Resources 321 0 R /MediaBox [0 0 595.2756 841.8898] -/Parent 274 0 R -/Annots [ 303 0 R ] +/Parent 298 0 R +/Annots [ 325 0 R ] >> endobj -303 0 obj << +325 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] /Rect [123.8057 740.0018 130.7796 748.9129] /Subtype /Link -/A << /S /GoTo /D (section.1) >> +/A << /S /GoTo /D (section.5) >> >> endobj -302 0 obj << -/D [300 0 R /XYZ 124.802 740.9981 null] +324 0 obj << +/D [322 0 R /XYZ 124.802 740.9981 null] >> endobj -58 0 obj << -/D [300 0 R /XYZ 124.802 716.0915 null] +54 0 obj << +/D [322 0 R /XYZ 124.802 716.0915 null] >> endobj -304 0 obj << -/D [300 0 R /XYZ 124.802 607.6441 null] +326 0 obj << +/D [322 0 R /XYZ 124.802 607.6441 null] >> endobj -299 0 obj << -/Font << /F34 129 0 R /F8 91 0 R /F18 73 0 R /F40 175 0 R /F37 109 0 R /F19 132 0 R >> +321 0 obj << +/Font << /F34 134 0 R /F8 95 0 R /F18 77 0 R /F39 181 0 R /F37 113 0 R /F19 137 0 R >> /ProcSet [ /PDF /Text ] >> endobj -307 0 obj << -/Length 859 +329 0 obj << +/Length 853 >> stream 1 0 0 1 124.802 740.9981 cm @@ -5265,13 +5742,80 @@ stream 0 0 1 rg 0 0 1 RG 1 0 0 1 -124.802 -740.9981 cm BT -/F34 9.9626 Tf 124.802 740.9981 Td[(1)]TJ +/F34 9.9626 Tf 124.802 740.9981 Td[(6)]TJ ET 1 0 0 1 129.7833 740.9981 cm 0 g 0 G 1 0 0 1 -129.7833 -740.9981 cm BT -/F34 9.9626 Tf 133.1042 740.9981 Td[(General)-333(Ov)28(ervi)1(e)-1(w)]TJ +/F34 9.9626 Tf 133.1042 740.9981 Td[(Er)1(ror)-333(h)1(andl)1(ing)]TJ +ET +1 0 0 1 124.802 737.467 cm +q +[]0 d +0 J +0.3985 w +0 0.1992 m +72.7274 0.1992 l +S +Q +1 0 0 1 -124.802 -737.467 cm +BT +/F8 9.9626 Tf 458.5504 740.9981 Td[(19)]TJ +ET +1 0 0 1 468.5131 740.9981 cm +0 g 0 G +1 0 0 1 -468.5131 -740.9981 cm +BT +/F18 14.3462 Tf 124.802 706.1289 Td[(6)-1125(E)-1(rr)-1(or)-376(Ha)1(ndl)-1(ing)]TJ/F8 9.9626 Tf 0 -21.821 Td[(Er)1(ror)-333(h)1(andl)1(ing)-333(-)-334(Brev)28(e)-334(d)1(e)-1(sc)-1(ri)1(z)-1(ion)1(e)-334(con)-333(rin)29(vio)-333(alla)-333(guid)1(a)-333(di)-333(PS)1(B)-1(LAS)]TJ +ET +1 0 0 1 124.802 90.4377 cm +0 g 0 G +1 0 0 1 343.7111 0 cm +0 g 0 G +endstream +endobj +328 0 obj << +/Type /Page +/Contents 329 0 R +/Resources 327 0 R +/MediaBox [0 0 595.2756 841.8898] +/Parent 298 0 R +/Annots [ 331 0 R ] +>> endobj +331 0 obj << +/Type /Annot +/Border[0 0 0]/H/I/C[1 0 0] +/Rect [123.8057 738.0647 130.7796 748.9129] +/Subtype /Link +/A << /S /GoTo /D (section.6) >> +>> endobj +330 0 obj << +/D [328 0 R /XYZ 124.802 740.9981 null] +>> endobj +58 0 obj << +/D [328 0 R /XYZ 124.802 716.0915 null] +>> endobj +327 0 obj << +/Font << /F34 134 0 R /F8 95 0 R /F18 77 0 R >> +/ProcSet [ /PDF /Text ] +>> endobj +334 0 obj << +/Length 4518 +>> +stream +1 0 0 1 124.802 740.9981 cm +0 g 0 G +0 0 1 rg 0 0 1 RG +1 0 0 1 -124.802 -740.9981 cm +BT +/F34 9.9626 Tf 124.802 740.9981 Td[(A)]TJ +ET +1 0 0 1 132.274 740.9981 cm +0 g 0 G +1 0 0 1 -132.274 -740.9981 cm +BT +/F34 9.9626 Tf 135.5949 740.9981 Td[(Lice)-1(n)1(s)-1(e)]TJ ET 1 0 0 1 124.802 739.4042 cm q @@ -5279,7 +5823,7 @@ q 0 J 0.3985 w 0 0.1992 m -86.1908 0.1992 l +42.535 0.1992 l S Q 1 0 0 1 -124.802 -739.4042 cm @@ -5290,7 +5834,14 @@ ET 0 g 0 G 1 0 0 1 -468.5131 -740.9981 cm BT -/F18 14.3462 Tf 124.802 706.1289 Td[(7)-1125(E)-1(rr)-1(or)-376(Ha)1(ndl)-1(ing)]TJ/F8 9.9626 Tf 0 -21.821 Td[(Er)1(ror)-333(h)1(andl)1(ing)-333(-)-334(Brev)28(e)-334(d)1(e)-1(sc)-1(ri)1(z)-1(ion)1(e)-334(con)-333(rin)29(vio)-333(alla)-333(guid)1(a)-333(di)-333(PS)1(B)-1(LAS)]TJ +/F18 14.3462 Tf 124.802 706.1289 Td[(A)-1125(L)1(i)-1(cense)]TJ/F8 9.9626 Tf 0 -20.8247 Td[(The)-334(M)1(LD2P4)-333(is)-334(f)1(ree)-1(l)1(y)-334(d)1(istrib)1(utab)1(le)-334(u)1(nder)-333(th)1(e)-334(foll)1(o)27(win)1(g)-333(c)-1(op)28(y)1(righ)28(t)-333(terms)-1(:)]TJ +ET +1 0 0 1 119.8207 666.3752 cm +0 g 0 G +0 g 0 G +1 0 0 1 -119.8207 -666.3752 cm +BT +/F40 8.9664 Tf 242.4843 666.3752 Td[(MLD2P4)-1050(version)-525(1.0)]TJ -117.6823 -10.9589 Td[(MultiLevel)-525(Domain)-525(Decomposition)-525(Parallel)-525(Preconditioners)-525(Package)]TJ 51.7802 -10.9589 Td[(based)-525(on)-525(PSBLAS)-525(\050Parallel)-525(Sparse)-525(BLAS)-525(version)-525(2.3\051)]TJ -51.7802 -21.9178 Td[(\050C\051)-525(Copyright)-525(2008)]TJ 94.1458 -21.9178 Td[(Salvatore)-525(Filippone)-1050(University)-525(of)-525(Rome)-525(Tor)-525(Vergata)]TJ 0 -10.9589 Td[(Alfredo)-525(Buttari)-3150(University)-525(of)-525(Rome)-525(Tor)-525(Vergata)]TJ 0 -10.9589 Td[(Pasqua)-525(D'Ambra)-3675(ICAR-CNR,)-525(Naples)]TJ 0 -10.9589 Td[(Daniela)-525(di)-525(Serafino)-1050(Second)-525(University)-525(of)-525(Naples)]TJ -94.1458 -32.8767 Td[(Redistribution)-525(and)-525(use)-525(in)-525(source)-525(and)-525(binary)-525(forms,)-525(with)-525(or)-525(without)]TJ 0 -10.9589 Td[(modification,)-525(are)-525(permitted)-525(provided)-525(that)-525(the)-525(following)-525(conditions)]TJ 0 -10.9589 Td[(are)-525(met:)]TJ 9.4146 -10.9589 Td[(1.)-525(Redistributions)-525(of)-525(source)-525(code)-525(must)-525(retain)-525(the)-525(above)-525(copyright)]TJ 14.1219 -10.9589 Td[(notice,)-525(this)-525(list)-525(of)-525(conditions)-525(and)-525(the)-525(following)-525(disclaimer.)]TJ -14.1219 -10.9589 Td[(2.)-525(Redistributions)-525(in)-525(binary)-525(form)-525(must)-525(reproduce)-525(the)-525(above)-525(copyright)]TJ 14.1219 -10.9589 Td[(notice,)-525(this)-525(list)-525(of)-525(conditions,)-525(and)-525(the)-525(following)-525(disclaimer)-525(in)-525(the)]TJ 0 -10.9589 Td[(documentation)-525(and/or)-525(other)-525(materials)-525(provided)-525(with)-525(the)-525(distribution.)]TJ -14.1219 -10.9589 Td[(3.)-525(The)-525(name)-525(of)-525(the)-525(MLD2P4)-525(group)-525(or)-525(the)-525(names)-525(of)-525(its)-525(contributors)-525(may)]TJ 14.1219 -10.9589 Td[(not)-525(be)-525(used)-525(to)-525(endorse)-525(or)-525(promote)-525(products)-525(derived)-525(from)-525(this)]TJ 0 -10.9589 Td[(software)-525(without)-525(specific)-525(written)-525(permission.)]TJ -23.5365 -21.9178 Td[(THIS)-525(SOFTWARE)-525(IS)-525(PROVIDED)-525(BY)-525(THE)-525(COPYRIGHT)-525(HOLDERS)-525(AND)-525(CONTRIBUTORS)]TJ 0 -10.9589 Td[(``AS)-525(IS'')-525(AND)-525(ANY)-525(EXPRESS)-525(OR)-525(IMPLIED)-525(WARRANTIES,)-525(INCLUDING,)-525(BUT)-525(NOT)-525(LIMITE)1(D)]TJ 0 -10.9589 Td[(TO,)-525(THE)-525(IMPLIED)-525(WARRANTIES)-525(OF)-525(MERCHANTABILITY)-525(AND)-525(FITNESS)-525(FOR)-525(A)-525(PARTICULAR)]TJ 0 -10.9589 Td[(PURPOSE)-525(ARE)-525(DISCLAIMED.)-525(IN)-525(NO)-525(EVENT)-525(SHALL)-525(THE)-525(MLD2P4)-525(GROUP)-525(OR)-525(ITS)-525(CONTRIBU)1(TORS)]TJ 0 -10.9589 Td[(BE)-525(LIABLE)-525(FOR)-525(ANY)-525(DIRECT,)-525(INDIRECT,)-525(INCIDENTAL,)-525(SPECIAL,)-525(EXEMPLARY,)-525(OR)]TJ 0 -10.9589 Td[(CONSEQUENTIAL)-525(DAMAGES)-525(\050INCLUDING,)-525(BUT)-525(NOT)-525(LIMITED)-525(TO,)-525(PROCUREMENT)-525(OF)]TJ 0 -10.9589 Td[(SUBSTITUTE)-525(GOODS)-525(OR)-525(SERVICES;)-525(LOSS)-525(OF)-525(USE,)-525(DATA,)-525(OR)-525(PROFITS;)-525(OR)-525(BUSINESS)]TJ 0 -10.9589 Td[(INTERRUPTION\051)-525(HOWEVER)-525(CAUSED)-525(AND)-525(ON)-525(ANY)-525(THEORY)-525(OF)-525(LIABILITY,)-525(WHETHER)-525(IN)]TJ 0 -10.9589 Td[(CONTRACT,)-525(STRICT)-525(LIABILITY,)-525(OR)-525(TORT)-525(\050INCLUDING)-525(NEGLIGENCE)-525(OR)-525(OTHERWISE\051)]TJ 0 -10.9589 Td[(ARISING)-525(IN)-525(ANY)-525(WAY)-525(OUT)-525(OF)-525(THE)-525(USE)-525(OF)-525(THIS)-525(SOFTWARE,)-525(EVEN)-525(IF)-525(ADVISED)-525(OF)-525(THE)]TJ 0 -10.9589 Td[(POSSIBILITY)-525(OF)-525(SUCH)-525(DAMAGE.)]TJ ET 1 0 0 1 124.802 90.4377 cm 0 g 0 G @@ -5298,33 +5849,33 @@ ET 0 g 0 G endstream endobj -306 0 obj << +333 0 obj << /Type /Page -/Contents 307 0 R -/Resources 305 0 R +/Contents 334 0 R +/Resources 332 0 R /MediaBox [0 0 595.2756 841.8898] -/Parent 274 0 R -/Annots [ 309 0 R ] +/Parent 298 0 R +/Annots [ 336 0 R ] >> endobj -309 0 obj << +336 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] -/Rect [123.8057 740.0018 130.7796 748.9129] +/Rect [123.8057 740.0018 133.2703 748.8021] /Subtype /Link -/A << /S /GoTo /D (section.1) >> +/A << /S /GoTo /D (section.A) >> >> endobj -308 0 obj << -/D [306 0 R /XYZ 124.802 740.9981 null] +335 0 obj << +/D [333 0 R /XYZ 124.802 740.9981 null] >> endobj 62 0 obj << -/D [306 0 R /XYZ 124.802 716.0915 null] +/D [333 0 R /XYZ 124.802 716.0915 null] >> endobj -305 0 obj << -/Font << /F34 129 0 R /F8 91 0 R /F18 73 0 R >> +332 0 obj << +/Font << /F34 134 0 R /F8 95 0 R /F18 77 0 R /F40 235 0 R >> /ProcSet [ /PDF /Text ] >> endobj -312 0 obj << -/Length 10353 +339 0 obj << +/Length 10670 >> stream 1 0 0 1 124.802 740.9981 cm @@ -5332,24 +5883,24 @@ stream 0 0 1 rg 0 0 1 RG 1 0 0 1 -124.802 -740.9981 cm BT -/F34 9.9626 Tf 124.802 740.9981 Td[(1)]TJ +/F34 9.9626 Tf 124.802 740.9981 Td[(B)]TJ ET -1 0 0 1 129.7833 740.9981 cm +1 0 0 1 131.8589 740.9981 cm 0 g 0 G -1 0 0 1 -129.7833 -740.9981 cm +1 0 0 1 -131.8589 -740.9981 cm BT -/F34 9.9626 Tf 133.1042 740.9981 Td[(General)-333(Ov)28(ervi)1(e)-1(w)]TJ +/F34 9.9626 Tf 135.1798 740.9981 Td[(Bibl)1(iograp)1(h)28(y)]TJ ET -1 0 0 1 124.802 739.4042 cm +1 0 0 1 124.802 737.467 cm q []0 d 0 J 0.3985 w 0 0.1992 m -86.1908 0.1992 l +66.1687 0.1992 l S Q -1 0 0 1 -124.802 -739.4042 cm +1 0 0 1 -124.802 -737.467 cm BT /F8 9.9626 Tf 458.5504 740.9981 Td[(21)]TJ ET @@ -5357,139 +5908,176 @@ ET 0 g 0 G 1 0 0 1 -468.5131 -740.9981 cm BT -/F18 14.3462 Tf 124.802 706.1289 Td[(Refer)-1(ence)-1(s)]TJ +/F18 14.3462 Tf 124.802 706.1289 Td[(B)-1125(Bibl)-1(io)-1(gr)-1(a)1(ph)31(y)]TJ ET -1 0 0 1 124.802 684.3079 cm +1 0 0 1 124.802 656.5094 cm 0 g 0 G -1 0 0 1 -124.802 -684.3079 cm +1 0 0 1 -124.802 -656.5094 cm BT -/F8 9.9626 Tf 129.7833 684.3079 Td[([1])]TJ +/F8 9.9626 Tf 129.7833 656.5094 Td[([1])]TJ ET -1 0 0 1 140.2995 684.3079 cm +1 0 0 1 140.2995 656.5094 cm 0 g 0 G -1 0 0 1 -140.2995 -684.3079 cm +1 0 0 1 -140.2995 -656.5094 cm BT -/F8 9.9626 Tf 145.2808 684.3079 Td[(Be)-1(ll)1(a,)-378(G.,)-377(Fili)1(pp)-27(one,)-378(S.)1(,)-378(De)-369(Maio,)-378(A.)1(,)-378(T)83(es)-1(ta,)-378(M)1(.:)-516(A)-369(S)1(im)28(ulati)1(on)-369(Mo)-28(d)1(e)-1(l)-368(for)]TJ 0 -11.9552 Td[(F)84(ore)-1(st)-268(Fires.)-269(In)1(:)-412(Don)1(garra,)-281(J.,)-281(M)1(ads)-1(en,)-281(K)1(.,)-281(W)83(asniews)-1(ki)1(,)-281(J.)-269(\050)1(e)-1(d)1(s)-1(.\051:)-411(Pro)-27(c)-1(ee)-1(d)1(-)]TJ 0 -11.9551 Td[(in)1(gs)-395(of)-394(P)84(AR)-1(A)-394(04)-394(W)83(ork)1(s)-1(h)1(op)-394(on)-394(State)-395(of)-394(t)1(he)-395(Art)-394(in)-394(S)1(c)-1(i)1(e)-1(n)28(ti)1(\014c)-395(Comput)1(ing.)]TJ 0 -11.9552 Td[(Lec)-1(tu)1(re)-334(Notes)-334(in)-333(Compu)1(te)-1(r)-333(S)1(c)-1(i)1(e)-1(n)1(c)-1(e,)-333(3732.)-334(Berlin)1(:)-444(Sp)1(rin)1(ge)-1(r,)-333(2005)]TJ +/F8 9.9626 Tf 145.2808 656.5094 Td[(M.)-325(Brezina,)-326(P)84(.)-325(V)83(an)28(\024)472(ek,)]TJ/F19 9.9626 Tf 99.0804 0 Td[(A)-350(Black-Box)-350(I)1(t)-1(er)52(ative)-350(S)-1(ol)1(ver)-350(Base)51(d)-350(on)-351(a)-350(T)1(w)-1(o-L)51(evel)]TJ -99.0804 -11.9552 Td[(Schw)-1(arz)-357(Metho)51(d)]TJ/F8 9.9626 Tf 70.4188 0 Td[(,)-333(Com)-1(p)1(uti)1(ng,)-333(63,)-333(1999,)-333(233{263.)]TJ ET -1 0 0 1 124.802 628.5171 cm +1 0 0 1 124.802 625.7751 cm 0 g 0 G -1 0 0 1 -124.802 -628.5171 cm +1 0 0 1 -124.802 -625.7751 cm BT -/F8 9.9626 Tf 129.7833 628.5171 Td[([2])]TJ +/F8 9.9626 Tf 129.7833 625.7751 Td[([2])]TJ ET -1 0 0 1 140.2995 628.5171 cm +1 0 0 1 140.2995 625.7751 cm 0 g 0 G -1 0 0 1 -140.2995 -628.5171 cm +1 0 0 1 -140.2995 -625.7751 cm BT -/F8 9.9626 Tf 145.2808 628.5171 Td[(A.)-316(B)-1(u)1(ttari)1(,)-320(D.)-316(di)-316(Sera\014)1(no,)-320(P)84(.)-316(D'Am)28(bra,)-319(S.)-316(Fili)1(pp)-27(one,)-99(2LEV-D2P4:)-436(a)-316(pac)28(k-)]TJ 0 -11.9551 Td[(age)-389(of)-387(high)1(-p)-28(erf)1(orma)-1(n)1(c)-1(e)-388(pr)1(e)-1(cond)1(ition)1(e)-1(r)1(s)-1(,)-218(App)1(licable)-388(Algebra)-388(in)-387(En)1(ginee)-1(r)1(-)]TJ 0 -11.9552 Td[(in)1(g,)-393(C)-1(omm)27(u)1(ni)1(c)-1(ation)1(s)-382(an)1(d)-381(Com)-1(p)1(utin)1(g,)-393(V)83(olu)1(m)-1(e)-381(18,)-393(Num)27(b)-27(er)-381(3,)-393(Ma)28(y)83(,)-393(2007,)]TJ 0 -11.9552 Td[(pp)1(.)-333(223-)-1(239)]TJ +/F8 9.9626 Tf 145.2808 625.7751 Td[(A.)-358(Bu)1(ttari,)-363(P)83(.)-357(D'Am)28(bra,)-363(D.)-358(d)1(i)-358(Sera\014)1(no,)-364(S)1(.)-358(F)1(ilip)1(p)-28(on)1(e)-1(,)]TJ/F19 9.9626 Tf 237.6121 0 Td[(Exten)-1(di)1(n)-1(g)-380(PSBL)-1(AS)]TJ -237.6121 -11.9551 Td[(to)-442(B)1(uil)1(d)-442(Par)51(al)-50(lel)-441(Schw)-1(ar)1(z)-441(P)-1(r)52(e)51(c)51(ond)-1(i)1(tioners)]TJ/F8 9.9626 Tf 185.0156 0 Td[(,)-447(i)1(n)-424(,)-446(J.)-424(Dongar)1(ra,)-446(K.)-424(Mad)1(s)-1(en,)]TJ -185.0156 -11.9552 Td[(J.)-303(W)83(asniews)-1(ki)1(,)-310(edit)1(ors)-1(,)-309(P)1(ro)-28(ce)-1(edin)1(gs)-304(of)-304(P)84(ARA)-304(04)-303(W)83(ork)1(s)-1(h)1(op)-304(on)-303(S)1(tate)-304(of)-304(th)1(e)]TJ 0 -11.9552 Td[(Art)-287(in)-287(S)1(c)-1(ien)28(ti\014)1(c)-288(Com)-1(p)1(uti)1(ng,)-296(Le)-1(ctur)1(e)-288(Note)-1(s)-287(in)-287(Co)-1(mp)1(uter)-287(Scie)-1(n)1(c)-1(e,)-297(S)1(pr)1(inger,)]TJ 0 -11.9551 Td[(2005,)-333(593{602.)]TJ ET -1 0 0 1 124.802 572.7264 cm +1 0 0 1 124.802 559.1753 cm 0 g 0 G -1 0 0 1 -124.802 -572.7264 cm +1 0 0 1 -124.802 -559.1753 cm BT -/F8 9.9626 Tf 129.7833 572.7264 Td[([3])]TJ +/F8 9.9626 Tf 129.7833 559.1753 Td[([3])]TJ ET -1 0 0 1 140.2995 572.7264 cm +1 0 0 1 140.2995 559.1753 cm 0 g 0 G -1 0 0 1 -140.2995 -572.7264 cm +1 0 0 1 -140.2995 -559.1753 cm BT -/F8 9.9626 Tf 145.2808 572.7264 Td[(P)84(.)-691(D'Am)28(bra,)-780(S)1(.)-691(Fili)1(pp)-27(one,)-780(D.)-691(Di)-691(S)1(e)-1(ra\014)1(no)-818(On)-690(the)-691(De)-1(v)28(elop)1(m)-1(en)28(t)-691(of)]TJ 0 -11.9552 Td[(PS)1(BLAS-base)-1(d)-429(P)28(aral)1(le)-1(l)-429(T)-1(w)28(o-le)-1(v)28(el)-430(S)1(c)27(h)28(w)28(arz)-430(Pr)1(e)-1(cond)1(ition)1(e)-1(rs)-731(App)1(lied)-430(Nu)1(-)]TJ 0 -11.9552 Td[(me)-1(r)1(ic)-1(al)-245(M)1(athem)-1(ati)1(c)-1(s,)-263(El)1(s)-1(evier)-245(Scie)-1(n)1(c)-1(e,)-263(V)84(olume)-246(57,)-263(Iss)-1(u)1(e)-1(s)-245(11-)-1(12,)-263(No)28(v)28(em)27(b)-27(e)-1(r)1(-)]TJ 0 -11.9551 Td[(Dec)-1(em)27(b)-27(e)-1(r)-333(2007,)-333(P)29(age)-1(s)-334(1181-1196.)]TJ +/F8 9.9626 Tf 145.2808 559.1753 Td[(A.)-289(B)-1(u)1(ttari,)-298(P)84(.)-289(D'Am)27(b)1(ra,)-298(D.)-289(di)-289(Sera\014)1(no,)-298(S.)-289(Fil)1(ipp)-27(one,)]TJ/F19 9.9626 Tf 231.6021 0 Td[(2LE)-1(V-D2P4:)-440(a)-318(p)51(ack-)]TJ -231.6021 -11.9551 Td[(age)-404(o)-1(f)-404(hi)1(gh)-1(-)1(p)51(erfor)1(man)-1(c)52(e)-405(pr)52(e)51(c)51(on)-1(di)1(t)-1(i)1(on)-1(er)1(s)]TJ/F8 9.9626 Tf 174.7748 0 Td[(,)-396(Appl)1(ic)-1(ab)1(le)-384(Alge)-1(b)1(ra)-384(in)-383(En)1(gineer-)]TJ -174.7748 -11.9552 Td[(in)1(g,)-333(C)-1(omm)27(u)1(ni)1(c)-1(ation)1(s)-334(an)1(d)-333(C)-1(ompu)1(tin)1(g,)-333(18,)-334(3,)-333(M)1(a)27(y)84(,)-333(2007,)-333(223{239.)]TJ ET -1 0 0 1 124.802 516.9356 cm +1 0 0 1 124.802 516.4859 cm 0 g 0 G -1 0 0 1 -124.802 -516.9356 cm +1 0 0 1 -124.802 -516.4859 cm +BT +/F8 9.9626 Tf 129.7833 516.4859 Td[([4])]TJ +ET +1 0 0 1 140.2995 516.4859 cm +0 g 0 G +1 0 0 1 -140.2995 -516.4859 cm +BT +/F8 9.9626 Tf 145.2808 516.4859 Td[(P)84(.)-686(D'Am)28(br)1(a,)-774(S.)-685(Filip)1(p)-27(one,)-774(D.)-686(Di)-686(S)1(e)-1(r)1(a\014n)1(o,)]TJ/F19 9.9626 Tf 212.8325 0 Td[(On)-682(the)-683(Devel)1(opment)-683(of)]TJ -212.8325 -11.9552 Td[(PS)-1(B)1(L)-1(AS-b)51(ase)51(d)-473(Par)51(al)-50(lel)-472(Two-level)-472(Schw)-1(ar)1(z)-473(Pr)51(e)51(c)51(onditioners)]TJ/F8 9.9626 Tf 260.6563 0 Td[(,)-489(App)1(lied)-458(Nu-)]TJ -260.6563 -11.9551 Td[(me)-1(r)1(ic)-1(al)-333(M)1(athem)-1(ati)1(c)-1(s,)-333(Else)-1(v)1(ie)-1(r)-333(S)1(c)-1(i)1(e)-1(n)1(c)-1(e,)-333(57,)-334(11-12,)-333(2007,)-333(1181-1196.)]TJ +ET +1 0 0 1 124.802 473.7964 cm +0 g 0 G +1 0 0 1 -124.802 -473.7964 cm +BT +/F8 9.9626 Tf 129.7833 473.7964 Td[([5])]TJ +ET +1 0 0 1 140.2995 473.7964 cm +0 g 0 G +1 0 0 1 -140.2995 -473.7964 cm +BT +/F8 9.9626 Tf 145.2808 473.7964 Td[(X.)-461(C.)-461(Cai,)-493(M)1(.)-461(Sark)1(is)-1(,)]TJ/F19 9.9626 Tf 102.5584 0 Td[(A)-476(R)51(estri)1(ct)-1(e)52(d)-476(A)51(dditive)-475(Schw)-1(arz)-475(Pr)51(e)51(c)52(o)-1(nditi)1(o)-1(ner)-475(f)1(o)-1(r)]TJ -102.5584 -11.9552 Td[(Gener)52(al)-459(Sp)51(arse)-459(Li)1(n)-1(e)51(ar)-458(Systems)]TJ/F8 9.9626 Tf 138.5474 0 Td[(,)-470(SIAM)-443(Jou)1(rnal)-442(on)-443(Scien)28(ti\014)1(c)-444(Com)-1(p)1(uti)1(ng,)]TJ -138.5474 -11.9551 Td[(21,)-333(2,)-333(1999,)-333(792{797.)]TJ +ET +1 0 0 1 124.802 431.107 cm +0 g 0 G +1 0 0 1 -124.802 -431.107 cm BT -/F8 9.9626 Tf 129.7833 516.9356 Td[([4])]TJ +/F8 9.9626 Tf 129.7833 431.107 Td[([6])]TJ ET -1 0 0 1 140.2995 516.9356 cm +1 0 0 1 140.2995 431.107 cm 0 g 0 G -1 0 0 1 -140.2995 -516.9356 cm +1 0 0 1 -140.2995 -431.107 cm BT -/F8 9.9626 Tf 145.2808 516.9356 Td[(A.)-408(B)-1(u)1(ttari,)-427(P)84(.)-409(D')1(Am)27(b)1(ra,)-427(D.)-409(d)1(i)-409(S)1(e)-1(r)1(a\014no)-408(and)-408(S.)-408(Fil)1(ipp)-27(one,)]TJ/F19 9.9626 Tf 259.8493 0 Td[(Exten)-1(di)1(n)-1(g)-427(PS-)]TJ -259.8493 -11.9552 Td[(BLAS)-293(to)-293(Bui)1(ld)-292(P)-1(ar)52(al)-51(lel)-292(Schw)-1(ar)1(z)-293(Pr)51(e)51(c)52(o)-1(nditi)1(o)-1(ner)1(s)]TJ/F8 9.9626 Tf 208.271 0 Td[(,)-276(in)-262(,)-276(J.)-263(D)1(ongarr)1(a,)-277(K.)-262(M)1(ad-)]TJ -208.271 -11.9552 Td[(se)-1(n)1(,)-288(J.)-275(W)83(asni)1(e)-1(ws)-1(k)1(i,)-287(e)-1(d)1(itors,)-287(Pr)1(o)-28(c)-1(ee)-1(d)1(in)1(gs)-277(of)-275(P)83(ARA)-276(04)-275(W)83(ork)1(s)-1(h)1(op)-276(on)-275(State)-276(of)]TJ 0 -11.9551 Td[(th)1(e)-345(Ar)1(t)-344(in)-344(S)1(c)-1(i)1(e)-1(n)28(t)1(i\014c)-344(Com)-1(p)1(uti)1(ng,)-346(pp)1(.)-344(593{602,)-347(Lecture)-344(Notes)-345(i)1(n)-344(Comput)1(e)-1(r)]TJ 0 -11.9552 Td[(Science)-1(,)-333(S)1(pri)1(nger,)-333(2005.)]TJ +/F8 9.9626 Tf 145.2808 431.107 Td[(X.)-246(C.)-247(Cai,)-263(O.)-246(B)-1(.)-246(Wid)1(lu)1(nd,)]TJ/F19 9.9626 Tf 114.0144 0 Td[(Domain)-278(De)51(c)51(om)1(p)51(o)-1(s)1(ition)-278(A)25(l)1(go)-1(r)1(ithms)-278(f)1(o)-1(r)-277(Inde\014nite)]TJ -114.0144 -11.9552 Td[(El)-51(li)1(pt)-1(i)1(c)-396(Pr)52(o)-1(bl)1(ems)]TJ/F8 9.9626 Tf 74.867 0 Td[(,)-384(SIAM)-374(Jou)1(rn)1(al)-374(on)-374(Scien)28(ti\014)1(c)-375(and)-373(Stati)1(s)-1(tical)-374(Com)-1(p)1(uti)1(ng,)]TJ -74.867 -11.9552 Td[(13,)-333(1,)-333(1992,)-333(243{258.)]TJ ET -1 0 0 1 124.802 449.1896 cm +1 0 0 1 124.802 388.4175 cm 0 g 0 G -1 0 0 1 -124.802 -449.1896 cm +1 0 0 1 -124.802 -388.4175 cm BT -/F8 9.9626 Tf 129.7833 449.1896 Td[([5])]TJ +/F8 9.9626 Tf 129.7833 388.4175 Td[([7])]TJ ET -1 0 0 1 140.2995 449.1896 cm +1 0 0 1 140.2995 388.4175 cm 0 g 0 G -1 0 0 1 -140.2995 -449.1896 cm +1 0 0 1 -140.2995 -388.4175 cm BT -/F8 9.9626 Tf 145.2808 449.1896 Td[(X.C.)-403(C)-1(ai)-403(an)1(d)-404(O)1(.)-404(B.)-403(Widl)1(un)1(d,)]TJ/F19 9.9626 Tf 136.5162 0 Td[(Domain)-422(De)51(c)51(omp)51(ositi)1(o)-1(n)-422(A)25(lgor)1(ithms)-422(for)-422(In-)]TJ -136.5162 -11.9552 Td[(de\014n)-1(i)1(te)-311(E)-1(l)-50(liptic)-310(P)-1(r)52(oblems)]TJ/F8 9.9626 Tf 108.9471 0 Td[(,)-292(SIAM)-282(Jou)1(rnal)-282(on)-282(S)1(c)-1(i)1(e)-1(n)28(ti)1(\014c)-283(an)1(d)-282(Stati)1(s)-1(ti)1(c)-1(al)-282(Com)-1(-)]TJ -108.9471 -11.9551 Td[(pu)1(tin)1(g,)-333(13\0501\051,)-333(pp)1(.)-334(243{258,)-333(1992.)]TJ +/F8 9.9626 Tf 145.2808 388.4175 Td[(T.)-299(C)-1(h)1(an)-299(and)-299(T.)-299(Math)1(e)-1(w,)]TJ/F19 9.9626 Tf 112.1197 0 Td[(Domain)-326(De)51(c)51(omp)51(osition)-327(A)26(lgori)1(t)-1(hm)1(s)]TJ/F8 9.9626 Tf 151.0367 0 Td[(,)-306(in)-299(A.)-299(Is)-1(erl)1(e)-1(s,)]TJ -263.1564 -11.9552 Td[(editor)1(,)-333(Ac)-1(ta)-333(Numerica)-334(1994,)-333(61{143.)-333(Cam)27(b)1(rid)1(ge)-334(Uni)1(v)28(e)-1(rsit)28(y)-333(Pr)1(e)-1(ss)-1(.)]TJ ET -1 0 0 1 124.802 405.354 cm +1 0 0 1 124.802 357.6832 cm 0 g 0 G -1 0 0 1 -124.802 -405.354 cm +1 0 0 1 -124.802 -357.6832 cm BT -/F8 9.9626 Tf 129.7833 405.354 Td[([6])]TJ +/F8 9.9626 Tf 129.7833 357.6832 Td[([8])]TJ ET -1 0 0 1 140.2995 405.354 cm +1 0 0 1 140.2995 357.6832 cm 0 g 0 G -1 0 0 1 -140.2995 -405.354 cm +1 0 0 1 -140.2995 -357.6832 cm BT -/F8 9.9626 Tf 145.2808 405.354 Td[(T.)-299(C)-1(h)1(an)-299(and)-299(T.)-299(Math)1(e)-1(w,)]TJ/F19 9.9626 Tf 112.1197 0 Td[(Domain)-326(De)51(c)51(omp)51(osition)-327(A)26(lgori)1(t)-1(hm)1(s)]TJ/F8 9.9626 Tf 151.0367 0 Td[(,)-306(in)-299(A.)-299(Is)-1(erl)1(e)-1(s,)]TJ -263.1564 -11.9552 Td[(editor)1(,)-266(Acta)-249(Nu)1(m)-1(erica)-249(1994,)-265(pp)1(.)-249(61{143,)-265(1994.)-248(C)-1(am)28(br)1(idge)-249(Uni)1(v)28(e)-1(r)1(s)-1(it)28(y)-248(Pr)1(e)-1(ss)-1(.)]TJ +/F8 9.9626 Tf 145.2808 357.6832 Td[(T.A.)-424(D)1(a)27(v)1(is)-1(,)]TJ/F19 9.9626 Tf 55.9084 0 Td[(A)25(l)1(gorithm)-441(832:)-626(U)-1(M)1(FP)76(A)26(CK)-441(-)-441(an)-441(Unsymm)1(et)-1(r)1(ic-p)51(attern)-441(Mu)1(l-)]TJ -55.9084 -11.9551 Td[(tifr)52(ont)-1(al)-696(Metho)51(d)-697(with)-697(a)-697(C)1(olum)1(n)-697(P)-1(r)52(e-or)51(der)1(ing)-697(Str)51(ate)51(gy)]TJ/F8 9.9626 Tf 254.0128 0 Td[(,)-794(A)28(CM)-701(T)83(ran)1(s)-1(-)]TJ -254.0128 -11.9552 Td[(actions)-878(on)-877(Math)1(e)-1(matical)-878(S)1(oft)28(w)27(ar)1(e)-1(,)-1013(30,)-1014(2004,)-1014(196{199.)-877(\050See)-878(als)-1(o)]TJ/F39 9.9626 Tf 0 -11.9552 Td[(http://www.cise.ufl.edu/)-525(davis/)]TJ/F8 9.9626 Tf 162.1406 0 Td[(\051)]TJ ET -1 0 0 1 124.802 373.4736 cm +1 0 0 1 124.802 303.0386 cm 0 g 0 G -1 0 0 1 -124.802 -373.4736 cm +1 0 0 1 -124.802 -303.0386 cm BT -/F8 9.9626 Tf 129.7833 373.4736 Td[([7])]TJ +/F8 9.9626 Tf 129.7833 303.0386 Td[([9])]TJ ET -1 0 0 1 140.2995 373.4736 cm +1 0 0 1 140.2995 303.0386 cm 0 g 0 G -1 0 0 1 -140.2995 -373.4736 cm +1 0 0 1 -140.2995 -303.0386 cm BT -/F8 9.9626 Tf 145.2808 373.4736 Td[(J.)-265(J.)-266(D)1(ongarr)1(a)-266(an)1(d)-266(R.)-265(C.)-266(W)1(haley)83(,)]TJ/F19 9.9626 Tf 146.5659 0 Td[(A)-296(User')1(s)-296(G)1(uide)-295(to)-296(the)-296(BLA)25(C)1(S)-296(v.)-295(1.1)]TJ/F8 9.9626 Tf 156.5892 0 Td[(,)-279(La-)]TJ -303.1551 -11.9552 Td[(pac)28(k)-290(W)83(ork)1(ing)-290(Note)-291(94,)-298(T)83(e)-1(c)28(h.)-290(Re)-1(p)1(.)-290(UT)-1(-CS-95-281,)-299(Univ)28(ersit)28(y)-290(of)-290(T)83(enness)-1(ee)-1(,)]TJ 0 -11.9552 Td[(Mar)1(c)27(h)-333(1995)-333(\050up)-27(dat)1(e)-1(d)-333(M)1(a)27(y)-333(1997\051.)]TJ +/F8 9.9626 Tf 145.2808 303.0386 Td[(J.W)1(.)-455(D)1(e)-1(mm)-1(el,)-484(S.)1(C)-1(.)-454(E)1(ise)-1(n)1(s)-1(tat,)-484(J.R.)-454(Gi)1(lb)-27(e)-1(rt)1(,)-485(X.S)1(.)-454(Li)-454(and)-454(J.)1(W.H.)-454(Liu)1(,)-485(A)]TJ 0 -11.9552 Td[(sup)-27(e)-1(r)1(no)-28(d)1(al)-382(appr)1(oac)27(h)-382(to)-382(sparse)-383(p)1(artial)-382(p)1(iv)28(otin)1(g,)-395(S)1(IAM)-382(Jour)1(nal)-382(on)-382(M)1(atrix)]TJ 0 -11.9551 Td[(Anal)1(ys)-1(i)1(s)-334(and)-333(Ap)1(pl)1(ic)-1(ati)1(ons,)-334(20,)-333(3,)-333(1999,)-333(720{755.)]TJ ET -1 0 0 1 124.802 329.6379 cm +1 0 0 1 124.802 260.3492 cm 0 g 0 G -1 0 0 1 -124.802 -329.6379 cm +1 0 0 1 -124.802 -260.3492 cm BT -/F8 9.9626 Tf 129.7833 329.6379 Td[([8])]TJ +/F8 9.9626 Tf 124.802 260.3492 Td[([10])]TJ ET -1 0 0 1 140.2995 329.6379 cm +1 0 0 1 140.2995 260.3492 cm 0 g 0 G -1 0 0 1 -140.2995 -329.6379 cm +1 0 0 1 -140.2995 -260.3492 cm BT -/F8 9.9626 Tf 145.2808 329.6379 Td[(I.)-488(Du)1(\013)-1(,)-526(M.)-488(M)1(arron)1(e)-1(,)-526(G.)-488(Rad)1(ic)-1(ati)-487(and)-488(C.)-488(Vi)1(ttoli,)]TJ/F19 9.9626 Tf 229.0719 0 Td[(L)51(evel)-500(3)-500(Basic)-500(Line)51(ar)]TJ -229.0719 -11.9551 Td[(A)25(l)1(gebr)51(a)-462(S)-1(u)1(bpr)51(o)51(gr)52(a)-1(m)1(s)-463(f)1(or)-462(Sp)51(a)-1(r)1(se)-462(Matric)51(es:)-668(a)-463(User)-462(L)51(evel)-462(Interf)1(ac)51(e)]TJ/F8 9.9626 Tf 292.2059 0 Td[(,)-475(A)28(C)-1(M)]TJ -292.2059 -11.9552 Td[(T)83(ran)1(s)-1(action)1(s)-334(on)-333(Mat)1(hem)-1(atical)-333(Sof)1(t)28(w)27(ar)1(e)-1(,)-333(23\0503\051,)-333(p)1(p.)-333(379{401,)-333(1997.)]TJ +/F8 9.9626 Tf 145.2808 260.3492 Td[(E.)-371(Efstath)1(iou,)-381(J.)-372(G.)-372(Gan)1(der,)]TJ/F19 9.9626 Tf 129.7867 0 Td[(Why)-393(R)51(estricte)51(d)-393(A)50(dditi)1(ve)-394(Schw)-1(ar)1(z)-394(C)1(o)-1(nver)52(ges)]TJ -129.7867 -11.9552 Td[(F)77(aster)-312(than)-312(A)50(dditi)1(ve)-312(Sch)-1(warz)]TJ/F8 9.9626 Tf 126.3428 0 Td[(,)-293(B)-1(IT)-283(Nume)-1(r)1(ic)-1(al)-283(M)1(athem)-1(ati)1(c)-1(s,)-293(43,)-294(2003,)-293(945{)]TJ -126.3428 -11.9552 Td[(959.)]TJ ET -1 0 0 1 124.802 285.8023 cm +1 0 0 1 124.802 217.6597 cm 0 g 0 G -1 0 0 1 -124.802 -285.8023 cm +1 0 0 1 -124.802 -217.6597 cm BT -/F8 9.9626 Tf 129.7833 285.8023 Td[([9])]TJ +/F8 9.9626 Tf 124.802 217.6597 Td[([11])]TJ ET -1 0 0 1 140.2995 285.8023 cm +1 0 0 1 140.2995 217.6597 cm 0 g 0 G -1 0 0 1 -140.2995 -285.8023 cm +1 0 0 1 -140.2995 -217.6597 cm BT -/F8 9.9626 Tf 145.2808 285.8023 Td[(I.)-358(Du\013,)-365(M.)-358(Heroux)-358(an)1(d)-359(R.)-358(P)28(ozo,)]TJ/F19 9.9626 Tf 146.5094 0 Td[(A)25(n)-381(Over)1(view)-381(o)-1(f)-380(the)-381(S)-1(p)51(ar)1(se)-381(Basic)-381(Line)51(ar)]TJ -146.5094 -11.9552 Td[(A)25(l)1(gebr)51(a)-348(Subpr)51(o)51(gr)52(ams:)-455(the)-348(N)-1(ew)-348(S)-1(tandar)51(d)-348(fr)52(o)-1(m)-348(the)-348(BLA)-1(S)-348(T)77(e)51(chnic)51(al)-347(F)76(or)1(um)]TJ/F8 9.9626 Tf 320.4649 0 Td[(,)]TJ -320.4649 -11.9551 Td[(A)28(CM)-333(T)83(ransactions)-333(on)-333(Math)1(e)-1(matical)-334(S)1(oft)28(w)28(are,)-333(28\0502\051,)-333(pp)1(.)-334(239{267,)-333(2002.)]TJ +/F8 9.9626 Tf 145.2808 217.6597 Td[(S.)-428(F)1(ilip)1(p)-28(on)1(e)-1(,)-451(A.)-428(B)-1(u)1(ttari)1(,)]TJ/F19 9.9626 Tf 114.7014 0 Td[(PS)-1(B)1(L)-1(AS-2.1)-445(User's)-444(Gui)1(d)-1(e.)-444(A)-446(R)51(efer)52(enc)51(e)-445(Gui)1(de)]TJ -114.7014 -11.9552 Td[(for)-357(th)-1(e)-357(P)-1(ar)52(al)-51(lel)-357(Sp)51(arse)-358(BLAS)-358(Libr)52(a)-1(r)1(y)]TJ/F8 9.9626 Tf 162.6278 0 Td[(,)-333(xxx)1(xx.)]TJ ET -1 0 0 1 124.802 241.9667 cm +1 0 0 1 124.802 186.9254 cm 0 g 0 G -1 0 0 1 -124.802 -241.9667 cm +1 0 0 1 -124.802 -186.9254 cm BT -/F8 9.9626 Tf 124.802 241.9667 Td[([10])]TJ +/F8 9.9626 Tf 124.802 186.9254 Td[([12])]TJ ET -1 0 0 1 140.2995 241.9667 cm +1 0 0 1 140.2995 186.9254 cm 0 g 0 G -1 0 0 1 -140.2995 -241.9667 cm +1 0 0 1 -140.2995 -186.9254 cm BT -/F8 9.9626 Tf 145.2808 241.9667 Td[(S.)-451(F)1(ilip)1(p)-28(on)1(e)-452(an)1(d)-451(M.)-451(Cola)-55(jann)1(i,)]TJ/F19 9.9626 Tf 145.2288 0 Td[(PS)-1(B)1(L)-1(AS:)-466(A)-467(Li)1(br)51(ary)-466(f)1(or)-466(P)-1(ar)52(al)-51(lel)-465(L)-1(i)1(ne)51(ar)]TJ -145.2288 -11.9552 Td[(A)25(l)1(gebr)51(a)-420(C)1(o)-1(m)1(putat)-1(i)1(on)-421(on)-420(Sp)51(arse)-420(M)1(at)-1(r)1(ic)51(es)]TJ/F8 9.9626 Tf 181.3753 0 Td[(,)-661(A)28(C)-1(M)-400(T)83(ran)1(s)-1(action)1(s)-402(on)-400(Math)1(e)-1(-)]TJ -181.3753 -11.9551 Td[(matical)-334(S)1(oft)28(w)28(are,)-333(26\0504\051,)-333(pp.)-333(527{550,)-333(2000.)]TJ +/F8 9.9626 Tf 145.2808 186.9254 Td[(S.)-355(F)1(ilip)1(p)-28(on)1(e)-1(,)-360(M.)-355(Cola)-55(jan)1(ni,)]TJ/F19 9.9626 Tf 123.4377 0 Td[(PS)-1(B)1(L)-1(AS:)-378(A)-378(Libr)52(a)-1(r)1(y)-378(f)1(or)-378(Par)51(al)-51(l)1(el)-378(Line)51(ar)-377(A)25(lge-)]TJ -123.4377 -11.9552 Td[(br)51(a)-331(C)1(omputat)-1(i)1(on)-332(on)-331(Sp)51(a)-1(r)1(se)-331(Matric)52(es)]TJ/F8 9.9626 Tf 158.9762 0 Td[(,)-310(A)28(CM)-304(T)83(ransactions)-304(o)-1(n)-303(Mathematical)]TJ -158.9762 -11.9551 Td[(Sof)1(t)28(w)27(ar)1(e)-1(,)-333(26,)-333(4,)-333(2000,)-333(527{550.)]TJ ET -1 0 0 1 124.802 198.1311 cm +1 0 0 1 124.802 144.236 cm 0 g 0 G -1 0 0 1 -124.802 -198.1311 cm +1 0 0 1 -124.802 -144.236 cm BT -/F8 9.9626 Tf 124.802 198.1311 Td[([11])]TJ +/F8 9.9626 Tf 124.802 144.236 Td[([13])]TJ ET -1 0 0 1 140.2995 198.1311 cm +1 0 0 1 140.2995 144.236 cm 0 g 0 G -1 0 0 1 -140.2995 -198.1311 cm +1 0 0 1 -140.2995 -144.236 cm BT -/F8 9.9626 Tf 145.2808 198.1311 Td[(S.)-266(Fil)1(ipp)-27(one,)-280(P)84(.)-267(D')1(Am)27(br)1(a,)-280(M.)-266(C)-1(ol)1(a)-56(jan)1(ni)1(,)]TJ/F19 9.9626 Tf 177.2974 0 Td[(Using)-297(a)-296(P)-1(ar)52(al)-51(lel)-296(Libr)52(ary)-296(of)-296(S)-1(p)51(ar)1(se)]TJ -177.2974 -11.9552 Td[(Line)51(ar)-352(A)26(lgebr)51(a)-352(i)1(n)-352(a)-352(Flu)1(id)-352(Dynami)1(cs)-352(A)-1(ppl)1(ic)51(ations)-352(Co)51(de)-352(on)-352(Linux)-351(Cl)1(usters)]TJ/F8 9.9626 Tf 320.4649 0 Td[(,)]TJ -320.4649 -11.9551 Td[(in)-398(G)1(.)-398(Joub)-27(e)-1(r)1(t,)-415(A.)-398(M)1(url)1(i,)-414(F.)-398(P)28(ete)-1(r)1(s)-1(,)-414(M.)-398(V)83(an)1(nes)-1(c)28(hi,)-414(editor)1(s)-1(,)-414(P)28(aral)1(le)-1(l)-398(Com-)]TJ 0 -11.9552 Td[(pu)1(tin)1(g)-355(-)-354(Adv)56(an)1(c)-1(es)-355(&)-354(Curr)1(e)-1(n)29(t)-355(Iss)-1(u)1(e)-1(s,)-359(pp)1(.)-354(441{448,)-360(Imp)-27(e)-1(r)1(ial)-354(C)-1(ol)1(le)-1(ge)-354(Pr)1(e)-1(ss)-1(,)]TJ 0 -11.9552 Td[(2002.)]TJ +/F8 9.9626 Tf 145.2808 144.236 Td[(X.)-402(S)1(.)-402(Li)1(,)-419(J.)-402(W)1(.)-402(Dem)-1(mel,)]TJ/F19 9.9626 Tf 114.1603 0 Td[(Sup)51(erLU)]TJ +ET +1 0 0 1 298.0205 144.236 cm +q +[]0 d +0 J +0.3985 w +0 0.1992 m +3.0552 0.1992 l +S +Q +1 0 0 1 -298.0205 -144.236 cm +BT +/F19 9.9626 Tf 301.0758 144.236 Td[(DIST)1(:)-421(A)-421(Sc)51(alabl)1(e)-421(Dis)1(t)-1(r)1(ibute)51(d-m)1(emory)]TJ -155.795 -11.9552 Td[(Sp)51(arse)-352(Dir)52(e)51(ct)-352(So)-1(l)1(ver)-352(f)1(o)-1(r)-351(U)-1(nsy)1(mmetri)1(c)-352(L)-1(i)1(ne)51(ar)-352(Systems)]TJ/F8 9.9626 Tf 235.2031 0 Td[(,)-328(A)28(C)-1(M)-326(T)83(ran)1(s)-1(actions)]TJ -235.2031 -11.9552 Td[(on)-333(Mat)1(hem)-1(ati)1(c)-1(al)-333(Sof)1(t)28(w)27(ar)1(e)-1(,)-333(29,)-333(2,)-333(2003,)-333(110{140.)]TJ ET 1 0 0 1 124.802 90.4377 cm 0 g 0 G @@ -5497,66 +6085,75 @@ ET 0 g 0 G endstream endobj -311 0 obj << +338 0 obj << /Type /Page -/Contents 312 0 R -/Resources 310 0 R +/Contents 339 0 R +/Resources 337 0 R /MediaBox [0 0 595.2756 841.8898] -/Parent 324 0 R -/Annots [ 314 0 R ] +/Parent 348 0 R +/Annots [ 341 0 R ] >> endobj -314 0 obj << +341 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] -/Rect [123.8057 740.0018 130.7796 748.9129] +/Rect [123.8057 738.0647 132.8552 748.9129] /Subtype /Link -/A << /S /GoTo /D (section.1) >> +/A << /S /GoTo /D (section.B) >> >> endobj -313 0 obj << -/D [311 0 R /XYZ 124.802 740.9981 null] +340 0 obj << +/D [338 0 R /XYZ 124.802 740.9981 null] >> endobj -315 0 obj << -/D [311 0 R /XYZ 124.802 696.2631 null] +66 0 obj << +/D [338 0 R /XYZ 124.802 716.0915 null] >> endobj -316 0 obj << -/D [311 0 R /XYZ 124.802 700.2482 null] +342 0 obj << +/D [338 0 R /XYZ 124.802 668.4646 null] >> endobj -194 0 obj << -/D [311 0 R /XYZ 124.802 642.5202 null] +152 0 obj << +/D [338 0 R /XYZ 124.802 671.8766 null] >> endobj -193 0 obj << -/D [311 0 R /XYZ 124.802 586.7294 null] +343 0 obj << +/D [338 0 R /XYZ 124.802 639.2051 null] >> endobj -317 0 obj << -/D [311 0 R /XYZ 124.802 530.9386 null] +199 0 obj << +/D [338 0 R /XYZ 124.802 572.6053 null] >> endobj -318 0 obj << -/D [311 0 R /XYZ 124.802 463.1927 null] +200 0 obj << +/D [338 0 R /XYZ 124.802 529.9158 null] >> endobj -319 0 obj << -/D [311 0 R /XYZ 124.802 418.8036 null] +344 0 obj << +/D [338 0 R /XYZ 124.802 487.2264 null] >> endobj -320 0 obj << -/D [311 0 R /XYZ 124.802 387.4766 null] +345 0 obj << +/D [338 0 R /XYZ 124.802 444.5369 null] >> endobj -321 0 obj << -/D [311 0 R /XYZ 124.802 343.0875 null] +346 0 obj << +/D [338 0 R /XYZ 124.802 401.8475 null] >> endobj -322 0 obj << -/D [311 0 R /XYZ 124.802 299.2519 null] +225 0 obj << +/D [338 0 R /XYZ 124.802 371.1132 null] >> endobj -142 0 obj << -/D [311 0 R /XYZ 124.802 255.4163 null] +285 0 obj << +/D [338 0 R /XYZ 124.802 315.9151 null] >> endobj -323 0 obj << -/D [311 0 R /XYZ 124.802 211.5807 null] +347 0 obj << +/D [338 0 R /XYZ 124.802 273.7791 null] >> endobj -310 0 obj << -/Font << /F34 129 0 R /F8 91 0 R /F18 73 0 R /F19 132 0 R >> +155 0 obj << +/D [338 0 R /XYZ 124.802 233.0268 null] +>> endobj +154 0 obj << +/D [338 0 R /XYZ 124.802 200.3554 null] +>> endobj +299 0 obj << +/D [338 0 R /XYZ 124.802 157.6659 null] +>> endobj +337 0 obj << +/Font << /F34 134 0 R /F8 95 0 R /F18 77 0 R /F19 137 0 R /F39 181 0 R >> /ProcSet [ /PDF /Text ] >> endobj -327 0 obj << -/Length 6175 +351 0 obj << +/Length 4263 >> stream 1 0 0 1 124.802 740.9981 cm @@ -5564,24 +6161,24 @@ stream 0 0 1 rg 0 0 1 RG 1 0 0 1 -124.802 -740.9981 cm BT -/F34 9.9626 Tf 124.802 740.9981 Td[(1)]TJ +/F34 9.9626 Tf 124.802 740.9981 Td[(B)]TJ ET -1 0 0 1 129.7833 740.9981 cm +1 0 0 1 131.8589 740.9981 cm 0 g 0 G -1 0 0 1 -129.7833 -740.9981 cm +1 0 0 1 -131.8589 -740.9981 cm BT -/F34 9.9626 Tf 133.1042 740.9981 Td[(General)-333(Ov)28(ervi)1(e)-1(w)]TJ +/F34 9.9626 Tf 135.1798 740.9981 Td[(Bibl)1(iograp)1(h)28(y)]TJ ET -1 0 0 1 124.802 739.4042 cm +1 0 0 1 124.802 737.467 cm q []0 d 0 J 0.3985 w 0 0.1992 m -86.1908 0.1992 l +66.1687 0.1992 l S Q -1 0 0 1 -124.802 -739.4042 cm +1 0 0 1 -124.802 -737.467 cm BT /F8 9.9626 Tf 458.5504 740.9981 Td[(22)]TJ ET @@ -5591,97 +6188,61 @@ ET 0 g 0 G 1 0 0 1 -124.802 -706.1289 cm BT -/F8 9.9626 Tf 124.802 706.1289 Td[([12])]TJ +/F8 9.9626 Tf 124.802 706.1289 Td[([14])]TJ ET 1 0 0 1 140.2995 706.1289 cm 0 g 0 G 1 0 0 1 -140.2995 -706.1289 cm BT -/F8 9.9626 Tf 145.2808 706.1289 Td[(Kar)1(ypis,)-561(G)1(.)-515(and)-515(Ku)1(mar,)-561(V.)1(,)]TJ/F19 9.9626 Tf 136.7968 0 Td[(METI)1(S:)-525(Un)-1(str)1(uctur)51(e)52(d)-526(G)1(r)51(aph)-525(P)-1(arti)1(t)-1(i)1(on)-1(i)1(n)-1(g)]TJ -136.7968 -11.9552 Td[(and)-414(Sp)51(arse)-413(Matri)1(x)-413(Or)51(der)1(ing)-414(Sy)1(st)-1(em)]TJ/F8 9.9626 Tf 158.5977 0 Td[(.)-393(Min)1(neap)-28(oli)1(s)-1(,)-408(MN)-394(55455:)-565(Un)1(iv)28(ers)-1(i)1(t)28(y)]TJ -158.5977 -11.9552 Td[(of)-419(Min)1(ne)-1(sota,)-441(De)-1(p)1(artmen)28(t)-420(of)-420(Compu)1(te)-1(r)-419(Science)-1(,)-441(1995.)-420(In)28(tern)1(e)-1(t)-420(Ad)1(dr)1(e)-1(ss)-1(:)]TJ/F40 9.9626 Tf 0 -11.9551 Td[(http://www.cs.umn.edu/~karypis)]TJ/F8 9.9626 Tf 156.9102 0 Td[(.)]TJ +/F8 9.9626 Tf 145.2808 706.1289 Td[(B.)-397(S)1(m)-1(i)1(th,)-412(P)84(.)-396(B)-1(j)1(orstad,)-412(W.)-396(Grop)1(p,)]TJ/F19 9.9626 Tf 155.1156 0 Td[(Domain)-416(De)51(c)51(om)1(p)51(o)-1(s)1(ition:)-576(P)-1(ar)52(al)-51(lel)-415(Mu)1(l-)]TJ -155.1156 -11.9552 Td[(til)1(evel)-348(M)1(et)-1(ho)51(ds)-347(for)-348(El)-51(l)1(iptic)-348(Partial)-347(Di\013er)51(ential)-347(Equations)]TJ/F8 9.9626 Tf 247.5733 0 Td[(,)-324(C)-1(am)28(br)1(idge)-323(Un)1(i-)]TJ -247.5733 -11.9552 Td[(v)28(ers)-1(i)1(t)28(y)-334(P)1(res)-1(s,)-333(1996.)]TJ ET -1 0 0 1 124.802 650.3381 cm +1 0 0 1 124.802 662.2932 cm 0 g 0 G -1 0 0 1 -124.802 -650.3381 cm +1 0 0 1 -124.802 -662.2932 cm BT -/F8 9.9626 Tf 124.802 650.3381 Td[([13])]TJ +/F8 9.9626 Tf 124.802 662.2932 Td[([15])]TJ ET -1 0 0 1 140.2995 650.3381 cm +1 0 0 1 140.2995 662.2932 cm 0 g 0 G -1 0 0 1 -140.2995 -650.3381 cm +1 0 0 1 -140.2995 -662.2932 cm BT -/F8 9.9626 Tf 145.2808 650.3381 Td[(La)28(ws)-1(on)1(,)-339(C)-1(.)1(,)-339(Hanson,)-339(R.)1(,)-339(Kin)1(c)-1(aid)1(,)-339(D.)-338(an)1(d)-338(K)1(rogh,)-338(F.,)-339(Bas)-1(i)1(c)-339(Li)1(ne)-1(ar)-337(Algebra)]TJ 0 -11.9552 Td[(Su)1(bp)1(rograms)-337(for)-336(Fort)1(ran)-336(usage)-1(,)-337(A)27(CM)-336(T)83(ran)1(s)-1(.)-336(Math)1(.)-337(Sof)1(t)28(w.)-337(v)28(ol.)-336(5,)-338(38{329,)]TJ 0 -11.9552 Td[(1979.)]TJ +/F8 9.9626 Tf 145.2808 662.2932 Td[(M.)-410(Sn)1(ir,)-429(S.)-410(Otto,)-430(S)1(.)-411(Hu)1(s)-1(s-)-1(Lederman,)-429(D.)-411(W)84(alk)28(er,)-430(J.)-410(Dongar)1(ra,)]TJ/F19 9.9626 Tf 279.5682 0 Td[(MPI:)-428(The)]TJ -279.5682 -11.9551 Td[(Com)1(p)-1(l)1(ete)-286(R)50(ef)1(er)51(enc)51(e.)-285(V)76(olu)1(me)-286(1)-286(-)-286(T)1(h)-1(e)-285(MPI)-286(C)1(o)-1(r)52(e)]TJ/F8 9.9626 Tf 202.8295 0 Td[(,)-271(se)-1(cond)-254(e)-1(d)1(ition)1(,)-271(MIT)-255(Pr)1(e)-1(ss)-1(,)]TJ -202.8295 -11.9552 Td[(1998.)]TJ ET -1 0 0 1 124.802 606.5025 cm +1 0 0 1 124.802 618.4576 cm 0 g 0 G -1 0 0 1 -124.802 -606.5025 cm +1 0 0 1 -124.802 -618.4576 cm BT -/F8 9.9626 Tf 124.802 606.5025 Td[([14])]TJ +/F8 9.9626 Tf 124.802 618.4576 Td[([16])]TJ ET -1 0 0 1 140.2995 606.5025 cm +1 0 0 1 140.2995 618.4576 cm 0 g 0 G -1 0 0 1 -140.2995 -606.5025 cm +1 0 0 1 -140.2995 -618.4576 cm BT -/F8 9.9626 Tf 145.2808 606.5025 Td[(Mac)28(hiels,)-372(L.)-364(an)1(d)-364(De)-1(v)1(ille,)-372(M)1(.)]TJ/F19 9.9626 Tf 128.4908 0 Td[(F)77(ortr)51(an)-386(90:)-517(A)26(n)-387(entry)-386(to)-386(obje)51(ct-or)1(ient)-1(e)52(d)-387(pr)52(o-)]TJ -128.4908 -11.9552 Td[(gr)51(am)1(ming)-492(for)-491(t)-1(he)-492(sol)1(ution)-492(of)-492(p)51(arti)1(a)-1(l)-491(di\013er)51(ential)-491(e)51(quations.)]TJ/F8 9.9626 Tf 267.4567 0 Td[(A)28(CM)-479(T)83(ran)1(s)-1(.)]TJ -267.4567 -11.9552 Td[(Math)1(.)-333(Sof)1(t)28(w)-1(.)-333(v)28(ol.)-333(23,)-333(32{49.)]TJ +/F8 9.9626 Tf 145.2808 618.4576 Td[(K.)-303(St)-27()527(u)1(b)-28(en,)]TJ/F19 9.9626 Tf 50.1111 0 Td[(A)25(l)1(gebr)51(aic)-330(Mu)1(ltigri)1(d)-331(\050AMG)1(\051:)-330(an)-331(Intr)51(o)51(du)1(ct)-1(i)1(on)-331(w)-1(i)1(th)-331(App)-1(l)1(ic)51(ations)]TJ/F8 9.9626 Tf 270.3538 0 Td[(,)]TJ -320.4649 -11.9552 Td[(in)-341(A.)-341(Sc)28(h)-28()528(u)1(ller,)-343(U.)-342(T)84(rotten)28(b)-27(e)-1(rg,)-343(C.)-341(Oos)-1(t)1(e)-1(rl)1(e)-1(e,)-344(edi)1(tors,)-344(M)1(ult)1(igrid)1(,)-344(Academic)]TJ 0 -11.9551 Td[(Pr)1(e)-1(ss)-1(,)-333(2000.)]TJ ET -1 0 0 1 124.802 562.6668 cm +1 0 0 1 124.802 574.622 cm 0 g 0 G -1 0 0 1 -124.802 -562.6668 cm +1 0 0 1 -124.802 -574.622 cm BT -/F8 9.9626 Tf 124.802 562.6668 Td[([15])]TJ +/F8 9.9626 Tf 124.802 574.622 Td[([17])]TJ ET -1 0 0 1 140.2995 562.6668 cm +1 0 0 1 140.2995 574.622 cm 0 g 0 G -1 0 0 1 -140.2995 -562.6668 cm +1 0 0 1 -140.2995 -574.622 cm BT -/F8 9.9626 Tf 145.2808 562.6668 Td[(Metcalf,)-433(M.,)-434(Reid)1(,)-434(J.)-413(and)-413(C)-1(oh)1(e)-1(n)1(,)-434(M)1(.)]TJ/F19 9.9626 Tf 168.8559 0 Td[(F)77(ortr)51(an)-432(95/2003)-432(explaine)51(d.)]TJ/F8 9.9626 Tf 123.9072 0 Td[(Oxf)1(ord)]TJ -292.7631 -11.9551 Td[(Uni)1(v)28(e)-1(r)1(s)-1(it)28(y)-333(P)1(re)-1(ss,)-334(2004.)]TJ +/F8 9.9626 Tf 145.2808 574.622 Td[(R.)-298(S)1(.)-298(T)83(u)1(m)-1(i)1(naro,)-304(C.)-298(T)83(on)1(g,)]TJ/F19 9.9626 Tf 113.1062 0 Td[(Par)51(al)-51(l)1(el)-325(Smo)51(othe)51(d)-325(A)50(ggr)52(e)51(gation)-325(Mul)1(t)-1(i)1(grid:)-443(A)51(ggr)51(e-)]TJ -113.1062 -11.9552 Td[(gation)-406(Str)51(ate)51(gies)-405(on)-406(Massivel)1(y)-405(P)-1(ar)52(al)-51(lel)-405(M)1(a)-1(chi)1(n)-1(es)]TJ/F8 9.9626 Tf 215.1572 0 Td[(,)-398(in)-385(J.)-385(Don)1(nelley)83(,)-398(editor)1(,)]TJ -215.1572 -11.9551 Td[(Pr)1(o)-28(ce)-1(edin)1(gs)-334(of)-333(S)1(up)-27(e)-1(r)1(C)-1(ompu)1(tin)1(g)-334(2000,)-333(Dall)1(as)-1(,)-333(2000.)]TJ ET 1 0 0 1 124.802 530.7864 cm 0 g 0 G 1 0 0 1 -124.802 -530.7864 cm BT -/F8 9.9626 Tf 124.802 530.7864 Td[([16])]TJ +/F8 9.9626 Tf 124.802 530.7864 Td[([18])]TJ ET 1 0 0 1 140.2995 530.7864 cm 0 g 0 G 1 0 0 1 -140.2995 -530.7864 cm BT -/F8 9.9626 Tf 145.2808 530.7864 Td[(B.)-470(S)1(m)-1(i)1(th,)-503(P)84(.)-470(Bj)1(ors)-1(t)1(ad)-470(an)1(d)-469(W.)-469(Grop)1(p,)]TJ/F19 9.9626 Tf 177.6434 0 Td[(Domain)-483(De)51(c)51(omp)51(osi)1(tion:)-711(Par)51(al)-50(lel)]TJ -177.6434 -11.9552 Td[(Mu)1(ltil)1(evel)-423(Metho)51(ds)-423(for)-423(El)-51(l)1(iptic)-423(P)-1(ar)1(t)-1(i)1(al)-423(Di\013er)51(ential)-423(Equations)]TJ/F8 9.9626 Tf 268.9084 0 Td[(,)-422(Cam)27(b)1(rid)1(ge)]TJ -268.9084 -11.9551 Td[(Uni)1(v)28(e)-1(r)1(s)-1(it)28(y)-333(P)1(re)-1(ss,)-334(1996.)]TJ -ET -1 0 0 1 124.802 486.9508 cm -0 g 0 G -1 0 0 1 -124.802 -486.9508 cm -BT -/F8 9.9626 Tf 124.802 486.9508 Td[([17])]TJ -ET -1 0 0 1 140.2995 486.9508 cm -0 g 0 G -1 0 0 1 -140.2995 -486.9508 cm -BT -/F8 9.9626 Tf 145.2808 486.9508 Td[(M.)-443(S)1(nir)1(,)-471(S)1(.)-443(Otto,)-470(S.)-443(Huss-)-1(Lederman,)-470(D.)-443(W)83(al)1(k)28(e)-1(r)-443(an)1(d)-443(J.)-443(Don)1(garra,)]TJ/F19 9.9626 Tf 300.6449 0 Td[(MPI:)]TJ -300.6449 -11.9552 Td[(The)-365(C)1(o)-1(m)1(plete)-365(R)50(ef)1(er)51(enc)51(e.)-365(V)76(ol)1(ume)-365(1)-365(-)-365(The)-365(MPI)-365(Cor)52(e)]TJ/F8 9.9626 Tf 228.8028 0 Td[(,)-343(s)-1(ec)-1(on)1(d)-341(e)-1(d)1(ition)1(,)-343(MIT)]TJ -228.8028 -11.9552 Td[(Pr)1(e)-1(ss)-1(,)-333(1998.)]TJ -ET -1 0 0 1 124.802 443.1152 cm -0 g 0 G -1 0 0 1 -124.802 -443.1152 cm -BT -/F8 9.9626 Tf 124.802 443.1152 Td[([18])]TJ -ET -1 0 0 1 140.2995 443.1152 cm -0 g 0 G -1 0 0 1 -140.2995 -443.1152 cm -BT -/F8 9.9626 Tf 145.2808 443.1152 Td[(M.)-372(B)-1(r)1(e)-1(zina)-372(and)-372(P)83(.)-372(V)83(an)28(\024)473(e)-1(k,)]TJ/F19 9.9626 Tf 118.0482 0 Td[(A)-394(Black-Box)-394(I)1(t)-1(er)52(ative)-394(So)-1(l)1(ver)-394(Base)51(d)-394(on)-394(a)-395(T)1(w)-1(o-)]TJ -118.0482 -11.9552 Td[(L)51(evel)-357(S)-1(chwarz)-358(M)1(et)-1(ho)51(d)]TJ/F8 9.9626 Tf 96.017 0 Td[(,)-333(Com)-1(p)1(uti)1(ng,)-333(1999,)-333(63,)-333(233-)-1(263.)]TJ -ET -1 0 0 1 124.802 411.2347 cm -0 g 0 G -1 0 0 1 -124.802 -411.2347 cm -BT -/F8 9.9626 Tf 124.802 411.2347 Td[([19])]TJ -ET -1 0 0 1 140.2995 411.2347 cm -0 g 0 G -1 0 0 1 -140.2995 -411.2347 cm -BT -/F8 9.9626 Tf 145.2808 411.2347 Td[(P)84(.)-495(V)84(an)28(\024)472(ek,)-535(J.)-494(Man)1(del)-495(an)1(d)-494(M.)-494(B)-1(r)1(e)-1(zina,)]TJ/F19 9.9626 Tf 177.7061 0 Td[(A)25(l)1(gebr)51(aic)-506(M)1(ultigr)1(id)-506(by)-506(Smo)51(othe)51(d)]TJ -177.7061 -11.9552 Td[(A)51(ggr)51(e)51(gation)-449(f)1(o)-1(r)-448(Se)51(c)51(ond)-449(an)-1(d)-448(F)76(ou)1(rth)-449(Or)52(der)-449(El)-51(l)1(iptic)-449(Pr)51(obl)1(ems)]TJ/F8 9.9626 Tf 264.4383 0 Td[(,)-457(Compu)1(ting,)]TJ -264.4383 -11.9551 Td[(1996,)-333(56,)-333(179-)-1(196.)]TJ +/F8 9.9626 Tf 145.2808 530.7864 Td[(P)84(.)-495(V)84(an)28(\024)472(ek,)-535(J.)-494(Man)1(del)-495(an)1(d)-494(M.)-494(B)-1(r)1(e)-1(zina,)]TJ/F19 9.9626 Tf 177.7061 0 Td[(A)25(l)1(gebr)51(aic)-506(M)1(ultigr)1(id)-506(by)-506(Smo)51(othe)51(d)]TJ -177.7061 -11.9552 Td[(A)51(ggr)51(e)51(gation)-449(f)1(o)-1(r)-448(Se)51(c)51(ond)-449(an)-1(d)-448(F)76(ou)1(rth)-449(Or)52(der)-449(El)-51(l)1(iptic)-449(Pr)51(obl)1(ems)]TJ/F8 9.9626 Tf 264.4383 0 Td[(,)-457(Compu)1(ting,)]TJ -264.4383 -11.9551 Td[(1996,)-333(56,)-333(179-)-1(196.)]TJ ET 1 0 0 1 124.802 90.4377 cm 0 g 0 G @@ -5689,53 +6250,44 @@ ET 0 g 0 G endstream endobj -326 0 obj << +350 0 obj << /Type /Page -/Contents 327 0 R -/Resources 325 0 R +/Contents 351 0 R +/Resources 349 0 R /MediaBox [0 0 595.2756 841.8898] -/Parent 324 0 R -/Annots [ 329 0 R ] +/Parent 348 0 R +/Annots [ 353 0 R ] >> endobj -329 0 obj << +353 0 obj << /Type /Annot /Border[0 0 0]/H/I/C[1 0 0] -/Rect [123.8057 740.0018 130.7796 748.9129] +/Rect [123.8057 738.0647 132.8552 748.9129] /Subtype /Link -/A << /S /GoTo /D (section.1) >> ->> endobj -328 0 obj << -/D [326 0 R /XYZ 124.802 740.9981 null] ->> endobj -330 0 obj << -/D [326 0 R /XYZ 124.802 716.0915 null] ->> endobj -331 0 obj << -/D [326 0 R /XYZ 124.802 664.0644 null] +/A << /S /GoTo /D (section.B) >> >> endobj -332 0 obj << -/D [326 0 R /XYZ 124.802 622.4427 null] +352 0 obj << +/D [350 0 R /XYZ 124.802 740.9981 null] >> endobj -333 0 obj << -/D [326 0 R /XYZ 124.802 576.6699 null] +151 0 obj << +/D [350 0 R /XYZ 124.802 716.0915 null] >> endobj -334 0 obj << -/D [326 0 R /XYZ 124.802 544.7894 null] +156 0 obj << +/D [350 0 R /XYZ 124.802 676.2963 null] >> endobj -143 0 obj << -/D [326 0 R /XYZ 124.802 500.9538 null] +354 0 obj << +/D [350 0 R /XYZ 124.802 634.3978 null] >> endobj -335 0 obj << -/D [326 0 R /XYZ 124.802 457.1182 null] +355 0 obj << +/D [350 0 R /XYZ 124.802 588.6251 null] >> endobj -336 0 obj << -/D [326 0 R /XYZ 124.802 425.2378 null] +153 0 obj << +/D [350 0 R /XYZ 124.802 544.7894 null] >> endobj -325 0 obj << -/Font << /F34 129 0 R /F8 91 0 R /F19 132 0 R /F40 175 0 R >> +349 0 obj << +/Font << /F34 134 0 R /F8 95 0 R /F19 137 0 R >> /ProcSet [ /PDF /Text ] >> endobj -295 0 obj << +317 0 obj << /Length1 743 /Length2 1156 /Length3 532 @@ -5755,7 +6307,7 @@ stream /ItalicAngle -14.04 def /isFixedPitch false def end readonly def -/FontName /MHFSMQ+CMMI7 def +/FontName /OUXXFJ+CMMI7 def /PaintType 0 def /FontType 1 def /FontMatrix [0.001 0 0 0.001 0 0] readonly def @@ -5779,37 +6331,37 @@ i cleartomark endstream endobj -296 0 obj << +318 0 obj << /Type /Font /Subtype /Type1 -/Encoding 337 0 R +/Encoding 356 0 R /FirstChar 84 /LastChar 84 -/Widths 338 0 R -/BaseFont /MHFSMQ+CMMI7 -/FontDescriptor 294 0 R +/Widths 357 0 R +/BaseFont /OUXXFJ+CMMI7 +/FontDescriptor 316 0 R >> endobj -294 0 obj << +316 0 obj << /Ascent 694 /CapHeight 683 /Descent -194 -/FontName /MHFSMQ+CMMI7 +/FontName /OUXXFJ+CMMI7 /ItalicAngle -14.04 /StemV 81 /XHeight 431 /FontBBox [0 -250 1171 750] /Flags 4 /CharSet (/T) -/FontFile 295 0 R +/FontFile 317 0 R >> endobj -338 0 obj +357 0 obj [675 ] endobj -337 0 obj << +356 0 obj << /Type /Encoding /Differences [ 0 /.notdef 84/T 85/.notdef] >> endobj -236 0 obj << +251 0 obj << /Length1 735 /Length2 1053 /Length3 532 @@ -5829,7 +6381,7 @@ stream /ItalicAngle 0 def /isFixedPitch false def end readonly def -/FontName /HSGFZR+CMR7 def +/FontName /XKTILK+CMR7 def /PaintType 0 def /FontType 1 def /FontMatrix [0.001 0 0 0.001 0 0] readonly def @@ -5857,37 +6409,37 @@ _2 cleartomark endstream endobj -237 0 obj << +252 0 obj << /Type /Font /Subtype /Type1 -/Encoding 339 0 R +/Encoding 358 0 R /FirstChar 49 /LastChar 49 -/Widths 340 0 R -/BaseFont /HSGFZR+CMR7 -/FontDescriptor 235 0 R +/Widths 359 0 R +/BaseFont /XKTILK+CMR7 +/FontDescriptor 250 0 R >> endobj -235 0 obj << +250 0 obj << /Ascent 694 /CapHeight 683 /Descent -194 -/FontName /HSGFZR+CMR7 +/FontName /XKTILK+CMR7 /ItalicAngle 0 /StemV 79 /XHeight 431 /FontBBox [-27 -250 1122 750] /Flags 4 /CharSet (/one) -/FontFile 236 0 R +/FontFile 251 0 R >> endobj -340 0 obj +359 0 obj [569 ] endobj -339 0 obj << +358 0 obj << /Type /Encoding /Differences [ 0 /.notdef 49/one 50/.notdef] >> endobj -233 0 obj << +248 0 obj << /Length1 745 /Length2 581 /Length3 532 @@ -5907,7 +6459,7 @@ stream /ItalicAngle -14.035 def /isFixedPitch false def end readonly def -/FontName /VATNQL+CMSY7 def +/FontName /NVYJXJ+CMSY7 def /PaintType 0 def /FontType 1 def /FontMatrix [0.001 0 0 0.001 0 0] readonly def @@ -5930,92 +6482,107 @@ A cleartomark endstream endobj -234 0 obj << +249 0 obj << /Type /Font /Subtype /Type1 -/Encoding 341 0 R +/Encoding 360 0 R /FirstChar 0 /LastChar 0 -/Widths 342 0 R -/BaseFont /VATNQL+CMSY7 -/FontDescriptor 232 0 R +/Widths 361 0 R +/BaseFont /NVYJXJ+CMSY7 +/FontDescriptor 247 0 R >> endobj -232 0 obj << +247 0 obj << /Ascent 750 /CapHeight 683 /Descent -194 -/FontName /VATNQL+CMSY7 +/FontName /NVYJXJ+CMSY7 /ItalicAngle -14.035 /StemV 93 /XHeight 431 /FontBBox [-15 -951 1252 782] /Flags 4 /CharSet (/minus) -/FontFile 233 0 R +/FontFile 248 0 R >> endobj -342 0 obj +361 0 obj [893 ] endobj -341 0 obj << +360 0 obj << /Type /Encoding /Differences [ 0 /minus 1/.notdef] >> endobj -174 0 obj << -/Length1 1601 -/Length2 9376 +234 0 obj << +/Length1 1824 +/Length2 10700 /Length3 532 -/Length 11509 +/Length 13056 >> stream -%!PS-AdobeFont-1.1: CMTT10 1.00B -%%CreationDate: 1992 Apr 26 10:42:42 +%!PS-AdobeFont-1.1: CMTT9 1.0 +%%CreationDate: 1991 Aug 20 16:46:24 % Copyright (C) 1997 American Mathematical Society. All Rights Reserved. 11 dict begin /FontInfo 7 dict dup begin -/version (1.00B) readonly def +/version (1.0) readonly def /Notice (Copyright (C) 1997 American Mathematical Society. All Rights Reserved) readonly def -/FullName (CMTT10) readonly def +/FullName (CMTT9) readonly def /FamilyName (Computer Modern) readonly def /Weight (Medium) readonly def /ItalicAngle 0 def /isFixedPitch true def end readonly def -/FontName /UHJIJM+CMTT10 def +/FontName /VBPJYW+CMTT9 def /PaintType 0 def /FontType 1 def /FontMatrix [0.001 0 0 0.001 0 0] readonly def /Encoding 256 array 0 1 255 {1 index exch /.notdef put} for +dup 33 /exclam put dup 39 /quoteright put dup 40 /parenleft put dup 41 /parenright put -dup 42 /asterisk put dup 44 /comma put +dup 45 /hyphen put dup 46 /period put dup 47 /slash put dup 48 /zero put dup 49 /one put +dup 50 /two put +dup 51 /three put dup 52 /four put -dup 57 /nine put +dup 53 /five put +dup 56 /eight put dup 58 /colon put +dup 59 /semicolon put dup 61 /equal put dup 65 /A put dup 66 /B put dup 67 /C put dup 68 /D put dup 69 /E put +dup 70 /F put dup 71 /G put +dup 72 /H put dup 73 /I put dup 74 /J put +dup 75 /K put dup 76 /L put dup 77 /M put dup 78 /N put dup 79 /O put dup 80 /P put +dup 81 /Q put dup 82 /R put dup 83 /S put dup 84 /T put +dup 85 /U put +dup 86 /V put +dup 87 /W put +dup 88 /X put +dup 89 /Y put dup 95 /underscore put +dup 96 /quoteleft put dup 97 /a put dup 98 /b put dup 99 /c put @@ -6031,6 +6598,7 @@ dup 109 /m put dup 110 /n put dup 111 /o put dup 112 /p put +dup 113 /q put dup 114 /r put dup 115 /s put dup 116 /t put @@ -6040,50 +6608,56 @@ dup 119 /w put dup 120 /x put dup 121 /y put dup 122 /z put -dup 126 /asciitilde put readonly def -/FontBBox{-4 -235 731 800}readonly def +/FontBBox{-6 -233 542 698}readonly def currentdict end currentfile eexec -oc;j~EЪ*BgNӽ ؑlKq*޲Xws|QFqv`zXMyp"5O˩YŝP(DT![v67XFlU&3!Rq4wσ~j+ou_c2Bطj=-8\Dg݌] /%bԺnٻڿSy b*L(9sWF R:EMksH02E?Oe+Z'zK΃оif <,EDNZ|J#BW3ϗMp(%5%~(5Bk}Aj c'S-8*!iy$G.w g J0nr -;଍ Kr^ox7p4= CyO#y[49'n*xx/J}o֯p6Oޏe}hà1W6Ϋ%(i]Ii -텴""b3=5sJzbJ>[Wе H 2"ێ0Oy9.t:=$EǪ ]to`% -'EKKfrRK^y`vO^v~ZwR iNMW3HSp+T,q!s0(ع;U+3"J8q3dJ`77+IuؿhH<=!'T́2.r% -v y*S\L$r)Xm!UgWyD3y#<+iYPo+e=a.q%B )z=v"1); t Zğ7Lt.q A;0Y!OX w~e!KqJ -o۰;Z8g&.,0(Url4$O̤cm-$SZE"0xX5gpq}R9bpIqUbNZBE 'Lz{':`e`B4c7,!P{b}z7Ka8ᵁY:Oy NA!ﵗmS8T[:C=dFn98VP[AkSJXѓv'^v[Fh ~u~ѯ2iϣPK9?3=ڗLɀ $jcg yJN.מ*EATbS`">G<],"h "/ٵ5$L+wCX6OC3wwkfԒA!X8;ls Rj+/m D#|io)(eXB! - ϐH+$*Jkr#}V b PfBùRvY4WI\*ѿޜ,9ce)" 2'rCAo=RZFYQƣc`ޡ`Wm -)&Z{_6;68bП9Wy |脓'J5Ωw-l8>|qudQ^GE{yu+8kf^&9CWH -%5{'뭩 TD@-6/O&;?^4̼-<}ۓ8%r0-c -bK:l[Xg?; {y c]K[{թ{~lx uG@" #@GC¹G^ٜVF$h4=`?գ S,مJjuOqQw3rނ'}`Yl!pa!xEr@gםNQX1n -[2 -b'mjC)bp,3h0l WDiNfY$D6-eh8."r Sxȳ[@>ܫl ( :<;GͰFv>tE}xB;*$P3+愖@>~n91(G,]4 1KͶ,;k3/d|Q螢gT ؔoQƍdZ=XlV|/Q )$ djQBM^v%TxB%=-Bi۠9 ->U޽I!D)k]5#pے 4u~E&̲<]hMZf>le86D.O -j4c/?3r2]Ըd284\`cf{yJU^RmZŁ8?q!nnadǕMc甶ۉ2~=L z,[+CqCk\\({uLÑ>`‚&sy` W6kS -<"kq ms>|`e f֟J+c4w0xN,'a&+!Gz1&P "z*zh&U(EВ]UHiR0:|ʻ}:[F"Ly0#fT#st/g'% NTRPJKcRLxndDy*V!߽&YZEXWg3ޜ["伮L}G+h85W|W@* aɘnM_dP+ ot6 Gn&j@.n%SC NX(x{5& > )2'Ure%C"޾it˳٣.ƶ;qѾ6G[ī5ΝciJh71ǻBdCGkĭ!Q+;wleᖀ{6"Pru<y RY -pmz3Z8l*fuehlG^Ea$R^.e, Τ:wyPߎNp"snZwq|AȂW5 -d>%g )!F9 M>龺ފl?Ո*]VJq/cbYb銀H2[qۉNׇ#.Q%qsƷSDQh@nGTo(sLƬ[SjoZ:O<$1ӥgKP6jO6KV6)2YHQ>LRr5G-Atvg" "FfWuH \k?ͽat|B]%~XcA;Ƴk_ 7b0$YOls.}WŦ>s[+.*lvE1mƘ 9A%_)6w>жgwz\2Ccr$pZo 4(5%@s|m)|!W`(>oqs0A8bq°٤οMT~G!O^E4S4r{ Q7lWjEőImc:I -BƷ8l9ӊ^T4$&-]^ig{0 -6n+]MBghL(X\Xr,%^CSS/斪C{f": ~ǐoޭC9B+>Ţ/_'_ -d?bq -^v4y45.{0R=u2W?M.2 1]HW@(8 -j~VE0F^.(ǯkW1Di#$/b5F`6D:ISisd##\亯yjܺݬA|P,0ibl(#ʭ*J};^|8Z FaoIn+=ʮ@ uy_bUrr5/գ4WKwB8j*e㙒jm(M;#<:g95c!]xoJqUz>NX1IK`& x8^ޭ< 8wh%{keÇ޸ b&WΠOq"*CB[FeEҜ9&d -ǘ܇Pܟ6SMS )V$+V'ʒ{= Mƃ }Afj dץc3iggُtOl[*;4@r,K[z]s;jCVxw2Y(K\+bO:&ɷIZ5.QAkhYn΂@XGr,4ɔQI !x!v"M:UIw҆v0Yd F) Kf*X{m/q=Z+E*; s -cvǤ. LTh ƼGCBbBY4V'K!sGyhA)bg=:".=ǔ;.5bjȜP -/R{wtvdog͆a&ƊA3'H7H?(<0B SOw>{]v"s:/՗kIV Ԅg?6Qbjn$[̖$U]k *Y! h?28=a gRo5ڭh -{UAmbX֊nGsEV?J(R0?y@ɓ AΖsn5Az!g/‰md7 _yve]U߀CTHA)e,ЧU_@K",A1a{AI"ɧgv=F5e3 5rqJ]grU)JSFxIhF/RSpzcOT J*oɨbR`f]v9^A)FŕEɛ`I嶆榛(:5Hgzfb7`5||;[NF2X!D4];}+%NJmj-l1vϒq'A_W~2% %z٩L)6G<7 !w5ǝ~kU:r+9l`z3Ȳ oˬ2|Kw|UTU @͎J:BhmPvwj4 -pEѠ KBN+}ydj쪂AHYKNRU7 Ԥa,Rs 1GJlYr,j1Hglฃ"?V!P7d ):Ѐ|rK)ejH?T|"Yoq=p}z񘕍<2ckv(r&C驓hABRRk2n{q%h|&Uʌ#(2cp޻Nη[4=Ɨ ;J2HLɩ6do[ɪ߭ k͈71$ћxDS[g=p -f"O9n,.KB^]#Xԛ.0CS|m;i;Еo Zy!ڣ3*Pt(|o7R@Ts۷ `/i:\390ɱeOd>XoDG ;/NG_\"a,QvK3 o=H1_b-"xׯROH ŧ l+}E'6v,mq-:SV8( 'i˔O#|DMc;#{E-vFGE6x&I1|xQ,paha:EJ{mu}?h=OC~6|76n1=Lh}q 4hߐ~ݍmp(A3Q;Qz>;Ui] -C^"~-aS@"%s۱Ƃ'2wjGJϋS*"BM&J#]:20*,'W*Qs1ޥ.g UR HhLg@(Ʋǂ({u[KwVWTk Uڰ}Je-Pvk0]t )N H?)ɩX]vir40@TvafcP)8 r~f^Q(7pGq]ӎ7er6P%p/ cu>Nb'> Ҵq=c{u7Tg3PxK<4 +a% Bq٬ -E2'K]gywO1gA?z`B1UL㠒׭ FÜ$~40\v1/ѵ74UzV@N|:^{UVpEV%M,{TVwjy(Z:f4 eŏ\2ڰUX_ӋD~2t:P/>h/3eٯ]HM|W䘥"`(,E5 %dhw(hw<=Kx%GBa[\4wQ;z˓GKiuO߳"79 UJn p R::0000000000000000000000000000000000000000000000000000000000000000 +oc;j~EЪ*BgNӽ ؑlKq*޲Xws|QFqv`zXMyp"5O˩YŝP(DT![v67XFlU&3!Rq4wσ~j+ou_c2Bطj=-)1_]X` Y{nn9׫/uye );9*fHHK-\rБkg\5&(G<`J7dhn)Zl득52 Z$نa#q13@H;+G"1L(seER ;ԱJo"BFKkv/ ֈpZCޯ*@;db s*Mm~4]꽺\Qߍ):۞3#˂3u?O+|mMۉfH21C2/AHw;u&~#V=@Ņ*Ft@*(s9)UdƁF!;ŭ$r)_e_LRXJ*'*|o+ _|flWU6yM`MFPzXktw_K16PgjmKő}WBWZ$%-n`7SM~NZҺ};#Q7;il07^1*wWi2-Bȓ +9ҙgtvO#!QAoGem9dk0a_ Lel=!R(Ɵpa L#߯|X4SA[/d*R +p5[3;"n viҬbôG\:1PEts4sz]k +0}=P)RAjwS{>Hb 71mYSA9&pCs`)?3.ɀ=4fI@j{pxFU+0-MnWf%)5w`yon,}=Y6[h>W} ІK'-ʢ*3R}+LYD]'B3塰뺽 `KihטN|IrWO~HÐ:j.f -|`1Q` MaNUjLYn +A_( էĔ}$^,lkӧ )^{ 6 J]e)d,1` ` ŊDIQQ()^>IHntzcOΎřv[?071GCF SO'>Q4H]˦Gxwp7EAeh3] 2T5){@Zg3+!UV)TLzduQ{ JҧG9=75>NS3 B,Y.U45Z,Q̫wu6BȬ|R]8QdE Z<1:{-Pz?墣7{8fjV܂jU-Z7ՏiN"_τ XA~m*(QǤ}oңQ!9W$ͶjaQA4,2ܟ)J[Kh&شAc]0@9^u*SG[pWz`6d4vʣ642*DF>Ex'Dz,#x޲͋gD4yRfȢ٢^gzsm/3Vbݍe+5G*[V_N9>թI^C okr&oëo #\:LUnϻ)F/c<I?Z۠0=ӗ4CÝE3 IpB0oᔕ4;3>|T#pVvJ,QqaO9m{ɋ@32HD(КZ$:#vaUb0kmW+f멳LcVAQ^G70w2FA-yô[w;E>ډC@D';EH RxޔLd7/1勇 Ŗ{l]EV&M{whIgI˝TIQz%$L$MfO 46Hg롎Q$ Zߨ37rix*V$7`"vE5lp`rROj4״עJpMN[eWHab&Ew6hEI_K}.4YJXOŠSҐ + ч1 t瓁1$'S]rF+hVcá~'jt11L #DFV +vqN +˜v9NVgxao)9;ڜٰ3ݴ_ kg^tT&n?یQ+V]۱[܉Hvv  3@J?~oXS Mt$IUbg*.aTlpb,(# Q4z1uB;FG< 7(sU^y9ߚIxy}Y2oz +NQ/VnsLZsn`u{*t XR7.tlGT좷|8bU1axDz,"jjUoo! =a4 |Ftlku"tPd†Bs6DcJMʦ |`1h`p-LF&H3HDL/8U"ZusU֤'iQkxdQQ=^H-׹_QV)&15F44/5<~v-:vh/^W#|]eIPSLs .9f Uo&.nN)1`kD;!P60X/bl!Aߑ;Ah!fE{jB: +6,k˶yGȃp zL_ A-72l*!# ?U6GNỶ^.;&"9yaROjst:\ +IYTw J8'ͯPj0MgQ+s:ȌO$scR9s5p'?ǭ¬8-my{v`%}bb$zYmw"ӽlͦDgǣ@#:ה0i֒[K)C22ygr"K 蹾s5vU.$ .b^V҇ʳ nT_eme>Q Z+cO*:wv*Ms[d<= +$zgJq망 /?)ˎ⌌]並_{>DjOuID=),I7GjQenqM]uӕ ̜@*kT"dRNksC%W\ug0-6 +2n1,۔p51hY.z$/AB zVeuC>)rq/9#o׹qJC<.\ZK0=.^;xթ#m"m36𞮭#٫Sib_9a>6t&XQsJU_ vi=0=m`Хɔx|ڳEoÏ47X:~Y +Th/sTAq}OCp'~K kZ62g3^&Q/1}6 ;6U+kWd4ޙ/5¥'-MDݦBÁ|pPf'fVv)}O7~)բ ^8})j4+ ]Y|\6K6q(g.SV]p9BHa~ӄ*J_]Z,l4Z”dF皎#w"fXTZY?%;?Jxj5m>9d-(`pǞUJ$ +"v_ҫS7={j }L[#ŞNBKIf0>uky׾U7d(?8l h_BNVdLh: Y0տHpSDzeYL`Pid8Jwh'[/!P8O>.RF`bkjgO!ν)BEdP-xf La/v,g Ga2 $򜁔Vr*vH $ҰOĘZUݤIhu t`- +l%-}^~ +q$;Sd&/]}LU +\2^~H3 SP5m3Ȱ] s3wVX,Ͽ{QukRBaô]3OI6d@d7Lw `R3 nЌ4 +Yl,"}G!AQ\'LPP7ҸNG5mG鹆 <*`/?ŭVgv+xiҦ^5m ҇OYW3U'zA +ѐOH[,cFw9~k93u[p [luɛ<'gun gnnXfTQs8cNH{k zcMwC'jx{baeCU)Hb3{ƮjR(4W`E?Af9f8S"~d,c)_9b[0s*wVғ5YeJ2fI(uytycCTo>2`rzDT^!37LFǿ#+ &@J|Ϣuvk9 8NL V&ZyEK 71DMۼY~?yqE߮lwEN 3z[3Uez=Lu'QI/WK & %5cn[* ˕o(n$ hnPDvs^'r8'"Ns/3FӋ:.vuOHYR5?_x8JaTES&,(nʢH, Q(](f%HLhdoHE'!IP}xZH; -`U3~x#0-ѤsgA2s\;3PDň7^2X#|l +wkjCQSMkEEDܴh&PaBzx0U IiuMvFeWDB +vSW!ɩYW!MVj84-cg)3 .uC$E_Q2fB':5=܎%GLʟs:peJ<p)74v>?<:=Kή[l7 }ޅb7,"M.ĵaoPhm^asmQ<61?^zyryeP';o=lz*:}vwBb|VZIlX]z +*̠IZ#yʘ+OKSK kJXA+"ZSؘD&k>6BNV!qBM<;^0d#v50xcSk.k@G5ӧ>kwmG|iBy6ueuL0KVv߲߰BO\`ø+٢.Z7 P9쾘FY&ٯG~_!q`A٢@`xX^/?y ?[$HJ.js%,{9bL 1AN}ݑ8p_M:mN=L`Zw#LNFk8\Ph$븧oO7Y5,;u(ph jߥ^*q;m>ً܉BG[kYq[] Ci Toš]?>~DVt^;24tK:XQN0O`{CA +N |\'QTKNzL!=?d)k<@tI2EWi~5W3>0t 3S|.ǷiϋTnՏ[.l9{fY&W^FW<K~hT  ¢j4lp0$Px5L +Y^91V^9kלFa\ vxV a\z/<@tSM¶ UME,4| f[4/NqI87-=T5%('dU[w4 ?!v|RB#CӚPee >#5rMRŏA +XO>΁lCWԻq4 )]Mq)ytyQew=wԬ,yL&^)1 4wBX-ͨ~)Ձk ]c2w* 791ơJPZX{x-Ҩ+'Bg;:TuKv)KoR |@"xZP>Fbd &¦;5dNTS3\Ep6 2͹@w(NP}@@ .IL*"O8u 2k'%lIpu@t3v +ƾerCE=_,e.ɺb`lC'yyFiM` 1C ʕ띥>D鿌ɡ<0\ik%iPNhؒRboNJ1I{¤UFpF QE_V/x_nf]E Iugi:iac(Dv}=mN=!קV3O$B<3L HUۡ9fבY<ӱ_ +9`*ѽ *#!Cg'Z=u;å'x5F(ф ``4Koa.ѳp'xAvv$7(Lc6өfɧ@7U(lq)"hcaa@ybsHsVb,*v R:k5gxGjzMA"l7_Xkrj5Y ̢YюlZmP|._ɟ"td̉SXz.6cx70[{oHߎ-sݩ4!'=J5uc&6. x%N0֗bA:W7`Bqs`5QO=O3U }Ua=f +8'ZaE nĵn_ P`Qy/Pٗg!鼶nQj7;2Dx mɴ_3MD푂W@7A7T^'j4XÒڡUxfyzӔ^+?dy&.ܻdy=K-yIZ/(]'7E@m;W-(w ?'Z4E5q,!h G` 0000000000000000000000000000000000000000000000000000000000000000 0000000000000000000000000000000000000000000000000000000000000000 0000000000000000000000000000000000000000000000000000000000000000 0000000000000000000000000000000000000000000000000000000000000000 @@ -6094,107 +6668,92 @@ p cleartomark endstream endobj -175 0 obj << +235 0 obj << /Type /Font /Subtype /Type1 -/Encoding 343 0 R -/FirstChar 39 -/LastChar 126 -/Widths 344 0 R -/BaseFont /UHJIJM+CMTT10 -/FontDescriptor 173 0 R +/Encoding 362 0 R +/FirstChar 33 +/LastChar 122 +/Widths 363 0 R +/BaseFont /VBPJYW+CMTT9 +/FontDescriptor 233 0 R >> endobj -173 0 obj << +233 0 obj << /Ascent 611 /CapHeight 611 /Descent -222 -/FontName /UHJIJM+CMTT10 +/FontName /VBPJYW+CMTT9 /ItalicAngle 0 -/StemV 69 +/StemV 74 /XHeight 431 -/FontBBox [-4 -235 731 800] +/FontBBox [-6 -233 542 698] /Flags 4 -/CharSet (/quoteright/parenleft/parenright/asterisk/comma/period/slash/zero/one/four/nine/colon/equal/A/B/C/D/E/G/I/J/L/M/N/O/P/R/S/T/underscore/a/b/c/d/e/f/g/h/i/k/l/m/n/o/p/r/s/t/u/v/w/x/y/z/asciitilde) -/FontFile 174 0 R +/CharSet (/exclam/quoteright/parenleft/parenright/comma/hyphen/period/slash/zero/one/two/three/four/five/eight/colon/semicolon/equal/A/B/C/D/E/F/G/H/I/J/K/L/M/N/O/P/Q/R/S/T/U/V/W/X/Y/underscore/quoteleft/a/b/c/d/e/f/g/h/i/k/l/m/n/o/p/q/r/s/t/u/v/w/x/y/z) +/FontFile 234 0 R >> endobj -344 0 obj -[525 525 525 525 0 525 0 525 525 525 525 0 0 525 0 0 0 0 525 525 0 0 525 0 0 0 525 525 525 525 525 0 525 0 525 525 0 525 525 525 525 525 0 525 525 525 0 0 0 0 0 0 0 0 0 0 525 0 525 525 525 525 525 525 525 525 525 0 525 525 525 525 525 525 0 525 525 525 525 525 525 525 525 525 0 0 0 525 ] +363 0 obj +[525 0 0 0 0 0 525 525 525 0 0 525 525 525 525 525 525 525 525 525 525 0 0 525 0 525 525 0 525 0 0 0 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 0 0 0 0 0 525 525 525 525 525 525 525 525 525 525 525 0 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 ] endobj -343 0 obj << +362 0 obj << /Type /Encoding -/Differences [ 0 /.notdef 39/quoteright/parenleft/parenright/asterisk 43/.notdef 44/comma 45/.notdef 46/period/slash/zero/one 50/.notdef 52/four 53/.notdef 57/nine/colon 59/.notdef 61/equal 62/.notdef 65/A/B/C/D/E 70/.notdef 71/G 72/.notdef 73/I/J 75/.notdef 76/L/M/N/O/P 81/.notdef 82/R/S/T 85/.notdef 95/underscore 96/.notdef 97/a/b/c/d/e/f/g/h/i 106/.notdef 107/k/l/m/n/o/p 113/.notdef 114/r/s/t/u/v/w/x/y/z 123/.notdef 126/asciitilde 127/.notdef] +/Differences [ 0 /.notdef 33/exclam 34/.notdef 39/quoteright/parenleft/parenright 42/.notdef 44/comma/hyphen/period/slash/zero/one/two/three/four/five 54/.notdef 56/eight 57/.notdef 58/colon/semicolon 60/.notdef 61/equal 62/.notdef 65/A/B/C/D/E/F/G/H/I/J/K/L/M/N/O/P/Q/R/S/T/U/V/W/X/Y 90/.notdef 95/underscore/quoteleft/a/b/c/d/e/f/g/h/i 106/.notdef 107/k/l/m/n/o/p/q/r/s/t/u/v/w/x/y/z 123/.notdef] >> endobj -160 0 obj << -/Length1 1824 -/Length2 10700 +180 0 obj << +/Length1 1577 +/Length2 9235 /Length3 532 -/Length 13056 +/Length 11344 >> stream -%!PS-AdobeFont-1.1: CMTT9 1.0 -%%CreationDate: 1991 Aug 20 16:46:24 +%!PS-AdobeFont-1.1: CMTT10 1.00B +%%CreationDate: 1992 Apr 26 10:42:42 % Copyright (C) 1997 American Mathematical Society. All Rights Reserved. 11 dict begin /FontInfo 7 dict dup begin -/version (1.0) readonly def +/version (1.00B) readonly def /Notice (Copyright (C) 1997 American Mathematical Society. All Rights Reserved) readonly def -/FullName (CMTT9) readonly def +/FullName (CMTT10) readonly def /FamilyName (Computer Modern) readonly def /Weight (Medium) readonly def /ItalicAngle 0 def /isFixedPitch true def end readonly def -/FontName /XAYTIU+CMTT9 def +/FontName /LAGMKM+CMTT10 def /PaintType 0 def /FontType 1 def /FontMatrix [0.001 0 0 0.001 0 0] readonly def /Encoding 256 array 0 1 255 {1 index exch /.notdef put} for -dup 33 /exclam put dup 39 /quoteright put dup 40 /parenleft put dup 41 /parenright put +dup 42 /asterisk put dup 44 /comma put -dup 45 /hyphen put dup 46 /period put dup 47 /slash put dup 48 /zero put dup 49 /one put -dup 50 /two put -dup 51 /three put dup 52 /four put -dup 53 /five put -dup 56 /eight put +dup 57 /nine put dup 58 /colon put -dup 59 /semicolon put dup 61 /equal put dup 65 /A put dup 66 /B put dup 67 /C put dup 68 /D put dup 69 /E put -dup 70 /F put dup 71 /G put -dup 72 /H put dup 73 /I put dup 74 /J put -dup 75 /K put dup 76 /L put dup 77 /M put dup 78 /N put dup 79 /O put dup 80 /P put -dup 81 /Q put dup 82 /R put dup 83 /S put dup 84 /T put -dup 85 /U put -dup 86 /V put -dup 87 /W put -dup 88 /X put -dup 89 /Y put dup 95 /underscore put -dup 96 /quoteleft put dup 97 /a put dup 98 /b put dup 99 /c put @@ -6210,7 +6769,6 @@ dup 109 /m put dup 110 /n put dup 111 /o put dup 112 /p put -dup 113 /q put dup 114 /r put dup 115 /s put dup 116 /t put @@ -6221,55 +6779,42 @@ dup 120 /x put dup 121 /y put dup 122 /z put readonly def -/FontBBox{-6 -233 542 698}readonly def +/FontBBox{-4 -235 731 800}readonly def currentdict end currentfile eexec -oc;j~EЪ*BgNӽ ؑlKq*޲Xws|QFqv`zXMyp"5O˩YŝP(DT![v67XFlU&3!Rq4wσ~j+ou_c2Bطj=-)1_]X` Y{nn9׫/uye );9*fHHK-\rБkg\5&(G<`J7dhn)Zl득52 Z$نa#q13@H;+G"1L(seER ;ԱJo"BFKkv/ ֈpZCޯ*@;db s*Mm~4]꽺\Qߍ):۞3#˂3u?O+|mMۉfH21C2/AHw;u&~#V=@Ņ*Ft@*(s9)UdƁF!;ŭ$r)_e_LRXJ*'*|o+ _|flWU6yM`MFPzXktw_K16PgjmKő}WBWZ$%-n`7SM~NZҺ};#Q7;il07^1*wWi2-Bȓ -9ҙgtvO#!QAoGem9dk0a_ Lel=!R(Ɵpa L#߯|X4SA[/d*R -p5[3;"n viҬbôG\:1PEts4sz]k -0}=P)RAjwS{>Hb 71mYSA9&pCs`)?3.ɀ=4fI@j{pxFU+0-MnWf%)5w`yon,}=Y6[h>W} ІK'-ʢ*3R}+LYD]'B3塰뺽 `KihטN|IrWO~HÐ:j.f -|`1Q` MaNUjLYn -A_( էĔ}$^,lkӧ )^{ 6 J]e)d,1` ` ŊDIQQ()^>IHntzcOΎřv[?071GCF SO'>Q4H]˦Gxwp7EAeh3] 2T5){@Zg3+!UV)TLzduQ{ JҧG9=75>NS3 B,Y.U45Z,Q̫wu6BȬ|R]8QdE Z<1:{-Pz?墣7{8fjV܂jU-Z7ՏiN"_τ XA~m*(QǤ}oңQ!9W$ͶjaQA4,2ܟ)J[Kh&شAc]0@9^u*SG[pWz`6d4vʣ642*DF>Ex'Dz,#x޲͋gD4yRfȢ٢^gzsm/3Vbݍe+5G*[V_N9>թI^C okr&oëo #\:LUnϻ)F/c<I?Z۠0=ӗ4CÝE3 IpB0oᔕ4;3>|T#pVvJ,QqaO9m{ɋ@32HD(КZ$:#vaUb0kmW+f멳LcVAQ^G70w2FA-yô[w;E>ډC@D';EH RxޔLd7/1勇 Ŗ{l]EV&M{whIgI˝TIQz%$L$MfO 46Hg롎Q$ Zߨ37rix*V$7`"vE5lp`rROj4״עJpMN[eWHab&Ew6hEI_K}.4YJXOŠSҐ - ч1 t瓁1$'S]rF+hVcá~'jt11L #DFV -vqN -˜v9NVgxao)9;ڜٰ3ݴ_ kg^tT&n?یQ+V]۱[܉Hvv  3@J?~oXS Mt$IUbg*.aTlpb,(# Q4z1uB;FG< 7(sU^y9ߚIxy}Y2oz -NQ/VnsLZsn`u{*t XR7.tlGT좷|8bU1axDz,"jjUoo! =a4 |Ftlku"tPd†Bs6DcJMʦ |`1h`p-LF&H3HDL/8U"ZusU֤'iQkxdQQ=^H-׹_QV)&15F44/5<~v-:vh/^W#|]eIPSLs .9f Uo&.nN)1`kD;!P60X/bl!Aߑ;Ah!fE{jB: -6,k˶yGȃp zL_ A-72l*!# ?U6GNỶ^.;&"9yaROjst:\ -IYTw J8'ͯPj0MgQ+s:ȌO$scR9s5p'?ǭ¬8-my{v`%}bb$zYmw"ӽlͦDgǣ@#:ה0i֒[K)C22ygr"K 蹾s5vU.$ .b^V҇ʳ nT_eme>Q Z+cO*:wv*Ms[d<= -$zgJq망 /?)ˎ⌌]並_{>DjOuID=),I7GjQenqM]uӕ ̜@*kT"dRNksC%W\ug0-6 -2n1,۔p51hY.z$/AB zVeuC>)rq/9#o׹qJC<.\ZK0=.^;xթ#m"m36𞮭#٫Sib_9a>6t&XQsJU_ vi=0=m`Хɔx|ڳEoÏ47X:~Y -Th/sTAq}OCp'~K kZ62g3^&Q/1}6 ;6U+kWd4ޙ/5¥'-MDݦBÁ|pPf'fVv)}O7~)բ ^8})j4+ ]Y|\6K6q(g.SV]p9BHa~ӄ*J_]Z,l4Z”dF皎#w"fXTZY?%;?Jxj5m>9d-(`pǞUJ$ -"v_ҫS7={j }L[#ŞNBKIf0>uky׾U7d(?8l h_BNVdLh: Y0տHpSDzeYL`Pid8Jwh'[/!P8O>.RF`bkjgO!ν)BEdP-xf La/v,g Ga2 $򜁔Vr*vH $ҰOĘZUݤIhu t`- -l%-}^~ -q$;Sd&/]}LU -\2^~H3 SP5m3Ȱ] s3wVX,Ͽ{QukRBaô]3OI6d@d7Lw `R3 nЌ4 -Yl,"}G!AQ\'LPP7ҸNG5mG鹆 <*`/?ŭVgv+xiҦ^5m ҇OYW3U'zA -ѐOH[,cFw9~k93u[p [luɛ<'gun gnnXfTQs8cNH{k zcMwC'jx{baeCU)Hb3{ƮjR(4W`E?Af9f8S"~d,c)_9b[0s*wVғ5YeJ2fI(uytycCTo>2`rzDT^!37LFǿ#+ &@J|Ϣuvk9 8NL V&ZyEK 71DMۼY~?yqE߮lwEN 3z[3Uez=Lu'QI/WK & %5cn[* ˕o(n$ hnPDvs^'r8'"Ns/3FӋ:.vuOHYR5?_x8JaTES&,(nʢH, Q(](f%HLhdoHE'!IP}xZH; -`U3~x#0-ѤsgA2s\;3PDň7^2X#|l -wkjCQSMkEEDܴh&PaBzx0U IiuMvFeWDB -vSW!ɩYW!MVj84-cg)3 .uC$E_Q2fB':5=܎%GLʟs:peJ<p)74v>?<:=Kή[l7 }ޅb7,"M.ĵaoPhm^asmQ<61?^zyryeP';o=lz*:}vwBb|VZIlX]z -*̠IZ#yʘ+OKSK kJXA+"ZSؘD&k>6BNV!qBM<;^0d#v50xcSk.k@G5ӧ>kwmG|iBy6ueuL0KVv߲߰BO\`ø+٢.Z7 P9쾘FY&ٯG~_!q`A٢@`xX^/?y ?[$HJ.js%,{9bL 1AN}ݑ8p_M:mN=L`Zw#LNFk8\Ph$븧oO7Y5,;u(ph jߥ^*q;m>ً܉BG[kYq[] Ci Toš]?>~DVt^;24tK:XQN0O`{CA -N |\'QTKNzL!=?d)k<@tI2EWi~5W3>0t 3S|.ǷiϋTnՏ[.l9{fY&W^FW<K~hT  ¢j4lp0$Px5L -Y^91V^9kלFa\ vxV a\z/<@tSM¶ UME,4| f[4/NqI87-=T5%('dU[w4 ?!v|RB#CӚPee >#5rMRŏA -XO>΁lCWԻq4 )]Mq)ytyQew=wԬ,yL&^)1 4wBX-ͨ~)Ձk ]c2w* 791ơJPZX{x-Ҩ+'Bg;:TuKv)KoR |@"xZP>Fbd &¦;5dNTS3\Ep6 2͹@w(NP}@@ .IL*"O8u 2k'%lIpu@t3v -ƾerCE=_,e.ɺb`lC'yyFiM` 1C ʕ띥>D鿌ɡ<0\ik%iPNhؒRboNJ1I{¤UFpF QE_V/x_nf]E Iugi:iac(Dv}=mN=!קV3O$B<3L HUۡ9fבY<ӱ_ -9`*ѽ *#!Cg'Z=u;å'x5F(ф ``4Koa.ѳp'xAvv$7(Lc6өfɧ@7U(lq)"hcaa@ybsHsVb,*v R:k5gxGjzMA"l7_Xkrj5Y ̢YюlZmP|._ɟ"td̉SXz.6cx70[{oHߎ-sݩ4!'=J5uc&6. x%N0֗bA:W7`Bqs`5QO=O3U }Ua=f -8'ZaE nĵn_ P`Qy/Pٗg!鼶nQj7;2Dx mɴ_3MD푂W@7A7T^'j4XÒڡUxfyzӔ^+?dy&.ܻdy=K-yIZ/(]'7E@m;W-(w ?'Z4E5q,!h G` 0000000000000000000000000000000000000000000000000000000000000000 +oc;j~EЪ*BgNӽ ؑlKq*޲Xws|QFqv`zXMyp"5O˩YŝP(DT![v67XFlU&3!Rq4wσ~j+ou_c2Bطj=-8\Dg݌] /%bԺnٻڿSy b*L(9sWF R:EMksH02E?Oe+Z'zK΃оif <,EDNZ|J#BW3ϗMp(%5%~(5Bk}Aj c'S-8*!iy$G.w g J0nr +;଍ Kr^ox7p4= CyO#y[49'n*xx/J}o֯p6Oޏe}hà1W6Ϋ%(i]Ii +텴""b3=5sJzbJ>[Wе H 2"ێ0Oy9.t:=$EǪ ]to`% +'EKKfrRK^y`vO^v~ZwR iNMW3HSp+T,q!s0(ع;U+3"J8q3dJ`77+IuؿhH<=!'T́2.r% +v y*S\L$r)Xm!UgWyD3y#<+iYPo+e=a.q%B )z=v"1); t Zğ7Lt.q A;0Y!OX w~e!KqJ +o۰;Z8g&.,0(Url4$O̤cm-$SZE"0xX5gpq}R9bpIqUbNZBE 'Lz{':`e`B4c7,!P{b}z7Ka8ᵁY:Oy NA!ﵗmS8T[:C=dFn98VP[AkSJXѓv'^v[Fh ~u~ѯ2iϣPK9?3=ڗLɀ $jcg yJN.מ*EATbS`">G<],"h "/ٵ5$L+wCX6OC3wwkfԒA!X8;ls Rj+c3lu.x *@qjF.;,S/'59;x;Δ `WA>Ieh?uz2]h|4(I#~'L̵<(<֝êX_ UŨsf'?q4o2/" F ќ@ĀkMf.K.VfF]#NڜS_]gloյRG/Ks-꟔ Zc"t[~gdlv0=д,jDxD 5+FNw~[IiҪF띃oh3jtFo5BN(`r= W@Q2čA;vG^]cr`-s,U<݋FMڍo)quX qå[c%9LadA} MaPj +s:N2*!W 7VtQ԰9EK׼l@PV a-At·^+3 L tX@d>*@sdzG7:ss 8*+C=k==f\Ul|3?в06,3wÕ$(fs}*ZU.'WgnCl ܀ g A*Qo@؀NTщ[iBϞXQҖ9%EB]v]|huN[]] qוn')?M޿']I-XNfBـ7n%4Ů:(D@y7ULmif%7⾉ul{Hȧ+DOj +ztKJnqT㮍+u"\{θ(Rw]lӨyH_=g=p[.rb(t~ +𒎺xwwoXG睮ļJ#dΏſ1hPx-f"h.ǞE(5{@aJpʯ,Xn5z6ÍroT}I=ҍI:ʙԴP]ֽS'30\x;MQVg +DdغiX5$`DG"g nC.3{ u#LaLrREeqtnK(tqX̼|bŶ|=jJWN!|]i{*Vq0F\L)вYI߮(6dgOy:8,g0E=T˷uGO{2ݢ}z-&=Fۘ{KNM\u"2O邼i\UT̛ZF•wd@5k{H[)QJY4Fŗ +fed#A}}/QJxUF{lG +r/Ywc Q/+:[smNȴсТAjf*җn5Ш|]I%̞ɚҧEi{eB1rB`Bc SM<? 1)Smس *VB@Ti>ɓHS+KrhDփ(9ĭȎKge+Jz众̏``&/v5yc~A,1X*醃e@AZ-,- }G 1rhE> +ԊX5;bn~vAqEqMھ+fQp۫sG 歧Lh{Dlw0džR7#K?7ӵ8X;JGHB5A?S{tU/{-"'LL) yeFW%v>u'}ˊ@#bf?5kIfNv"@'gG}R,">l*!U=oט֐qA-?٠ɚcqs ?y|ʱ `ț%[^dw-U9}ö#|zjxji)p-iPdT0<%iihcX'R\g<+ĴU;Qy@n܀ik]\zeEԵ,*[ckJ/yo_L\>\_c7`Sb4`߰kC;)*μ ڧLHWbe ƈTOw/j?8SLֶ1PyszUxìJ WA)=IT1H+vP%9݁Zi +YysK4w #gPւ0hdVE~ͩnIrxrW GeT,Z/E/,]8!GD!Y>("߹*,&E ?bMI@7,"g56V1`cuCg=ʸՃUZNvh$܂:̦/l gokv($daOCZcؒynlũDy8>>,u]g9նD K ~۹I@$WDhmƂwO110:K;`eb& +%ȅ~ASд]I6ET֧݅4~uQ!$٫t]3>-ݖՀWɠmfu.č z<N{턷=- +#2&}b.*hJևGs~D$'}'bDVSN< \[ G7sP=V9@YbgCX{0XEPڼ_51̮GV\!h=>uO6 +䬦f[^:ө  H}vu4!Y'A(,F;jxBN]vuk86k)$yqJ^{hAڡjT_w[#:jک&eFi#ֽQRN`̃#䱁 hؽ*Vh$o5U0ߟ $ҎǓ9N+$wa \sG5#)x+tZvuvBxCg?40 Umnl8D~~0![AUM K^Jch[ł?,y& PFq4$o$ɰx#(.CPЉ,pznc($-[tΰ_ o#Dcg_(x6Ao:^LxGs0,x9ʦ(_򖯩`=LSgLviiaJݨZs]mS^Π:SbΞϦnhxtl761lFmty̙7+$MEӣ`T|C(%uCDeTxeεJ 3DWf%Rܦ˗-4s*/$oྋiz `PDts誜T/pXJP[2I,PȫuΕeP㎌1IBnT!1Rp tcIMsn N<'7+T B*IWNQLd_bG߀Y/o6vެ +@QBLh~r\yȢ9wПd:5 磎f +p5Ywu_ B#hƸ@TTs_Z~RGq fuMY+ZޜYz¸fcsFV[͞/.J?R ͙AB˝lDd1l٬ +!ѡ^[̓g-z֗cv_}ws +÷Z_lxe0[f WDZM_I,G~mncCMfUGd+%6W8^DԦRą>JQEd~@%5 Yi$K"٣ӈwՇ80j(o{6-NZIU"Yم#,xsZ;ƮRS1`ph]^k^^?DQ<(6Ү{+uj~:}+yD؜#mnVcs%Q:.h '7>S J+qI< 0dO*ur04١v1?K\aL2u+*ʥKIx٦ UBx6\y$:Қo9F(R2PA oEPn+̣1O^@;mͰ]0;-\p{9rr=>۔afaR]!iz,*%N2+0J}Xf]#>Gl2jIEA.$np@K0GR({+0000000000000000000000000000000000000000000000000000000000000000 0000000000000000000000000000000000000000000000000000000000000000 0000000000000000000000000000000000000000000000000000000000000000 0000000000000000000000000000000000000000000000000000000000000000 @@ -6280,41 +6825,41 @@ Y cleartomark endstream endobj -161 0 obj << +181 0 obj << /Type /Font /Subtype /Type1 -/Encoding 345 0 R -/FirstChar 33 +/Encoding 364 0 R +/FirstChar 39 /LastChar 122 -/Widths 346 0 R -/BaseFont /XAYTIU+CMTT9 -/FontDescriptor 159 0 R +/Widths 365 0 R +/BaseFont /LAGMKM+CMTT10 +/FontDescriptor 179 0 R >> endobj -159 0 obj << +179 0 obj << /Ascent 611 /CapHeight 611 /Descent -222 -/FontName /XAYTIU+CMTT9 +/FontName /LAGMKM+CMTT10 /ItalicAngle 0 -/StemV 74 +/StemV 69 /XHeight 431 -/FontBBox [-6 -233 542 698] +/FontBBox [-4 -235 731 800] /Flags 4 -/CharSet (/exclam/quoteright/parenleft/parenright/comma/hyphen/period/slash/zero/one/two/three/four/five/eight/colon/semicolon/equal/A/B/C/D/E/F/G/H/I/J/K/L/M/N/O/P/Q/R/S/T/U/V/W/X/Y/underscore/quoteleft/a/b/c/d/e/f/g/h/i/k/l/m/n/o/p/q/r/s/t/u/v/w/x/y/z) -/FontFile 160 0 R +/CharSet (/quoteright/parenleft/parenright/asterisk/comma/period/slash/zero/one/four/nine/colon/equal/A/B/C/D/E/G/I/J/L/M/N/O/P/R/S/T/underscore/a/b/c/d/e/f/g/h/i/k/l/m/n/o/p/r/s/t/u/v/w/x/y/z) +/FontFile 180 0 R >> endobj -346 0 obj -[525 0 0 0 0 0 525 525 525 0 0 525 525 525 525 525 525 525 525 525 525 0 0 525 0 525 525 0 525 0 0 0 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 0 0 0 0 0 525 525 525 525 525 525 525 525 525 525 525 0 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 525 ] +365 0 obj +[525 525 525 525 0 525 0 525 525 525 525 0 0 525 0 0 0 0 525 525 0 0 525 0 0 0 525 525 525 525 525 0 525 0 525 525 0 525 525 525 525 525 0 525 525 525 0 0 0 0 0 0 0 0 0 0 525 0 525 525 525 525 525 525 525 525 525 0 525 525 525 525 525 525 0 525 525 525 525 525 525 525 525 525 ] endobj -345 0 obj << +364 0 obj << /Type /Encoding -/Differences [ 0 /.notdef 33/exclam 34/.notdef 39/quoteright/parenleft/parenright 42/.notdef 44/comma/hyphen/period/slash/zero/one/two/three/four/five 54/.notdef 56/eight 57/.notdef 58/colon/semicolon 60/.notdef 61/equal 62/.notdef 65/A/B/C/D/E/F/G/H/I/J/K/L/M/N/O/P/Q/R/S/T/U/V/W/X/Y 90/.notdef 95/underscore/quoteleft/a/b/c/d/e/f/g/h/i 106/.notdef 107/k/l/m/n/o/p/q/r/s/t/u/v/w/x/y/z 123/.notdef] +/Differences [ 0 /.notdef 39/quoteright/parenleft/parenright/asterisk 43/.notdef 44/comma 45/.notdef 46/period/slash/zero/one 50/.notdef 52/four 53/.notdef 57/nine/colon 59/.notdef 61/equal 62/.notdef 65/A/B/C/D/E 70/.notdef 71/G 72/.notdef 73/I/J 75/.notdef 76/L/M/N/O/P 81/.notdef 82/R/S/T 85/.notdef 95/underscore 96/.notdef 97/a/b/c/d/e/f/g/h/i 106/.notdef 107/k/l/m/n/o/p 113/.notdef 114/r/s/t/u/v/w/x/y/z 123/.notdef] >> endobj -138 0 obj << -/Length1 775 -/Length2 733 +144 0 obj << +/Length1 795 +/Length2 870 /Length3 532 -/Length 2040 +/Length 2197 >> stream %!PS-AdobeFont-1.1: CMSY10 1.0 @@ -6330,7 +6875,7 @@ stream /ItalicAngle -14.035 def /isFixedPitch false def end readonly def -/FontName /ORHHJD+CMSY10 def +/FontName /XAIIYR+CMSY10 def /PaintType 0 def /FontType 1 def /FontMatrix [0.001 0 0 0.001 0 0] readonly def @@ -6338,6 +6883,7 @@ end readonly def 0 1 255 {1 index exch /.notdef put} for dup 15 /bullet put dup 21 /greaterequal put +dup 50 /element put readonly def /FontBBox{-29 -960 1116 775}readonly def currentdict end @@ -6345,9 +6891,8 @@ currentfile eexec oc;j~EЪ/ ȭX~id}S5Q!gtⵎkJc;rN^X5.Sy +'IqV:r㚉#,# dBZ *R*"7٨y=cLIPsF'f> ba ]fv+QAwdO[x"%Sx~{p҈덡|O BÄ/GL3h+Ng03jU1~akDzq=U}.KY碌 ֻ1?C N2Muh/4Gm |Q] -OaFދp6CQ`)H̡$W:D.*Ϥӷ~:g~凗b#i kp;/N p - 0000000000000000000000000000000000000000000000000000000000000000 +OaFދp1zJ,&YfN|K28lzJ4A.жf5ǚOfN(fNoFWR9[(l[+!L:LBMW_*5 +'o-ƂaM+Y&ۼ JO/i> endobj -137 0 obj << +143 0 obj << /Ascent 750 /CapHeight 683 /Descent -194 -/FontName /ORHHJD+CMSY10 +/FontName /XAIIYR+CMSY10 /ItalicAngle -14.035 /StemV 85 /XHeight 431 /FontBBox [-29 -960 1116 775] /Flags 4 -/CharSet (/bullet/greaterequal) -/FontFile 138 0 R +/CharSet (/bullet/greaterequal/element) +/FontFile 144 0 R >> endobj -348 0 obj -[500 0 0 0 0 0 778 ] +367 0 obj +[500 0 0 0 0 0 778 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 667 ] endobj -347 0 obj << +366 0 obj << /Type /Encoding -/Differences [ 0 /.notdef 15/bullet 16/.notdef 21/greaterequal 22/.notdef] +/Differences [ 0 /.notdef 15/bullet 16/.notdef 21/greaterequal 22/.notdef 50/element 51/.notdef] >> endobj -135 0 obj << -/Length1 884 -/Length2 2915 +141 0 obj << +/Length1 937 +/Length2 3272 /Length3 532 -/Length 4331 +/Length 4741 >> stream %!PS-AdobeFont-1.1: CMMI10 1.100 @@ -6408,14 +6953,17 @@ stream /ItalicAngle -14.04 def /isFixedPitch false def end readonly def -/FontName /SJATMG+CMMI10 def +/FontName /YGJNPV+CMMI10 def /PaintType 0 def /FontType 1 def /FontMatrix [0.001 0 0 0.001 0 0] readonly def /Encoding 256 array 0 1 255 {1 index exch /.notdef put} for +dup 58 /period put dup 59 /comma put +dup 62 /greater put dup 65 /A put +dup 68 /D put dup 77 /M put dup 98 /b put dup 111 /o put @@ -6432,12 +6980,22 @@ currentfile eexec ]LeVߐGoo٥\k 9Mՙ= 0)xf 1kX9JS:6V =!X>KM)9! I}HWIUcl=GeZm>nQk2=1p%R`%$]c{!W+8?v(+)0ӈ!YahtA?H @m?|M X9Հ֨#2 :m,MZ+ǒ\Ex9Yn<Ŀ2^FC[`T+ȬD]ǸFF$oB!>;A\T hxh|5:6;ϖUǷ6~k.T*{8K`y8'dT|-QkKmy9 91|Afr (K*)%_ʬtP`.rY?nrn{v2O_5;\g>R{4_ -: 9pEz~Gu E[n窙i9ヽu#=X&>@Q-2fT{0lY+%dm%dBag(MInǹpFt%V/~@6!tL:nS&Il*rH7d?ܡPZ=uۻ3MfM[S`fu(9yRπEؾgiQOo,≓ˁw!-V 9p짍/O; -·μ*X9/ZY~hX'"g5)JB'Js(v5LKe JNFruJW<.c44֦ʈ!׍̲o1/,tF6MR-- !^sDVuYKg.Em(@Y7W-7hZqh՜aQ}릈=m6S؇OȺB>-v۬ͷ=&#C*ʊ; Xe{m݋,Ex+\ңd[IS\5 j;ܽO}S[!g@T͌ɑj9`bjcT!']SP/3FWMKZSjW' F)u0(0G~a &/^t/_Il/[҇'?Hta E -Cn'qvYMҹL﨔.xmi _zزoKW0;W| Oj2sr"T_ؙ 5vT)fs '*deO)!fh9xx7y7¤uUAO.,I\!omFhğ:<@M F#n_&V@ihBT7@Q|!;g"dYuOg[cb]mI*H %Z::*HAoi[,MvZ!!uޅBQ!STouJ $ʼn`toR|6\+Mf fAWQ~a>W#O_,~5D9hpF5aA&Ȅ8셜 1^|IFGh~ɷgUx'ZqR-&Q>oi~.F^f2y6VqM lm>xub;GO`V7+CJpCjYoe3-+G߁K$P\}$ipqS~(̫Jղ}zG5Y! L$yk6wV"3ǩ Ceߌw|¼>[K{qa˨S׽ƽIkZ28$iވ.&dQ=3͓qm602''NUd:ӌwt7qhռè:EQjHƠK2#?e;55OE#9Dӱ^ -ٺ `63> -u„4}wyyxѳ۰-;ŠGNyrm H @[nPom3) |Y2%a]dt%"0wMF1siSLm!h]F[d)SݳXšV>eͷExrvw41?ytJql{4T)͞!g>*qgyogT|J+67R?$O*U55h{¿g0ߺPQRg73ג7[+e6~YHj\:xhd-wdN2]L)!w(-kQTITmY%S}ȸmjAUTLYγر.XY99`˕Ḇg5][d Y$ir)rrbz) {cP! ~z#](3C9h Sə+S+cnFϚX1PӯDE*cxhS֑P6uH3>~8nL.:>zN"o?zbsr fǵ^bT8T*$4; -"gas81UQY;k+ȵΤ8}'<Dcٓ=P;7)*j#:bI}39APnvCP_;>C1wA U)^"v-#-vwd;&=ESPa&s#' 9j,0000000000000000000000000000000000000000000000000000000000000000 +: 9pEz~Gu E[n窙i9ヽu#=X&>@Q-2fT{0lY+%dm%dBag(MInǹpFt%V/~@6!tL:nS&Il*rH7d?ܡPZ=uۻ3MfM[S`fu 30()_J]>`:I/e|oO*Wt5f$# UZ7)[Xt>1i S郮sY4"^z;^{&N 9^>2|6f˚JĸˬܒNC6Ahm!O/KA-%)BZI8ԣ;f0ب haA$۹r z[hq +}.qk!JŖxZ Fm#±ʗ+bt^-$qtbxe6p37Qc.EeQG=U\I +RzU_@BY.gpw|;3f؎n("U02"<9K73YX!z+bCPFp/0hX43GE}F +Jv)9i!L_`3\+Nqhfcڕ6i*77޻fnu e,Kc:;(7}b:JzunufkIT%\;ﻩ${,Uoh +|>W>tǐ]űhH'S3*wwO||-4 ^oDYf{[C}x ;m,坍wCZO>ONW;ӭBh.Qi7KH+x>tR.eoay7rƁ(EP9zzτE< ~M) FA8[ʹKY +?1N/1VFUĮ^qF#ѡSvWN. Pg +7 6q@,TC`Pe+`Ww^h + Er!H3zQS+ps 3Ek5Bgձ>k)}2zN j՗`)2 +CA(^lAv:uTA/Tk?MttX&\h>%(QI}t {fa0@8 ƽq[uKIf=VߎH?wMD*igz/g_$D;4˯!5zTj{fۅ!lQA3d12$l%"d +N{8j|c[AQn+%ݕj +ڞŭ%ax:O@MB&@ d"#t`τ~̳A'(A;+Y~ܪ +`mMRC Ad`ݴ-w$cwCKҙRy~t5Fk&|kR۹*${ΐWFEݎae}O(elY*Ɗj-\-.do,IZligbS $!&#;z.qaޱAE2ҳJ4P&1|-5rS&*0m/ztfD|ϭA$IROS,G!AeԱ>3_,8I?ZpjyA rF$FY5ۅmWn߁OSI* FVC*jT(_lS +O6AOה$7޲"|DM-`3vT0|~G,{hn_$;dH)3•34=rI!^J]}~m4<2,RЋ߿x@e|tG6n ;jsZasȲ{R%C ?}la\~"XyM4( +Hu!O ;3fMPG3:2"-S?Af^&eg\7Yη7N>WZeu:O& GRHr[B (H(EzM7 7*L%/P[\]Ky*H7(?G8?&<5| lhVI+"R*A0 SGY%"DX +ؓnhXF-B9d 5/u$|(7=08 msǸ;!}|KpS<,l9?s:|v+ˡ(n.1ћ}/꽱a054Y:ݜdL<ioeu$O!T Dylk:Pd XG?SD?,a>nάǷݧ;ǟ'1n3ć=uXE[%4js_r8-& `eӌ*D%] +ը%Չtf$PȨl~߾9 5K" +͋0(XkiN\õu&EފKj$d@W}1Zdo0xfɌ0000000000000000000000000000000000000000000000000000000000000000 0000000000000000000000000000000000000000000000000000000000000000 0000000000000000000000000000000000000000000000000000000000000000 0000000000000000000000000000000000000000000000000000000000000000 @@ -6448,41 +7006,41 @@ u cleartomark endstream endobj -136 0 obj << +142 0 obj << /Type /Font /Subtype /Type1 -/Encoding 349 0 R -/FirstChar 59 +/Encoding 368 0 R +/FirstChar 58 /LastChar 121 -/Widths 350 0 R -/BaseFont /SJATMG+CMMI10 -/FontDescriptor 134 0 R +/Widths 369 0 R +/BaseFont /YGJNPV+CMMI10 +/FontDescriptor 140 0 R >> endobj -134 0 obj << +140 0 obj << /Ascent 694 /CapHeight 683 /Descent -194 -/FontName /SJATMG+CMMI10 +/FontName /YGJNPV+CMMI10 /ItalicAngle -14.04 /StemV 72 /XHeight 431 /FontBBox [-32 -250 1048 750] /Flags 4 -/CharSet (/comma/A/M/b/o/p/v/w/x/y) -/FontFile 135 0 R +/CharSet (/period/comma/greater/A/D/M/b/o/p/v/w/x/y) +/FontFile 141 0 R >> endobj -350 0 obj -[278 0 0 0 0 0 750 0 0 0 0 0 0 0 0 0 0 0 970 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 429 0 0 0 0 0 0 0 0 0 0 0 0 485 503 0 0 0 0 0 485 716 572 490 ] +369 0 obj +[278 278 0 0 778 0 0 750 0 0 828 0 0 0 0 0 0 0 0 970 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 429 0 0 0 0 0 0 0 0 0 0 0 0 485 503 0 0 0 0 0 485 716 572 490 ] endobj -349 0 obj << +368 0 obj << /Type /Encoding -/Differences [ 0 /.notdef 59/comma 60/.notdef 65/A 66/.notdef 77/M 78/.notdef 98/b 99/.notdef 111/o/p 113/.notdef 118/v/w/x/y 122/.notdef] +/Differences [ 0 /.notdef 58/period/comma 60/.notdef 62/greater 63/.notdef 65/A 66/.notdef 68/D 69/.notdef 77/M 78/.notdef 98/b 99/.notdef 111/o/p 113/.notdef 118/v/w/x/y 122/.notdef] >> endobj -131 0 obj << +136 0 obj << /Length1 1679 -/Length2 13285 +/Length2 13538 /Length3 532 -/Length 15496 +/Length 15749 >> stream %!PS-AdobeFont-1.1: CMTI10 1.00B @@ -6498,7 +7056,7 @@ stream /ItalicAngle -14.04 def /isFixedPitch false def end readonly def -/FontName /MJDQGI+CMTI10 def +/FontName /MNPMVZ+CMTI10 def /PaintType 0 def /FontType 1 def /FontMatrix [0.001 0 0 0.001 0 0] readonly def @@ -6512,12 +7070,12 @@ dup 41 /parenright put dup 44 /comma put dup 45 /hyphen put dup 46 /period put -dup 47 /slash put -dup 48 /zero put dup 49 /one put dup 50 /two put dup 51 /three put +dup 52 /four put dup 53 /five put +dup 56 /eight put dup 57 /nine put dup 58 /colon put dup 65 /A put @@ -6531,7 +7089,6 @@ dup 73 /I put dup 75 /K put dup 76 /L put dup 77 /M put -dup 78 /N put dup 79 /O put dup 80 /P put dup 82 /R put @@ -6539,6 +7096,7 @@ dup 83 /S put dup 84 /T put dup 85 /U put dup 86 /V put +dup 87 /W put dup 97 /a put dup 98 /b put dup 99 /c put @@ -6584,58 +7142,39 @@ pk2 T(+vQS~QԵa>쥱4ss J2mP.7L&]=(eZNnz9،&!gE1+( +g ;v&QBF@H;!3Sj`XzcXf;ka:̗4hSoHNʌ!.lѠ|Ғ#>EcHRcz&퉕AD:_$O &? 8v.s^Vg˭8*3_ *Ĕ005p!t@8cIY[>CinnE%4ޛ*]3eO IyUL4K&cѢCc I0Z+mm9A}PQC"#g0"k !c&i:xphrA=0)G605TMK2ia"6J?TՃ6yAKxCٽ@|N֤}~} ;PU?^:N1v&іg^25xMwu>2ivmpw x!^!s6dIVx96Yɪ:`e:\yڙjeG}! nDqZ">Kv!H7TnWUAO`--S䫏2yy3./@|Bx5zAH4uUkT&raI=~h| df7Íy d W hVffa)u0r:56C Y`D+kZH -nȦO>݋'ޟ)d}sqs!3$s3؈`Nɓ~AɃ~z{M+=%$'6>}h[ڏ+/[c$Y-}MԻN6vŢ`$r2;>W=z=P SRbyIW|mv;$6 -[ϥAc$wM򸔝+ Pӡ*4}:8xpR~uW뾕}.j3(끅SGðh#Ϥ E/$fc:'+`RIeOQiz|>L &z^-P~KgǢkhFbR,{! -$zj=0{-L+s˕5IDJU3ǡYz@3Ͷf}s   qk͓+81`e zBj[#8CV`03IB6<> 8 Hb#)kCFEߎlܭ)]_yA.rTzؿblh.Y -SX$`FYxˍaŎy^=Iq 5sXxTޕ0"|#Z_*G"S!7)9fV0u7kǰpx=s??vnN{ 9~GKX&nr0QJȓ-qz lC?Na{Lgćg1/F-0Y80bch(0'aŹ.O,\G1V# n_2FK͇ק1V}l k(GST ]̍X9GR8GYV}JK컼M36/e؞{ctPr0Vn,YO -6[mN_n1,[<<\pZN/!@>058)8oLhXL?UR yJٕenHkg)A=eV[ !5i ej_\Vȍ3Iv84&w:L\#26[8tbk } c_pLI$5" H›`Jg!="XK֢zsPE&۠n,K;|_qx.s|O0E -vS]9! ٜWCq_]!ED-jt']!ϖ׾se&Bx L1 -"| -mC_oи?SyJwTC%yVj(@cdƂ`uDzyeV߳l[ c]j -¦~z|`oFT&*@sz*|G{"hϢE <\b+/@C欽qxo흼E4ö9 e4j H sW!JFދ P_Mҗ?-r,Ұhs?KH6t)x %u p q7@Ub݀8qX>h%ZgX<(w@{drC>54鲲` G DB_`@Bm_+A? aөleQ/ s$G)5O>tX \)XCh[9a6O(8ѶfŹGR?* 2h~7 $_̰N mǑD]ka{kH$Cnfe@.tV_mdvxr[^@p0w G-_u0@ӓ9cyר_LC^# 0qi87,\,LyX6Lb;;n^x=l[ + ZMi@Nk8Cͪp3b -TLKLГ9wIb) 0k.>xMne\.MFGJGF}A0G{t/IMG5frd?fbp]o+Bٓp(̴x/ɷ5]#zd]"^zm'FN8RWfyP"GaRODoO)z_ jL_QNdVea@,S."yĚ8"B: 6u c|DŽ Pe-Of?MxG>^Br/e'GK@N6޶{:BP] }THx0,-~T]e4<柚`>?LYJtڏFbkHSTwW2Ț}lTfOÛ9C{ױeq3; -h^]b9mGXó`j^#?'rd֬5pO0#q#=͸WF&//D3n4qwfSvɆERWM3,qk]CpD?^XcWLW6wpdj i`5C՘RsRE$D {~"9e9rV(͐RSJrcyѶ\̄UBp_兩6O,Bۆ xI$bs֮ƙzYJշψ=J/6@Y]18ujN46N -UÊgi>d/e Җӏ6i>윾wT ~(d܄_FU hl 4Rx@J/zB1&n?&}~#Z -)t#" Jtӭ9R:6`vP7><)8 -G?&ǟUEZ _n|c|(%Y2<-Q͂|E)GG~ϛqꃂf -,r9s)&ρCIQs+ʰkvо%EJQx.;ڷNMV!lnI\1sS- --U'JNρbHP,18B{SN"8SoO\ȔK]rXaNOmY9{xYV+K %ڑ_^r^uf[Rγ=zk"΅d" m}jř)፧W o'͠* -L@%2Ejq -qsh`|4e>.ѭE})$G P/Y3LnH^XQukM; c.\psKWq9ojBmm) o'+ w?T¥hPď7ԯK_ ;B)=2M3WEZqYUNh#I|tJ;%-m<*.VΞNc;ER7 -*\L&p^;H(@_ҔGeGuFYH@ -)}hI2pLpӠZf!ɭгuuf 1>@uih-fIMؿ[Kn[n܅γS2S\8||Pd䜋D:3`p>,뮐l.`}(TE҈zabVλ0;mAxbm?MQGc^ŧP.%w4v!iyEiL>|K@TaA wOj *ѐ0 -,)E18!gǸG^6g~UF -]vXD hIVEiBztr,/ٙ[90jvn\<ԸpxCT2  -@P.2jŮѿAD ĮS|b#mtq]2yиh/mIt^K(W[I ~#njL.@=.;H֏K -NQ''HBg oor2ZW^L׭|vp[uT! ! =uX}b}b@WCoZk֦#̱jB̥"6ʽBU-C-qt@UZ9"׳HJ8J}rr\Im: EI>ӝ`iuѐSpl:MÔB|MOJJS2z۟IY'&K!fA\IThI ʬnJc&vxyt}JvcmGuW5 ʪ4pc.!CL1;eމb jg!fNp30Bᝯgᄁڷ/OCI&8iX8V uXGd|2.Ɛ;+b$R휎汮ywO)F*DC$@VަTK1QJ){I[4l&=شdbRq -[\渰.s鏯֙?<5ԡsw|hotips9xS7ETyg{6IMX5]BXQ%-p@>Ų^B:/qW( D{pCME - -Xơ^/sPfrEU@nQ(l&.j%yOgmA*,^+ΧLD7,`9h['A\| -LB; +bNk wO מẕ略}yI N7.l%DG`zDnO)fHWֆKlV{aCnAb|Y&ŧ*ʰr>Zjix' ;C%rʀˍ4쬙&wN.V\sʌD4.cPD6£*Qd~p>@6v+Rq)q"z8j_[xIbK#oFdځalGN5y$$SH/e\z[>,  rY%5Ͽrgz3 ŝl#ڵk`[LEᒤ"D)fH4I =^Ǩei5X8w-o%y;,28Zu ^[5hCLz ݊P2%4 -vw0yi|Cd>#\s1y76f2>#:{pM(42ny7[9 SྲྀaY:)꯼98^j!+#RВ'o]֏ųd -;l$n.$pU"tM7YvhW --;(Rp"B)9{tUؔiioIlyeȂ9ڏ1"X.|S 7`B4֜. ʉPnp2=I\T_")'`4̱|# -NED9u\N.SQZ!lĸ~'Dy=hɌf?P570DZϖ;J5-;e"sQ4 -} -Mt4<L! /{ɍܲ2bjwEH UH9ܵ:SZO_bC\k9|b~!{jcMZStz[tU[4SF׈MqӘ,u] h4%jD@k$A !=*K(mSlm7/}+z'v6%a3QU,ԛ 뫟h&<`p'kELVb*xO%i>|1RJeM>r5騘̕(lԱA$eX)r^;H}#boOBhOmBmbh8i NVCuP]_νOTYyDqɑBbQ_p"pI%If>3PaiLK:(.7pA6D /Wj@ [7zR0'N w1 wHzmQc }%,9cTŋ2B~%Ua$s0LlŖ1w23.>ҸjV -o- +RLWp>Ȋ"-o9<0*^ylv3πSPZ^~xោ-xRFj (B 7 \͕ -wÏkn۽ŦRt-\p"ά C2 t+Xn5tjo #}7U63] sVkLICĐmFfLz6LQ[s5|]0ںlXK(fA.&ؑ{R0&/̫D`hVp?W^E h mֺ n3ѡ.&(d|VA۲PF;Y<]=*l - 4IJh< ҋ8SYqLNnϤ˄n.Ss 2P|M#IB7wiڳbCw6(WyC- -a\‚qׅ4j7(/*, x"#q7*Im8u򮯇uQd].gw+wj'G`ڨ!v:+vF~*:x*R)nh$; 1tM:y܅0 F6Lg#%մx"rW_*m'gZ @ի~__NVZ>[ :i,}"dҚȚӹ  -I7^_FITPbc6"v|,gzՋ(vL),l8dT/x*jrM{NdE -#iwI bf^dJf//}{gKCCu Ė^DՌ wytȊbߐ(~be8R9r(I2 |qRQ74B0Y6|F[-lYGm=R!ls:MX1X'`2f]l# "r/v侠^b f+=_X}w&$):鉧slj?/ޜo.X@Xi }^s`Cc5|5xQ;*-ΝWY̵X3Xw0 _֙oH/ŕ):i_o `5 ,37&u[)˜W{FRkr| -H0U>.Adqve]mg\! klկw*Ky0 ->\&nKB\ŁozBTF0~U$lئ^:˛~]7Zf0݋'ޟ)d}sqs!3$s3iNb=8P: "@hD84cB8Nfw:;a[nS샶 jXx<qTM(>=z᠇~(6 إq_Erz,Yggx(Isa{7P{,/Ɲ)#i+C[ņ!lppHt&C~ g\}}Em;L+kzgz<~+f2C1X2{ZJdiPwNFOmDߓ*E%\D' ;cjG,5`w˝dc&Ѻh;>X5òQ ӟՀ( +($}'3ZT(d8J$XPuհ#cO#܍)oH']Oo+ù*[p FƦhYhb SLŁV4jUTF=kvgs{uQ>$T0_ݍƺ#17 d\A sPCt))*Wфr2Y`tOHcݮ7\,|ʣK.b'G" D]ۻS?yh1杨p]NID VJ{%cײsϊ$5j kÖa о@&In&kb/J 5"JXPY5:wC=Ra *NGM¹UW934bB >`QFsH^9=\u]=V񆫰X1}%IY*bAz @;X!@4WܰTZ`]C:hs0 HhJ5؏ZDo\R4&+?ضwMlvFܔbf_|%ܽn,Ȍ=C7!B/F @CIVo DȖI?\W_7NDmdQJG;Rǟz2715 _z4zVv6VRHc{2owť+^:YQukoS^2QVNY6~jHqɗ8UseC5"vqju5s Έp[]d!H<[LUV??HрdЍa;yD+yPJ̵Y!G$ +{ +%-Bq"XUmj *)ܼ ϸG~J%ꅅԴE,P:b̀.ۉWsD/'vobS,OKBoj{3MLw J} AoO Zƌ,| ӞNXhy=A.OҘq+Q|(g?CYܛ4{4:m*_lL@cgg?%cŲCN":q8E#8 9788v +ώ\¾|,g^[vIbYa& [mx}]]g){#hoH28:z>Y-¬9 +TLէٻ?]WEֺ8$i1(nj]S`#ARűH}YQEL}Az c?iٝ.j'㚸MazmlF'&A8dSlTmdL9tyCg"BtY;pЉԿa%?Ync v8&5~v) n>#l٫kP6t&s#0lHoiw"HgrgћiɂC7 _d,Ik×i]`{vg[(kOq+Yn}@=(.\lf?DsSL{ +CRҢKvf'ޏB;ɯզ g^&l|Q9uAHrE̝z +N&p+ۣ!}؎T\Ո0-`{" +baN(WV[ ~mAI-H>1GgMˆ]xZEGW=(g 3=Ͻާp+2%rN&R$[K93<&nhJ^M*ʲIKy狙z‰S `EKOL! 9kA*r[B.1<ĕǢ<™Rb +ڌ [mơ,G5zaThj=%2:lcA*i5yk`9AK򌣤0MwTc%:+r~mIމ4N{ --j28rsI`5u^YXWE +~Wyx9{3Lw,\86J:X. 9dd5wTL{nH:#H)탸Pl +XCjt%QYD +nۙE^5չBe7-HXTbF +}YhM_I^f!l2fOLR0%AzIhWZGͽV{{k2CQB0PgJt)$(?cTJtCV-5yPڂ .EZn2۶@PSY!~0#[1ä˒H'pv&+E]=raN6I~[!.&#s/̛7IsN k߶݇T̟ D 9p +N¦>3fψd!>kZ!%;b6TD$4"ƺ 7b}"wQX`6cQkX`'2(^,:Ueo'ѣzZ?{O!0繡LA\iOSOt\H 596+ ]5}8Q0kvA^:Uj+%뺀os(J=HAЦO=ZqD#6m!dێ,ɧ(4t%Jqݧ4}!$␡RwXT`.FwL3 1SB[9hpdtjc@#?g{uco)=Y~d,-9 +C %x&XyNTVڎ\Crt,͍D)~>δ{j9)LR1^$^dU/_F|,/<&sH`-xf3DȤ_2-L[ـzqi8oUrtdY[YxS'QމGG-C${qoךuA_lXJ +9-Tz-)_,{M;G"5+©6ӊ 5h9o;Ν@q0&m?AB;S`z"?E;ա|nziP!w;nt?2QGib"!j%ZwxU64gU>70`oˊ"EmUE❽ Ubr?t;4p +@=! nc9miK촖7 u4זOW_\4fNA3,o\[}zMs sWѰrC<ͭ? L-f'oRg =/B XnϲL{Zϔ{pIáa\m!ѕF`|ѱ+޲LPILwvPyݼʔ}+[lg'd|/ىk'Q+t6噫ADAaokO* ~ J;gj}zc8t!hyf)KJMTz?}R2dQ< Fl}fޘ@[.?)K;! vLQ ,~|Φz@2 {hϥ30mC|OD4Or++|1ýTiJx`yHSq\=!h߃9@TVlN7=hf_IRj_HU?ff[6coO"3XS*8W(FAXdlW!rTIE=gz7d#F?Bo|S+]tQi{РuV/b0NEPGasnRo/}x{wxYѓsQ2a1jf< +S'e#"|XI w0_el(Qpb҈38|U MN"`v7z؟isHݺÝ7:(ɜ{T R ;ڕ ʑ;m]\V)Vir`&#$5,} d*ASb, &Z'G%8 |oz%[x[h+wWj1QH1uˀ'GZ)7~Hwgu 3L5vXN5Lo?N9 ]p{.AVJhʷ)c +#rQ j,oQ|}4o)>G~-o>f3` {aP/0VQ茧V朥^-$RQH4"iͩE".#B +6g5dmW8\w%6"CTxZE: N&Z8{ۜy@>x|q~gd6T:w)}16զKy(㷨X" m껽q!`+O-D,icDo %[azO2T=%:^p4s8h0=JAST8Y'G  ;qk< fvMy^<"ٻCe+_K]c&S,>oyIG iv[;t!qHOا&p$ ٪46Rl!#.&x@g`>m R$r?Yb ,^8~eD#EB+L„Ҡ4zc_!.ͯtyHa'¦L?UΘޗ^K1-hsȉ? O1sQ83XŽu@YK0߀‰$GQ5H6$r 226=ߟ^wr&/O5Skazh{g@`gqJ|B2[ olÛݳx7*r#׈9h?*QQms?[Ѕ1>Cy>[?5/,~ۡ.;96a3j(]:.szΡ,Ο}QF sbh@ Jh(M]2\k8xILί* =HܰM-zp Lo$H%GxW`agj_Fa ,S.g{7o{Dpr;92az}D`U16.(%pU!'pBk6D`kAeT*%军&%Y[.\N0IQGyNC'((2Lȣa–>kq>qqf]WQy_sNq~KF'sbv`ozX7cPճGxOGK"OfpY)T(CU[;rADGM6ޘz`*=r|8{`/qo` t0FV-s`(~+w 66KJ^(Oa`9h D<( F?k_[^ސev%`%ΩjʸqDs}$}uHWӪoc VcQt6 m>2 4%؜§aJd%opU<!R{ efV9Riݱ3Ľ; +NLyRjSȈ%(1HDz7=ؓxjo:zlm )<}~1=_2qs Mga!W _UиյZg2PyN_t{З;l6qZ  eIty97Yrh v '.ד\. +8ŹW qHMkֆ}2} m2гCu(@ApILQ3⚮R(WqzxJ\̈EYBI2 ~Y:Edhw}Ƨ1S!^V0&9Ĕvd?Jo쁱71"cQ ь2R6tVK(0̙%Pf-='^K/VUk]J$r%;zq0\cIZ&B?TlF̿g!Ŏa=s]NૄqX OM%2ιlq;`bkU)+} 9+3XLc~̍'ȕ= +w8%8 L@6VqNbj{fM@eH)QXMaCf&mqzgY{u^ՠUQA@7W-yCY/3k3mAV};lY]<>^# lZbۜ@kzv¿d3&A!I 8 %iSOsҔ@ rA%&PTE#,4Tl݊ߧ6t4+V(QB~(<~TITkOì_9(14D3tkhR1Dv0س 659W8o۝I GWU^ݗ:Wc.2D߼Lf~es)k',@N1@sX  LQ2EbY) xr9ì7 ֑C h?kюFH7YJ ҚhffmB-w%aM8u+$KH_D_$??P)V^hoYW䏟¢܌3RB5g :NJtr˿qGerPsNmA xw UKec?2[{]Li~ZeEۈ+aLe7!P.ylX1^Y l+5bNwhsu1+*8SHDP1sNr)N[y޽|p>?.8Rf9~C#{J+$M0nωݰtA?ݿ (xUxP)u#}hI$:,X!OTVPYIuOS 0H ^ȑ@/6V! NX K( :M5ud`9{ P:{ɑccڃXώ$}@?.'2E,mO쿭||׿ +9 R6+aJеX&SU4XB;LcjKz{"vҜ>DêRTb4'И:hbc/4!TD\WY@|0000000000000000000000000000000000000000000000000000000000000000 0000000000000000000000000000000000000000000000000000000000000000 0000000000000000000000000000000000000000000000000000000000000000 0000000000000000000000000000000000000000000000000000000000000000 @@ -6646,41 +7185,41 @@ o- +RL cleartomark endstream endobj -132 0 obj << +137 0 obj << /Type /Font /Subtype /Type1 -/Encoding 351 0 R +/Encoding 370 0 R /FirstChar 11 /LastChar 122 -/Widths 352 0 R -/BaseFont /MJDQGI+CMTI10 -/FontDescriptor 130 0 R +/Widths 371 0 R +/BaseFont /MNPMVZ+CMTI10 +/FontDescriptor 135 0 R >> endobj -130 0 obj << +135 0 obj << /Ascent 694 /CapHeight 683 /Descent -194 -/FontName /MJDQGI+CMTI10 +/FontName /MNPMVZ+CMTI10 /ItalicAngle -14.04 /StemV 68 /XHeight 431 /FontBBox [-163 -250 1146 969] /Flags 4 -/CharSet (/ff/fi/quoteright/parenleft/parenright/comma/hyphen/period/slash/zero/one/two/three/five/nine/colon/A/B/C/D/E/F/G/I/K/L/M/N/O/P/R/S/T/U/V/a/b/c/d/e/f/g/h/i/j/k/l/m/n/o/p/q/r/s/t/u/v/w/x/y/z) -/FontFile 131 0 R +/CharSet (/ff/fi/quoteright/parenleft/parenright/comma/hyphen/period/one/two/three/four/five/eight/nine/colon/A/B/C/D/E/F/G/I/K/L/M/O/P/R/S/T/U/V/W/a/b/c/d/e/f/g/h/i/j/k/l/m/n/o/p/q/r/s/t/u/v/w/x/y/z) +/FontFile 136 0 R >> endobj -352 0 obj -[613 562 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 307 409 409 0 0 307 358 307 511 511 511 511 511 0 511 0 0 0 511 307 0 0 0 0 0 0 743 704 716 755 678 653 774 0 386 0 769 627 897 743 767 678 0 729 562 716 743 743 0 0 0 0 0 0 0 0 0 0 511 460 460 511 460 307 460 511 307 307 460 256 818 562 511 511 460 422 409 332 537 460 664 464 486 409 ] +371 0 obj +[613 562 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 307 409 409 0 0 307 358 307 0 0 511 511 511 511 511 0 0 511 511 307 0 0 0 0 0 0 743 704 716 755 678 653 774 0 386 0 769 627 897 0 767 678 0 729 562 716 743 743 999 0 0 0 0 0 0 0 0 0 511 460 460 511 460 307 460 511 307 307 460 256 818 562 511 511 460 422 409 332 537 460 664 464 486 409 ] endobj -351 0 obj << +370 0 obj << /Type /Encoding -/Differences [ 0 /.notdef 11/ff/fi 13/.notdef 39/quoteright/parenleft/parenright 42/.notdef 44/comma/hyphen/period/slash/zero/one/two/three 52/.notdef 53/five 54/.notdef 57/nine/colon 59/.notdef 65/A/B/C/D/E/F/G 72/.notdef 73/I 74/.notdef 75/K/L/M/N/O/P 81/.notdef 82/R/S/T/U/V 87/.notdef 97/a/b/c/d/e/f/g/h/i/j/k/l/m/n/o/p/q/r/s/t/u/v/w/x/y/z 123/.notdef] +/Differences [ 0 /.notdef 11/ff/fi 13/.notdef 39/quoteright/parenleft/parenright 42/.notdef 44/comma/hyphen/period 47/.notdef 49/one/two/three/four/five 54/.notdef 56/eight/nine/colon 59/.notdef 65/A/B/C/D/E/F/G 72/.notdef 73/I 74/.notdef 75/K/L/M 78/.notdef 79/O/P 81/.notdef 82/R/S/T/U/V/W 88/.notdef 97/a/b/c/d/e/f/g/h/i/j/k/l/m/n/o/p/q/r/s/t/u/v/w/x/y/z 123/.notdef] >> endobj -128 0 obj << -/Length1 892 -/Length2 2827 +133 0 obj << +/Length1 1281 +/Length2 7652 /Length3 532 -/Length 4251 +/Length 9465 >> stream %!PS-AdobeFont-1.1: CMSL10 1.0 @@ -6696,23 +7235,49 @@ stream /ItalicAngle -9.46 def /isFixedPitch false def end readonly def -/FontName /APHGQH+CMSL10 def +/FontName /KZCKJB+CMSL10 def /PaintType 0 def /FontType 1 def /FontMatrix [0.001 0 0 0.001 0 0] readonly def /Encoding 256 array 0 1 255 {1 index exch /.notdef put} for +dup 12 /fi put dup 49 /one put +dup 50 /two put +dup 51 /three put +dup 52 /four put +dup 53 /five put +dup 54 /six put +dup 65 /A put +dup 66 /B put +dup 67 /C put +dup 69 /E put dup 71 /G put +dup 73 /I put +dup 76 /L put +dup 78 /N put dup 79 /O put +dup 85 /U put dup 97 /a put +dup 98 /b put +dup 99 /c put +dup 100 /d put dup 101 /e put +dup 102 /f put +dup 103 /g put +dup 104 /h put dup 105 /i put dup 108 /l put dup 110 /n put +dup 111 /o put +dup 112 /p put dup 114 /r put +dup 115 /s put +dup 116 /t put +dup 117 /u put dup 118 /v put dup 119 /w put +dup 121 /y put readonly def /FontBBox{-62 -250 1123 750}readonly def currentdict end @@ -6723,14 +7288,44 @@ currentfile eexec ߋb >N:u񳻶o =;xT+gW+"0qXٲ"lCpXǹSٵ˪\Y圃ۭȺ7NR >DrɍW*-E Gÿ#9ѳ[BRkO|~OgrVKq|媞ڵ1|@5$ccD2'}}]^C]a\;^v|[Skz 2WM} o/Pp)t7P^ q -L [.DRܠK;v=|GύG{m fMGJ4[5h+s.*KLp:ٯø`Z~Mݪ E< AҷwMJ  '-lBdOGlaڅ@ v8x]!͒ =ނf8:|9BxEdDs rx;i6=YS}Y:'&sf?Mk)%u+ -ƣ*Ǫ+Z'( 8Mf|J'Pr\ }ZVQeLEv'i.ua91))EPiFeǼq#sbv{o3QЍpC4*shH:UkbvV'8(nj -zyxFz"6D@j=Nn[@\ջuQE iZnDp/Pe~$'Qi IT=PςάZ]Q~)- 0(5>cs" ICvVJmԧFmÛFU񫰠Ȳ.]|80u}y3vlw`.j }+؈MXp&pWM ;dZvrc#*oEJ2+}}";I@%tPlWNdAݍ"pQQQk)V;QMR2bエ9}am؅$Od6QUfm7Wubw~p{shVp -Q%,AlF{;3#]A љD5"r#˷#B/)e#@zP3tMAEUSnEw[(h8Cz:GYDRk3ex~3XwlzˊpDlܰ7OnvѣNzYŇy7]}2Ĵs>azeEA'۶vxk ҅ ՑEȠ&1Gىe'[iuXhU˱(O{ <甮@v0 kgi$8DZ^j:bdFlPXAO Sۢ5jZ]84/u7$ИT5{2-nO>FzI{ј04yc[֑+䱞N'?&3r+^WRDNPXJB0|ny x:n -Pl3lCH\ϰ&Q6|c"# oqxAW("1TOx?̈%(lnMYPY@6_Kr[>""1^L+4tk|O-@6:/n?BC8,\@@~@Pt.ml*mZ_c%-}Qh6' ë'5B6j:I玝vi~wա4˭fmn0 +[ʼnQLkC(}&5/: ɊDžnw:-U?lJJNFPn݃~:S>q7C3C5i~3v,j(D+8h<\[Ė.uA Κ4IBBc}3YؤNYK1/{pT˰6sx +HLR+XG!|AD"$Tŋ%5/ dsv P^5H]A"aCZ,h ?/L\tYL ٢*XCEPD)|ǒrz=0,XVr}qtl l#eY찇{Gю{2 +FɎQD8v\C%ńdsq\6"PD|dj4&gInh}䚺滨51LF蹍==m +`~-Ѷ%ׄo8U0wUhaރag6pQv\ξvx +-(a 34K?hE$.kL;_ukݒt 셕9R@'*+ƉQ,PRAkh +6TX->O+[2_밾#VizA|/rntbqkfmO"pLo^jڳ[%O6$BTiQ+0!$'q.HwDv 2Ͱ>}nj >ںrM{#q7? ~9G){Gec3}N>P B-*jK`%=ZWP"#6>s ҡ41)Ya4܅%i`-(8-f8VJgHsP2>+KAxȞĜ{VetѹCج_.l-фFGc5u[ zGN,MetmyYިRdr!'iZ๏FV}VbozBwmt>+LTeF‹Uȉٹ[SOl +Ybr }Kwu/űzk #dk͟/+nF}|f- 9bwbA[X1ƗW7DIHh⒏g4*md7*UVSVλvH6⵬?sh[9oGzV4{e:쮿{V:nDE\OGe< '}ڇF߼#"o 1T(ɞ^VZD(PH-L9h[*,Bzzԝ'R$~tǢNz#?y 7G-ʻw/JDi*TQixYF8Mo^/V-L6i6Z.h+2!bê %Cԛ,*Vx&A\QZ##Uh{^e:]Jhq˂TT*=󸀊H#O܋کέō\r솭 xyeb5q!ܽYv.D{WAM .9:cg/'i䮩@x+|P59\ѻ\(igOxt/&Qj Ah.ꘆIKp+UڥeocWT:χߤz{gtk=UF +h>*ݔDP?p;dp<±D87Xǩ?tMSZ&44 +XP+$o2H<&|{~qQ 7&KHъ_0%щNB@-%K)(}RtX#A>kHkO<0h@dĐȢ{_7/!"=c#IGb.J~O) +;q"1!Scqt@o4_;{r(S,*Mx#Ow{]We"^mv3 ?~wPr~(ijS"#tT!Qq|~8U,Ќf~ Awٷ+r}㊄tO&7i92砸Kҷ]@m"M'%VD6Tm)Y } +c,9+h_.d/e)(> + G9r46x'.!>h6}Qce(E(P^E  N (d)uY>f!,Z} +.v9|y~'ciUF8 + E&9KQؗ" Aun⨳U(WQn(ompv8I荳{02f6`@7~DSܒ-?b#`yDu_)Q{RL:9$a]Y5a]oVƭduY0 HMǒK)@&aga&~-Za[ևh R\eNjOoC <8K.OkFϵ[78bPcP;maeRΣQfy6y+m)/.\#-.Z̾7U1fPnjTp%7!c谙I|^xVaq}ƛF?vnrcWCAuO$ }xEa5nQt"뉶yצ_zЏ]7 +jE%)F {qj]ғܷ3CV$6ğioF^&&G 'L0Qh`&y Wͽt̔0=8?}yTv"O9os!l +=?Ӵc u%#{Cڰ|ªf7M][Cӂ^ӜU!&@Hz>O/~fq;M܊|ۖCfktaJrjS" bx2Vs. +?|?;QSmm*԰$qb\?>3(]G'?甽@ɱ<.Dy #z~k)=U1_b94 *wtLb|$W#m-{lߜ'Up{`Osxjɤ:uUÌi:^0FԖތvN($BN襼[b|¿tIn[`=xl#r,hf)Y StSt<+,̈́!]F5$xH^CUFm(/D}:2 ׀IPo18d1 iV"u)LnT|"h&\LWl#>^3 JȀ2}+ܘ}zvWJ_<&n͢"TZBvpԓ ܘg;GO \I +]40\yn$ϊ0`[p)]YŽ^R0]ANotZ +Fdu@X =LyAWiB,G#bnr:!Z㣀 xCz. hv':ұf|HMW=#_xKP2u[\"2<ÞH.G&Au7E:W[g/E!( Q׌Ӕ@nYN)ɓ)x|1.uQUQ×}(pbU#W?H{m܆ $)c+O>>rmTdNuX>jmJ%꤫G,[i2lT}df +Vs=7<0 JX$ma1u@rªd{g) {1ahg(mgleyhx$SI1y-:ڻ uiEWlG7MDAjDKK߹F†@jpa8Tc)N( ^/}-u61_!6踔4mO*jnfE 3ܲ*w9xϹX&P9@ ӳ7>b?ɹ + HGFޝȲTtڊ#"Wbl2W% p> <-Z6Mv9!X~>0P**]ORJ +d"9Nƕ? TcDJTMȭ`MR:/ 2W_FJFRJ f'nIL&睪ȳKMh;c_2s*ϊhԼ&֣/V3];¹j0{}&N:EF5Mv[ ƕ>ӼZL BfW>'A̩Evn59*uOXS]8to| yOsehe9}==&Hr]%,#0C3L%4@W980*; kbSVX/r;3` Ps$yw +ATٶJz$6&4Y#fiT&|n'V\.x?:T&Kʽpa]u`q;6n cIvDRh'~ncۆ͇(',AO3WY?EXOA.rd#~rCMP(P-69;ʗEm$тƯjaJ:L vbAWgni{ֆ Mb4O7i8o< lϴ4qpX2DAt0000000000000000000000000000000000000000000000000000000000000000 0000000000000000000000000000000000000000000000000000000000000000 0000000000000000000000000000000000000000000000000000000000000000 0000000000000000000000000000000000000000000000000000000000000000 @@ -6741,41 +7336,41 @@ R cleartomark endstream endobj -129 0 obj << +134 0 obj << /Type /Font /Subtype /Type1 -/Encoding 353 0 R -/FirstChar 49 -/LastChar 119 -/Widths 354 0 R -/BaseFont /APHGQH+CMSL10 -/FontDescriptor 127 0 R +/Encoding 372 0 R +/FirstChar 12 +/LastChar 121 +/Widths 373 0 R +/BaseFont /KZCKJB+CMSL10 +/FontDescriptor 132 0 R >> endobj -127 0 obj << +132 0 obj << /Ascent 694 /CapHeight 683 /Descent -194 -/FontName /APHGQH+CMSL10 +/FontName /KZCKJB+CMSL10 /ItalicAngle -9.46 /StemV 79 /XHeight 431 /FontBBox [-62 -250 1123 750] /Flags 4 -/CharSet (/one/G/O/a/e/i/l/n/r/v/w) -/FontFile 128 0 R +/CharSet (/fi/one/two/three/four/five/six/A/B/C/E/G/I/L/N/O/U/a/b/c/d/e/f/g/h/i/l/n/o/p/r/s/t/u/v/w/y) +/FontFile 133 0 R >> endobj -354 0 obj -[500 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 785 0 0 0 0 0 0 0 778 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 500 0 0 0 444 0 0 0 278 0 0 278 0 556 0 0 0 392 0 0 0 528 722 ] +373 0 obj +[556 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 500 500 500 500 500 500 0 0 0 0 0 0 0 0 0 0 750 708 722 0 681 0 785 0 361 0 0 625 0 750 778 0 0 0 0 0 750 0 0 0 0 0 0 0 0 0 0 0 500 556 444 556 444 306 500 556 278 0 0 278 0 556 500 556 0 392 394 389 556 528 722 0 528 ] endobj -353 0 obj << +372 0 obj << /Type /Encoding -/Differences [ 0 /.notdef 49/one 50/.notdef 71/G 72/.notdef 79/O 80/.notdef 97/a 98/.notdef 101/e 102/.notdef 105/i 106/.notdef 108/l 109/.notdef 110/n 111/.notdef 114/r 115/.notdef 118/v/w 120/.notdef] +/Differences [ 0 /.notdef 12/fi 13/.notdef 49/one/two/three/four/five/six 55/.notdef 65/A/B/C 68/.notdef 69/E 70/.notdef 71/G 72/.notdef 73/I 74/.notdef 76/L 77/.notdef 78/N/O 80/.notdef 85/U 86/.notdef 97/a/b/c/d/e/f/g/h/i 106/.notdef 108/l 109/.notdef 110/n/o/p 113/.notdef 114/r/s/t/u/v/w 120/.notdef 121/y 122/.notdef] >> endobj -108 0 obj << -/Length1 1723 -/Length2 11962 +112 0 obj << +/Length1 1759 +/Length2 12291 /Length3 532 -/Length 14217 +/Length 14582 >> stream %!PS-AdobeFont-1.1: CMBX10 1.00B @@ -6791,13 +7386,14 @@ stream /ItalicAngle 0 def /isFixedPitch false def end readonly def -/FontName /CEGWDH+CMBX10 def +/FontName /WMOLCJ+CMBX10 def /PaintType 0 def /FontType 1 def /FontMatrix [0.001 0 0 0.001 0 0] readonly def /Encoding 256 array 0 1 255 {1 index exch /.notdef put} for dup 12 /fi put +dup 33 /exclam put dup 39 /quoteright put dup 40 /parenleft put dup 41 /parenright put @@ -6812,8 +7408,9 @@ dup 51 /three put dup 52 /four put dup 53 /five put dup 54 /six put -dup 55 /seven put dup 56 /eight put +dup 57 /nine put +dup 58 /colon put dup 63 /question put dup 65 /A put dup 66 /B put @@ -6845,6 +7442,7 @@ dup 100 /d put dup 101 /e put dup 102 /f put dup 103 /g put +dup 104 /h put dup 105 /i put dup 107 /k put dup 108 /l put @@ -6860,7 +7458,6 @@ dup 118 /v put dup 119 /w put dup 120 /x put dup 121 /y put -dup 122 /z put readonly def /FontBBox{-301 -250 1164 946}readonly def currentdict end @@ -6870,52 +7467,41 @@ currentfile eexec N(-C :ߒw .B bw0$["PU~NY*64C>N^?0^~o&fZ9-(*ϟVV9 |J7@s.$DFYMi+M즒DSW['1qy4qZ;]6y@F< V&N3n]Db a[sK kԃ9$[F=e,&Ȩ)uv1DVIjaIç# -5k~QaMjFJL3.0lVem; YnⱪyRyh$&'gYx Qi- o 7kacg92X3]*#5sJ^fXגbA>!đkLa\wi\p d³JKWpt+2~-OC=<ߨ7H'4FDS٤d4isCD3M`=eO7mfz~6H36&UԍPց(5ۍX.:|[H"ɂ7SyZ?actS[lDA\t966an,2A?":6ߙ7xH/5e=v es% *W]l (+zE6:l12 ,]̄,/#WK 0F'˙ӎ*m*C|jᏌ[O(E6ǴPEKnc}{ЮbV=jBHO%>W|$,[m6ķ"j/XS^Z*$l~* INN-\6JD4:Mb/r. @ -C'Sx -p`# ~w/'\ fbBV,˕K dPVZVQ0Mhe5(~b QB -7:!ѩ#ͧN TZA/rgYtEsعeB/AϿM>8hY!(8<^>%A_BIP~L+**чʕ~JV@_L,rjWg!.zs$ !ؖ.4^jvfx7,001 -Dg.{}Uxƿ9>-bbD!"zH'>& 'C9{09~wOw >Δ%/e{@ -Ev,T/kS6D\${>su&p'NjeI2_n -1KZ%IW™t1T;M=gZ, ,-"|FƺEV$6ңC;"Se -s+׾@F`/T ';6u+Lv$d^woOd.@=!}\YGBDk$CsWT^<6 ᣣi6B̜D')(T@`yud]N%&iuz_</PMkrd401i:*q@&`^=%MISJ/.>DlMI)t3R3% $i6L귺"F,sFB _Ʉ.$3 -iLO>[nξ+Eo=dV'F!޸EZe,)o =h}` TݩЪlc 1a]+}Ԡfnubms4T6+jv9,/{~|ja{RkԿ\e?xAWl,_j$`l@@[_f -\:Ʊx\ :zSL=26vѻNX$9ōuNU =b#vcG*4[r>j7Qeo\jQTn͐8pm:ݪ+ie*i>c@WBo{J k wp?mt#x #K9t3m fK1YHmq5ԃ6QAIQh/=9hHI5 -Ydب*Lv>KҘ%Sad^Ri'S l%\ Ҏv4w8JxCv@<0<&-|l\By @ka%8}j\ZYZ,ҷ/J8na:8yi)=6ib/bnq[4=L)rD8M2O' Fe_yskp"1j9zr Pl3.Ƅ ]%ݥ`rMc:m*Y!Bx E*j-a 9ҭFXYA/^Q[GO{驀>]مPf+4QLzu.f@8"LE*r| -̙,DC\(_I>}+щשH ݎuj8UtI1G5}1L(K.[_,pظF5NI& -xIޟ/( .l;{E2G _GǓ]2SFjK:/ViɁKU.9El# YN!%a#SA-SC@UC> v`Vax/7e?=RKmF@ qxmT:vGS ӡ'EācJK{D߼\ -y(z^O!m-eRhʢa+ -]"l+ќpW!p}eWk[jn6iX8^)IewM׏@ffqcJ?Dkvٔ 4%~lfv 4"Mz -n7[IxV˕lϫ~2YE-YfѠvE"ňЦJ!b~crRq23 7]dDTp9§򊌁et F%ΉQt":h,W;GH[<CzUwq=ӧ;?Hfd27)p Ox_r}NLO#`#AecFSyx:?f U uVd(cW'̤&&1X}*7mYkE/P/H%3/ԓ"fp:P o`~`ԐY -r#5H﫦(2`-M<31vG d+>$H%{%>Nȩ={_u1QfLѨw'uF!R j_'UPZE-}}61.6U1nj*šI@dYtMOֺ0Q7: ?fK¤^2H3П//f͌ryߺFaXӘYhìOP[dxkN-H 8l# $Lga pY(Vܢ=KkI_|a~xAAWψ TAj]e+EXț*ISNՊ3wy5d'OQ _ZCFq5dvdtY\zqG2cK 9R"P!&,UVMWA7wUBx!2LIףK=m-U-eLO% in&,ipqT!taf.f ݭkv89^oM1Ҷ }n 9~(MDX;gDV@|Bݗ|h|DfedaT={h=䞛> SD5Ew>n@VhGٚ/)iZQCS/ٖ #-O+^()!Daz 3SҊ( 4i! Q[- zF>d` c( YqG9HMr+i)={cew2j7)?:ƁU:+_YUO(3-lV+p3D'{=`194/Y '41g5w:Sݲ`dS9΂<2RB#'د _dQj xAײ%{"ڨݵƸقf^1@ǗNj#1.a0^m\_: -%p`:¡3_]/lL:E|9FX5|cBdK aqcy'7# G{N0 ;ddIdn݁ǫQR{v *}0eKeЊ@ԫ-N VGʑM} ;n3htTrwը(hī៮/#I''|J;iHeR(=yeZaY]0GݗKDN݁yT/3n0,k̊rӐǘs`ؐ%5o$A}&@\@kyg8C;yݠ&FY< gpfpu2j 겠8 -؄ǥq4Mx6*G#&.b=BX>hwGIwэF#=%)Mi[Hk%0)ѓ SÂۼ)v`:=bTfdu]!2Low"6pgJW'Y,BfgU]:6 ZHhΦq.R׎Evdj`8W/9OBpD텞KSvٗ _~80{eP2d -m"!Zy_ ?&Yp#R*y-{_QʬV'd0X3LGll|2!4]RP=NsemwUKxHm4 rŬu4ܭQDRߖ2DwDIa?kНD$Y=1rC{v,7FSr㰍X)G3[ƳZUbs[O^K7,z'W6.wvQTudVT$;NoaK,V -)Kw/Q6-^ Ca#+fi,+Z wGΓMSƛlz"(p S(v3 -k~:6m?_<y?R1 B_꿷;՜ mtAHRKrfUx=QCd ,59&$_*>Hα/瑁RھCGc_J))4x7K>S:03bWVެXzA6PlWsM]\j[m_7ɭD-}i > Ϩ*ipVT>D&"^(fq'!đkLa\wi\p d³JKWpt+2~-OC=<ߨ7H'4FDS٤d4isCD3M`=eO7mfz~6H36&UԍPց(5ۍX.:|[H"ɂ7SyZ?actS[lDA\t966an,2A?":6ߙ7xH/5e=v es% *W]l (+zE6:l12 ,]̄,fvpXBwcsrC*;΢v5mΝfq ZR`[A7;bTvʻbp'au&zM7nGkhj֔a#SfS/+  5&`81?{p~w~5(frEh]^bfhǑX;/%oOvٚc9rXo$ݒ-#z}fSUϻy;͔>r^0~;:6]:SS(x:bNPc i:(O>EQ@q;yʨ؅H0 _.}x]|VCrFUAAC[0Kh?nؽP|GӓMk=D%ؼ|Nu?HX*L$A)zWۍm^z.NCA7nyu-D /B`DFKNico"]\iIʧp@y$VOYXjD=mTP>:P:Mp-#-rNn}jÿ 0pUߡ" +Ƈծ-wV߻9uQ\z?2C2~`kn =G^.̧QG.[|&?7?C\P]O~Gaճ̑ZRjxy5Af +//NgmǺ cq.{.{/SLA`3ވ5:YsI-@tci)0SAXSZ +rӅ/7>iڲ/6I3\c4rcPOuK +/)u#Hi@N9'&-uJĊ)[%bH"fZ6KS26Etڃ/H|sVlHATu?L^ m~VD*Juh,T%![>nhUm'Db?/mtJh?0 e͸jGu 敱[_^$jP+q6"kQ+9hZ韯,{JEks09Zʮ]UĹ4 $~;DX}>0OuӓÉ7Yx~GB\Y%,Ύ!RL[XP0>0WjuGr +a mmOJ |nD:cvhU9toa6ЭqMqa*A× ФѪ +ԹQQ7gP7(oLr;`l +"U?XP|QYU+гTג: Dp<#`-bF.1eZM^=gj\}pG8|Qx{%PSmiW/^g g9*:|֊aK컖>-I,6j8vF,.vI]wiJGlMRҟ'<`'+zQӚULt܈_~dΡ؞f6b(FCxzUT´4#ERmxmLft֤MWZ@ra\8HI mn՚o{lZʗIgbsk sNk|Pn:NnWw4aֲy@( ⽢1!GAɦ'.:lڻ"[{r"e6,Qiֈ>|įW+Wk\(SϠAaFϑX'TU +ዷ2GQA%s3]~0۶u%QX3ǀV?r'3s)3uR-8F^Ofn5 %?T o9IjP#*H1~̀ddN_|1ȊjƖo]҇n)njp(G(A[\0`kG!=ݢZ4nP!*?t{+Vs;{m{yՠFl42\q *H@S*! .L?wG_m-OM4I_-l,dESPK:8p0:-UC`pK_1[RerO_(@ n^x5t +',. Qs2HK981>IW}7hr]e0 q~SdmB]hzjBAAʬ`Sj͸q{ \G,G+#3G`MO`QVA]UkP%#_ϊ".fMGE۷ EVW&z>+-<(7٢22.%kgbw%JO}-lɋ0˶:4m}Lm;2$?UQ"n,jsS#-cw[/ݙ{0W903.^Y>;S1!O\Y|"6u@0T\$PuPv7PIJ*! #9y{Q;M$+ #]}LHk6l8ݳnKэ~h.䊔cWs!'E7zT luO@0klǚ=7UzI 3G NZ~wX9n +V*UN8 ]5U !yEEGo< y%I(o]jwĩQ6!ė%kr/M6 ^%?kY̦c,C&NAx<o[Ls2 {AFPVK;~eAA.u3Sb 9+KQZybb"Ԣ@e|#a;WPA!r KCZn QI$`;9.Ӡpm^4?c0]F=d*]}6{pξ{KxXYq]KPS6Qd"3Byy)=skpV1vb +nھz W QHY[y&2J8ؤ#Y OWgLOND^|_`|j[9w=r4a>f~ƚ{@ wςSKNҢ2xoy ␾J;+ z_9 ӻ39Ti\e" +Oqj6#6nh,—_U;d.YEE,b e[x0b5Ej mĬy@翕M?ݨDĎ:t~ &>uﵶ4ܐۭ^x ;b)-UkPyP|b+1vXuk)XoDu!eM,ɿ;c8v'Dh&Ց^2zw[V=ڒwKl((!Adɩ 'Fg` Ip)ڇ]"=vÚ(7}2fUYH&`, cUAos*5=0mޛ.%MP/Q}/S -{P,0ԴPU WoMحt/rfI.,\_X$gʖ) 8;F-TvЮb`p8W +"p۔cnPZEtB!K׊Pz2RUYN ,Ї~<篃IUGRpGdNNDy@EjLeOt>^5AQfV{̟oLc߅#Otf^,Bw#c*[2Fa6K^VGٵ!ʓMX_TE鲌'ϼHP1P]rvZsײ F%YE>gZu(1V^G!Hy]}{78s]*Ds +[}qDxӞ IͼU>d͟ZCja-fJC(LP,$ƴ%cJ;m>T=Ze|'MHwL>\pH"#ROA#cO)~vk@b@zn!~F:20MSqFz|sB7~)}U#+9~V-&bfzVoR&F41vs't1+DtkK.eEU 7u9o2*/?n#y@$t8[AezEsRz\k cJxvzb7ftyo˲+%)Sp"t80P,/_ՅB % @v1/AvNcJH^%9d M'%`Lakg3~SIg(w#/p ΂Ĉd0ХכDZ'o*L9 FQ-Bn+Ҥ[O'-ာGY^R&0{@qkK&#QK2WF+'7ԊZD7 ]~^(Xgb|_+~wbW Ei qhK5a@ N@meyڀ1o6%z_Nb3@9eZhx~c%2X@G YDݏ~`Nsw|c*$Is' @~m.9"Ep^bEla.j!dV/WSe_Y^b`gXH&?{ ~{ kd~X0=N}fni#95hɴ;DB&e/'TFpgҟ{©ám$ PB[;mRh0{]#/aE= ] O̙G ]J(=SŌ@g/Zl;)"Tx2Hւ,Eo@߯xs5V >ٛ /3SΈ=Q۪3EpB=mVxʅ7AX۶d+* ||UÑӍ)5QC:2C0SA` d6Eo%R@BnjsK/_a=\L^BTI]2&'QdMƌJ< z%4[\wshV`V;zW[RN ;);"Cxk +D4 n\鹐U: ~QFXGおtMd{iu&>fGB\4$Mboqs/D˸7hU<*G= Ch;waW _tj$J,YcdYKhtRG fd,f{_,Zւ *i7߰°lN`rg% Sj*?ƒsObY̵@i칼)'~ %9뚎|ݾu|r;ߎQ8;tTt x͒c.nj!K%+1Zp\zP3?4dz~4٭[鞠]0XA_9EW F>Vf!,\{Y5 PB52YDzOk>InX.W{Xjm R{=+HgEf.F 5Ixc FUL+C&F8~Xs,R隸->a*8(.A2D76Mg9ܴ:xSܶ(+u;8f@4$z0Z,s R~9$zK)q5QWbKtl9YbeyշU*;}omX:Cߕ!SZgKf浻o%I{Gr͕B?%^QIdt +C{MAOU +9h}EJBtH60Ӵ̔`AsŠ?2{*D Qr)-Z7&6M@{v$uLI9p”l4 &OK,?ELNRZw9QQto`YP8MAŸ~JP`e|l̑5/Gk\uWUCf)B"U>(B%wI,~ +%dx0{dIz%HgQҾ5Pv񩭏;T|L:>'CY|(( /*]ϙ^.RM)iGQ5_"jqB16yOZa w(^c`wOEZmRJ!$+V-/9՞"< U= 8d G6˫g}״83c Q2ۡo@*Hz# horϔ6UQzr,`Jp{/}ϾaD%b^FA(Rv2wd j~gĶ¸!o9+$t% [e3ql| n$tA=TEj-֛-V:@r7Ē(_Z$LH*=A".2A[SkɅ bM!ar$_nl^ T)V2R}T.5IZ\ 3mIl< 俣I=U.sAخ.Gl hX3-kk ids#+hҌE^X +7m <9lX?0av>/(ZK0y[*qsen$F:D@*~P +TUOx5eͱDFx/1O?CCZ34m;)]5#p5 5̯Oꮓ#) )@NtU|߰ Ӷ6? k-KֵB=%m.7Vؼ/`mYGR6DlشY ++{yO8$P:%,/e.LŎay ɬ\dȺrm1WH^p <:8jf_Q5"KF)rp}N泓 wr$#/5U|D3):X12%sm4oLs߭.nb1 )DZ8N@DV>0W(͝I>_Z)I :$xͻ8rHhR{Z@֎-^|]*ۋݱ\P1(L>M1cOoCMF +)ߟŽ1{BYV[c^;߮8+ *Jcc3Hb g|6T.7/x!Ir Sd d ݯm\߿l?9}Cb }S4!}M)# \$㠪>wLco+iPv+v2T:-Ec:҅OiieDIרNyA^l\=LYc䀙3ɕz qH^ +#rh۝CL;_.jû@H휎s!Th`6'H9=4f r[<~_,2;ʠ=&HWm"srUe4гoh ؓtQ{CGa z5i,:YW@zB!yi|jzr bJ/ +Fj|;e2cɘ9И?UOȈKʀ K!a[Iw;OMs;RFg9ĀΦfAmA99A/@Dco*FRR +A*Qm2rT0_:Ikb-a*DaZș?C.+[dl5۲g^x*SL"DuUZ8Ō4i#薓䮽@/8()$YY!:? 7bJJ aQg$Zn4kpWsFh.0/In +hK)dD _AK-4\r.x0ZPB0R^ \y!im0ٷv[CT"0Ӂ76i`Z4mmn){޷O!T=ps3 *j6P4g-dxA7gY/Q D6ހs¬z̼1Şc󥬰}zː1k Y7:Æ!}@hՒ/? 8FBSrDizjeYx5:Y_|J{)OAI>ŭۛ]!&dg֩D B ~q?O1Jm4ahFDOB iB2>N"<{.z0 @&}I21#WYaO3^:B0000000000000000000000000000000000000000000000000000000000000000 0000000000000000000000000000000000000000000000000000000000000000 0000000000000000000000000000000000000000000000000000000000000000 0000000000000000000000000000000000000000000000000000000000000000 @@ -6926,37 +7512,37 @@ k~:6 cleartomark endstream endobj -109 0 obj << +113 0 obj << /Type /Font /Subtype /Type1 -/Encoding 355 0 R +/Encoding 374 0 R /FirstChar 12 -/LastChar 122 -/Widths 356 0 R -/BaseFont /CEGWDH+CMBX10 -/FontDescriptor 107 0 R +/LastChar 121 +/Widths 375 0 R +/BaseFont /WMOLCJ+CMBX10 +/FontDescriptor 111 0 R >> endobj -107 0 obj << +111 0 obj << /Ascent 694 /CapHeight 686 /Descent -194 -/FontName /CEGWDH+CMBX10 +/FontName /WMOLCJ+CMBX10 /ItalicAngle 0 /StemV 114 /XHeight 444 /FontBBox [-301 -250 1164 946] /Flags 4 -/CharSet (/fi/quoteright/parenleft/parenright/comma/hyphen/period/slash/zero/one/two/three/four/five/six/seven/eight/question/A/B/C/D/E/F/G/H/I/L/M/N/O/P/Q/R/S/T/U/V/W/X/Z/a/b/c/d/e/f/g/i/k/l/m/n/o/p/r/s/t/u/v/w/x/y/z) -/FontFile 108 0 R +/CharSet (/fi/exclam/quoteright/parenleft/parenright/comma/hyphen/period/slash/zero/one/two/three/four/five/six/eight/nine/colon/question/A/B/C/D/E/F/G/H/I/L/M/N/O/P/Q/R/S/T/U/V/W/X/Z/a/b/c/d/e/f/g/h/i/k/l/m/n/o/p/r/s/t/u/v/w/x/y) +/FontFile 112 0 R >> endobj -356 0 obj -[639 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 319 447 447 0 0 319 383 319 575 575 575 575 575 575 575 575 575 575 0 0 0 0 0 0 543 0 869 818 831 882 756 724 904 900 436 0 0 692 1092 900 864 786 864 862 639 800 885 869 1189 869 0 703 0 0 0 0 0 0 559 639 511 639 527 351 575 0 319 0 607 319 958 639 575 639 0 474 454 447 639 607 831 607 607 511 ] +375 0 obj +[639 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 350 0 0 0 0 0 319 447 447 0 0 319 383 319 575 575 575 575 575 575 575 575 0 575 575 319 0 0 0 0 543 0 869 818 831 882 756 724 904 900 436 0 0 692 1092 900 864 786 864 862 639 800 885 869 1189 869 0 703 0 0 0 0 0 0 559 639 511 639 527 351 575 639 319 0 607 319 958 639 575 639 0 474 454 447 639 607 831 607 607 ] endobj -355 0 obj << +374 0 obj << /Type /Encoding -/Differences [ 0 /.notdef 12/fi 13/.notdef 39/quoteright/parenleft/parenright 42/.notdef 44/comma/hyphen/period/slash/zero/one/two/three/four/five/six/seven/eight 57/.notdef 63/question 64/.notdef 65/A/B/C/D/E/F/G/H/I 74/.notdef 76/L/M/N/O/P/Q/R/S/T/U/V/W/X 89/.notdef 90/Z 91/.notdef 97/a/b/c/d/e/f/g 104/.notdef 105/i 106/.notdef 107/k/l/m/n/o/p 113/.notdef 114/r/s/t/u/v/w/x/y/z 123/.notdef] +/Differences [ 0 /.notdef 12/fi 13/.notdef 33/exclam 34/.notdef 39/quoteright/parenleft/parenright 42/.notdef 44/comma/hyphen/period/slash/zero/one/two/three/four/five/six 55/.notdef 56/eight/nine/colon 59/.notdef 63/question 64/.notdef 65/A/B/C/D/E/F/G/H/I 74/.notdef 76/L/M/N/O/P/Q/R/S/T/U/V/W/X 89/.notdef 90/Z 91/.notdef 97/a/b/c/d/e/f/g/h/i 106/.notdef 107/k/l/m/n/o/p 113/.notdef 114/r/s/t/u/v/w/x/y 122/.notdef] >> endobj -99 0 obj << +103 0 obj << /Length1 1522 /Length2 8979 /Length3 532 @@ -6976,7 +7562,7 @@ stream /ItalicAngle 0 def /isFixedPitch false def end readonly def -/FontName /JPEBBA+CMR9 def +/FontName /PXYLCP+CMR9 def /PaintType 0 def /FontType 1 def /FontMatrix [0.001 0 0 0.001 0 0] readonly def @@ -7090,37 +7676,37 @@ _gs cleartomark endstream endobj -100 0 obj << +104 0 obj << /Type /Font /Subtype /Type1 -/Encoding 357 0 R +/Encoding 376 0 R /FirstChar 11 /LastChar 122 -/Widths 358 0 R -/BaseFont /JPEBBA+CMR9 -/FontDescriptor 98 0 R +/Widths 377 0 R +/BaseFont /PXYLCP+CMR9 +/FontDescriptor 102 0 R >> endobj -98 0 obj << +102 0 obj << /Ascent 694 /CapHeight 683 /Descent -194 -/FontName /JPEBBA+CMR9 +/FontName /PXYLCP+CMR9 /ItalicAngle 0 /StemV 74 /XHeight 431 /FontBBox [-39 -250 1036 750] /Flags 4 /CharSet (/ff/quotedblright/parenleft/parenright/comma/hyphen/period/two/four/five/nine/A/B/C/D/F/I/K/L/M/P/S/T/U/quotedblleft/a/b/c/d/e/f/g/h/i/j/k/l/m/n/o/p/q/r/s/t/u/v/w/x/y/z) -/FontFile 99 0 R +/FontFile 103 0 R >> endobj -358 0 obj +377 0 obj [600 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 514 0 0 0 0 0 400 400 0 0 285 343 285 0 0 0 514 0 514 514 0 0 0 514 0 0 0 0 0 0 0 771 728 742 785 0 671 0 0 371 0 799 642 942 0 0 699 0 0 571 742 771 0 0 0 0 0 0 514 0 0 0 0 514 571 457 571 457 314 514 571 285 314 542 285 856 571 514 571 542 402 405 400 571 542 742 542 542 457 ] endobj -357 0 obj << +376 0 obj << /Type /Encoding /Differences [ 0 /.notdef 11/ff 12/.notdef 34/quotedblright 35/.notdef 40/parenleft/parenright 42/.notdef 44/comma/hyphen/period 47/.notdef 50/two 51/.notdef 52/four/five 54/.notdef 57/nine 58/.notdef 65/A/B/C/D 69/.notdef 70/F 71/.notdef 73/I 74/.notdef 75/K/L/M 78/.notdef 80/P 81/.notdef 83/S/T/U 86/.notdef 92/quotedblleft 93/.notdef 97/a/b/c/d/e/f/g/h/i/j/k/l/m/n/o/p/q/r/s/t/u/v/w/x/y/z 123/.notdef] >> endobj -96 0 obj << +100 0 obj << /Length1 1166 /Length2 5371 /Length3 532 @@ -7140,7 +7726,7 @@ stream /ItalicAngle 0 def /isFixedPitch false def end readonly def -/FontName /QVYKVQ+CMCSC10 def +/FontName /KZQIGY+CMCSC10 def /PaintType 0 def /FontType 1 def /FontMatrix [0.001 0 0 0.001 0 0] readonly def @@ -7207,37 +7793,37 @@ uz cleartomark endstream endobj -97 0 obj << +101 0 obj << /Type /Font /Subtype /Type1 -/Encoding 359 0 R +/Encoding 378 0 R /FirstChar 40 /LastChar 118 -/Widths 360 0 R -/BaseFont /QVYKVQ+CMCSC10 -/FontDescriptor 95 0 R +/Widths 379 0 R +/BaseFont /KZQIGY+CMCSC10 +/FontDescriptor 99 0 R >> endobj -95 0 obj << +99 0 obj << /Ascent 514 /CapHeight 683 /Descent 0 -/FontName /QVYKVQ+CMCSC10 +/FontName /KZQIGY+CMCSC10 /ItalicAngle 0 /StemV 72 /XHeight 431 /FontBBox [14 -250 1077 750] /Flags 4 /CharSet (/parenleft/hyphen/two/four/A/B/D/L/M/P/S/a/b/c/d/e/g/i/k/l/m/n/o/p/r/s/t/u/v) -/FontFile 96 0 R +/FontFile 100 0 R >> endobj -360 0 obj +379 0 obj [436 0 0 0 0 378 0 0 0 0 553 0 553 0 0 0 0 0 0 0 0 0 0 0 0 814 771 0 829 0 0 0 0 0 0 0 683 989 0 0 742 0 0 611 0 0 0 0 0 0 0 0 0 0 0 0 0 613 580 591 624 558 0 641 0 302 0 636 513 747 613 636 558 0 602 458 591 613 613 ] endobj -359 0 obj << +378 0 obj << /Type /Encoding /Differences [ 0 /.notdef 40/parenleft 41/.notdef 45/hyphen 46/.notdef 50/two 51/.notdef 52/four 53/.notdef 65/A/B 67/.notdef 68/D 69/.notdef 76/L/M 78/.notdef 80/P 81/.notdef 83/S 84/.notdef 97/a/b/c/d/e 102/.notdef 103/g 104/.notdef 105/i 106/.notdef 107/k/l/m/n/o/p 113/.notdef 114/r/s/t/u/v 119/.notdef] >> endobj -93 0 obj << +97 0 obj << /Length1 821 /Length2 1985 /Length3 532 @@ -7257,7 +7843,7 @@ stream /ItalicAngle 0 def /isFixedPitch false def end readonly def -/FontName /EUFUZO+CMBX9 def +/FontName /OXCZRZ+CMBX9 def /PaintType 0 def /FontType 1 def /FontMatrix [0.001 0 0 0.001 0 0] readonly def @@ -7292,41 +7878,41 @@ L% cleartomark endstream endobj -94 0 obj << +98 0 obj << /Type /Font /Subtype /Type1 -/Encoding 361 0 R +/Encoding 380 0 R /FirstChar 65 /LastChar 116 -/Widths 362 0 R -/BaseFont /EUFUZO+CMBX9 -/FontDescriptor 92 0 R +/Widths 381 0 R +/BaseFont /OXCZRZ+CMBX9 +/FontDescriptor 96 0 R >> endobj -92 0 obj << +96 0 obj << /Ascent 694 /CapHeight 686 /Descent -194 -/FontName /EUFUZO+CMBX9 +/FontName /OXCZRZ+CMBX9 /ItalicAngle 0 /StemV 117 /XHeight 444 /FontBBox [-58 -250 1195 750] /Flags 4 /CharSet (/A/a/b/c/r/s/t) -/FontFile 93 0 R +/FontFile 97 0 R >> endobj -362 0 obj +381 0 obj [893 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 575 657 526 0 0 0 0 0 0 0 0 0 0 0 0 0 0 488 467 460 ] endobj -361 0 obj << +380 0 obj << /Type /Encoding /Differences [ 0 /.notdef 65/A 66/.notdef 97/a/b/c 100/.notdef 114/r/s/t 117/.notdef] >> endobj -90 0 obj << +94 0 obj << /Length1 2053 -/Length2 14850 +/Length2 14664 /Length3 532 -/Length 17435 +/Length 17249 >> stream %!PS-AdobeFont-1.1: CMR10 1.00B @@ -7342,7 +7928,7 @@ stream /ItalicAngle 0 def /isFixedPitch false def end readonly def -/FontName /WAUNAD+CMR10 def +/FontName /WXIRFQ+CMR10 def /PaintType 0 def /FontType 1 def /FontMatrix [0.001 0 0 0.001 0 0] readonly def @@ -7353,7 +7939,6 @@ dup 12 /fi put dup 14 /ffi put dup 20 /caron put dup 34 /quotedblright put -dup 38 /ampersand put dup 39 /quoteright put dup 40 /parenleft put dup 41 /parenright put @@ -7429,6 +8014,7 @@ dup 121 /y put dup 122 /z put dup 123 /endash put dup 124 /emdash put +dup 127 /dieresis put readonly def /FontBBox{-251 -250 1009 969}readonly def currentdict end @@ -7446,61 +8032,69 @@ i sh2]}A篁Ld>y4k[lj ԻQCl)屠Nnmu-*BT-םvD;*bxGxY%F ^+{ݚMΘEI䵮Fgb?\.ĻWEL¶úR?ty I XSF TUtxTInTڊqaƇ:۫936i*pĝ>uyDUv"I7bV ER5/X\.a_d>I',Rpyu'"Nu@|旱Ρq[$ y*'feL4Xy;3s/t^z|nf\H+ٻK?=7:jրh*O@&K$[*i>ПC'l6{$1OC+菉T~bBs1Q'fXFpWǷd]*.gP:AFD=>p -w։;1K:{eQcJA-A0H˭UF]m1,F,\zCT%!?{C͙L11g>oi멥:+ʻ33XG<#%|1/;@zp&.s<E` )Q\2-\lR J{јIdO -YI\$=1@'("΀UCb9uē)Ĵ -cJϙ !f@q[r]_ \^(2g9N™YE<#H!(=9:EEz}P(tI%t!F3[ C2qRoz7&l}j 0h @k:/P"r uQΒmJTV7Id -uloۛk0їyưR,ߓUm-M#ٰsO+}P8uz)sY%;SZVnJYx.W-o&Jk;w -7K;+sт=}JAը)ux6Zc'ڀpq稜 TW(mAO<`~l>TœO$~!fxG -t |3RbFru隷2AJށWJ`SW+ܠVnO/ d hB:PbV"ڴ2=?2d"Ef*A.b2"_`9x' 3A F$iZ\U7e2_7j:󐘗%nQWC\ԯ@Ttpad)tj% Zt_c0H>nj_ؽ@#$ B-H'&DL"41 dD]{tJCd4QEA&*,Pkv4pdY]֝Ank;9K 0*+Xڷ ])YҪm QT'1fNBGYQdXǨuQ+L''43 =0f]o&;D9Z -dHg?AiՀ}[#jֲͭLNȕ?P)6R1@w9%bݟ"ޚ^y{!8nn^c7蜽+x"?U"J9|_Y囏D;.Q -!=뉘.K-(6j4ywXuL{ޥ?'&vKC~ $6"aS!XqzZ1'~`  6%M4aA„96nKmDكjK@Ë"[1Y3:y<$V>-e2E|K~=^TS-%hDSHMi2h~ a+@Y9B lznq19c흔" 4O =Ias4en|(C2Vi؜3W )jf6BOVKp 5񟮠ܨ:'Aw2B&LQY³uj2)Z$7z7NwةcQ/p|xSy}Bs\k(s+{r(h@ A"bkEIKϞN?7*$GoIs<X 2j,<6v[7}Jn pi(F|~Z Zh9'AhO?ɓTיgT0-z}4y0wȂq -9SݟێҜxA?:0͹xݵgGt#W<syQ:RHhp$ 0. -DQU+YI%'XI~茾{ Z-)\ -pbqM" (5F}GcCMzAm Ofg̼:k[CZJd~w$ڌ -K{~1*Ɔ;bRR3ñ()5tz~n}M\;ϖ 2' I{?Lļv%w9@ =na7 ư܁ rcǎ#.pN[u~RH";ݚ{\4 `.*VHaO9HMˬs -KT͗{c)4-K4ɐ?ZF[믥d89͞2`I,VhL*:NmVC]}@8.dX},#Ps.B}vt -}`[9tb6!}O!'%6!<e4M tZO>WMZuۺ^[󜘏2[z2\N2ya.N.l,jx rڿcS OK3,uӚRn蝲㸻&N}av=#05I; -~ktq eN9^.pk oD3WN{?o %βP~g^Qjw2 C~32뫳NKJv%p]JK>k:e*!LҽȕͣMZk:b덖i{TSL_'B UiT#eDX#%hrEh|7_Gj ;> *Nq|jzExlZ[vn7a[ X.FDXO.7:#v;CUPrڛIY~ Ef%cgU2>y!8%^gx"5BܨI_@IEt (5?nXK8vğqg(ۺ=6~kqj-KxL!&?A&uV͆xq"X@v]D|zP-68NM$`|C80.`LęߌFNn̓"*ՊsK 洏lpO&r,K`T)u}\s Ck#w qbDDU"m+`:~݀FRѤ#Δ:E2b<*񍠁| vm֏}B@&yh@TCAk.].B~zRs$6#%fsqSS9^A/7v5 !-鎜V tj!TpN_LeЋ`NU/ n=y fd8%`v&Fj4k+f! -Y9" -Y(KDSJtb Vu죯SC1~]^ 6/p٨c]]˜7B(s ]2((X})vٜ0f6(Zȝr],I1MMwj+\l"K#0W1R hoNtԮB?ZgSwmDxĥ1)Cr VE aJ?q&ʦ!!?It 82B&t։vXv,aZv\c=9\3eMs=w7L. ]1֣oe4Y#T\~ - E^ʢ+#]/jHqs]za!{-qzLT0=K`1>uƇ=Y춠PC lYD2x4N"|mY%~٘fH|*1g}u, p5M{]rqܴ%]TؼxAɰըO|'M]}>~K|rm~8`-@Gfg7c9}zb)2P؏σ!kv^zLL M<xp<zYS=Qy7ƘWG }0ɩ)Ŋ"lߵ)>Lts|[B$*-+14IKiPz=%]u(=(6ag|?װ`g@A` d0ĕȿo˲EQȏ!E8pYTd9I:Xr~mjLzj%ע'|d(ъK9NWk|%WBqnSmV6L:~yleK; 0 iDLĔ%j=V7E+'Pb@sDj'UKv}cvSDlfYg@HzP!) JSͰ:|B7&j;⁜t9͊Jhm{7 @=BG@BxtJ?Weui\[7? E7A&Ei3a* PC1nF vCTXuTSLLOX2&ǗH]i-ƫIۘ3ILWVceeoO軙{F\AW/G - L<G$ +Jz 1)M=X!z*TAv>X3݋BttQ΄Uy4G M7'f=Cx-!FDMUM/*["5@giaoܸnP>W+^}Kab, :i6)$"ah=TA1T(RJ+C_dcD`p_Ptj̎@lkNyFox>oC;ǹW3-cγ&fm=F}|Η٘h,IRi"+1cQצ^ʥ"wJwr[ ~[sܴbY53l3$JT4>P<8ZX; l!߅*/bpgM_t16Mxdr\$ ƻ{ě?~V=d`xX4 -haTNhI-ySTtH2J;)bi9KTcb -mz3 ?j=8&%ejkL/ |C,sItCvG^oA{8CCb(No9WH(xnf'o؉s1P^7[MUg|h֘xS,da >Dv+:XUL]5 -R -bb;3'ۜZpgWL{Yވ(غBzdaN34H0;G.?#vȸ'q{[|IJ?IKW=9pp_ jq-@v/E^}|Ř4{zҙ -)ıt>8[ʌ/QF#?Ok2`g ./g#$#ͶKM[ (<HN6Oꖐx̫7Zv#|1 k_dF$9~ڽ4~9mk,B;0\0Jj E؃X~X $«#v\aBme#Qf:%m&M -$Cnd$h 862T B}{]n{lO$g]Bgkg&۱uOb:t 2*Sk߇/݈1#ÔEq7MH9p[>WWC1Xd#  U~&k - xn^{4D5\\|0_V(;oj`9N_VIη^ZY*L aٺ|z"Y,ʺݗiL)!:#2;$"r|GqIJgEC/-wj̛S)pD!3yy s&=ժ.?ejXsPMDcTȂM6Ea7j*|9~+j3/Hoo=~ŹrlC=$p}RqP -fPM3Vt {A7фrt`߀Er}g_trU&"X2V.~r{?ANz|&4/&/pdSR6Ņ ec{ `͇e !"qOI̿ ,Q$o FU;]f@tv; zL9AfKߧR❖}nD.tn8 -#\}C꺵s%sɃ}٦mp%9{dG$0k% ,U.!y˛_%|sw1 upmQps쓫vtAK-^1sJ$RͦBQHIK*SƉ2dTY[bWۥnj"q-PۈAG\R={ X)*a_M~[:qVk+ -a1UꞑL<'˜cζfE~u%\

؇5)HJ%2Z.V FmPmcdڬ7tS7&*HfX}t;~B/03,GN -TFܡ ~g_㤪lk|Ca -EXwzvݼӉn\1VQֹ!~fud9Pj)`W772dʙ|sbS#`jwPHϛcވ0T$^=2`IgHvKK<9ڹZ4Y|./73@] ̪ܩjQ5[]5 ugGDsDjt;MWoC -٨ixy'g`5C1yVl"81s~\wF|:Q0+D0Wu+9Llcl뛉1n^M.yۆ:`>(/náǷ]sT~ԄG#Xx&P^g8&J8^XW 0-6*AhwR|l#En=$ᤤ0d,j&FN2tVҖȠ:13p nAdr[XwK 0m;-t,5'!@foh[hݳ$bYM c2q5\h|"ز MEfDD*]Å$C/zD[eb}' -: _FL}O*['lZ؁gD9vC:SGh3zk nI -3r)U7WР z.>IS 2R)@J'qOk +?`Ͽ=ϐ&+7* $8_2$ uYeHіϔjxb[b" +2Y[v1ޱ4Eo"m(rbDF 2 c f'x.U +3\;dwGpq1'ryz`6EjzWZsveYBe,[i~xne%zAb5M@8v~ oTEѶIdVkGTv|Iyz3@-q]n*So<:?\PyرrPrrt.uxW0e/^jD,ǮoکMϣu2eCx"9iY(>Fݐ%AQt{u^pGŶ t#oZ`'2B. Q2](\ +xiSf j!5I* >CU PB0>pq# Aj)#Kp + hm}/AfYTjK楯+sbgi!.wXdyX¬qHw_cHCJk!mL%Q$r[v^x&(xH`()~~$=_x3v.% 蔪]Oa?:W^ laF>׫?>q +傑nӅi߱K]˭"AdG;s(_7{`7'CMA$!4RB8k]).}f,(#p(X +ee`yqG-92h̛z>orǬ ‘etY-A|oknlTЧZT7 \NOҧ/%}/?)g\વcX M`@@HJ"-'BsB~5܏' (R'\焠n}@pj[Y9Xp.uTcKl V2▆6(0@~d#ޡ>ΩоGnr:B 9a[iM}q>T>}CŤkW5߃!оWlEhN90rssߝX pҵNCR(*_VI߱VDANX!P n7-T۔F{߼(:1}9+-R?5./1"xMȬFOܥ3W 㠑fNZS:|U{^ OPa4ΐODWNaҝ0]t ROPQr7OqQ,^V =Uߘfj!H%w߾&[ߌ;,T( R8M1u?3 G Wp^w !bڗjLW0q&2OJ=@U4s\Zb +oXBu?g@w\\3MQvMk6r4{x Y=b₱rkSS,E%B,Vh@4 +< q Gom_^}~,ZP/k{s^-RY Gihku/Z*aX +ڙ @?> 6ىRsU}DYkge cq'pu>r(qkHpRpzZm;YRʧfLNqŏUYwX{s5dH }1qu,ڨ +|ð!;z؁Es1Ry@,G11rߏ_R/JmfwW@i^ +0.xfX\^p` a@G%/E6$Eݽ *15>tXyus$MrVŌ"=O--'sY(,[1>JUüA%PS-1 eOeE,Qbtj7{-J܍dYq{gr=>"birdx͐2}ىP!=l +<~F%w N"#y{d]B R@'}: QL`PWƱ]s/kqiӦ& _Q-מRWLs,ȵU`%LJw5έhTv /&Rd+{h+;!Xm ذi%p;ю8g-5~/ 34r#ӬPź +qݡ{JuzdcUDћ-QBQnj 5T Ud-zǡfSߎP&ځ +-:CJ?aR-2ɐvl+b% jlR2<;u^]\By̹ Y޶B:ws5;Vg]-|"9bT4f="k p{H0dYr<6sw9Z[8u nIπNQUB qMו"Ade'í; +(wU5QOY{|mJ#.Y8_X!&!R4zWBE$R9 +z57'L>({QʤsH=~ڸ(&2R礆[.w!a4G E,R*#dkxX$RXDZ +@q $Iy/ұ@ڋ 4LߔYU$~c)g6x:<j]b2{-g\g3Z,YXr{P5ordk%FfV99C&)~uZ3TYlThY$ 1i}ӹU kU "nEO~( :f'9g98Y6ۻ /z1??ClEG\k_Ëpϩ]M b{O7G4Jw>Y{2kGuYD@Bʻy$&WA-/I5>~&^m\gy :6 P_e5!cy2ixÂ*yHNvlF߯ceG@6nY`JYU׸]q-3ϼy);Xī/R  Uu(ގi1GO.zL?r颏|}M73<7@˺B@jS͊b@bAϊ]DI>Z<=@N\S:sr6cfk + ]p(SªJ 4>Ѝo( %X%rE`Lۓ>'72f #&7qs#6u2FT/v +cpD{f< <2*/"ځUΡaPznYvHr Z^=DL#VMYʣQ +QV:z4~pY+q!6VlnELk//V6\_#} c[A31#Ef6(Wz'<'uq^Q~sӃA?,g?sٿh˶U'a?,YIfϙqk~ `c?7hUYD]vc;Hpź^͇sIDq~E5rŃi}:ر{]!g|քf1l֬;SʟΗPgw6f*H],i"+K{%Ա}wZBQ*حy$ Rך1ALm E9̿I_(H@Zvt^"Kv5a`e\`(#MOiYٲկUUӖ\]z?JrLF'~g`>Y݆hgR:{`G~4VűCY!=j + ް'UONC}ZpLQE E5zGr/ C#'eaٚ#f58y +<Lv!-SڼԘ/)L@ yzwr"EocuKs@|(a."5Լߤt) {:'楴) JIěNaQ,e`g;tG!3M"UIzF&RAgȬ jHp m0f.}0l*8#D^}ʚ +\C G:V;=r8iwh^G1Ȋ dž?rJ.H:xD?ⲛjǬ3R_gJ~ԗXx)s/V\8R0 "ri{=豯.1"d%Á@W`VBMJ/':J9ڽ{MI6T]GZSt*TWM .ֆ_k[:$3@踑u >s};;D +.qE6P5{ |g=4;&JhŎkseWuQa$5G}#0xn#$)'9û ^'J_*{BPʣ'bbD>GRz[^1hWk;n)T˒>\u5Oso@=x0`B. 2m~\VMux? rn|#{Y! g FЈt7A72r0/$MohUUWlhU =$_3qxbP"xu0wɕ q[Mw(鷞P ҩGkro[yOrK6|=$.V܋T[! fU=]Ls_4OKNrLTbGiyA@{}1u?ː]}_[\1[m#l9%I26)Q)ݱbBmvKs26q(/rꗚBYoiY:7Xs( +emKvVie;KOja4tDװHcß/h1/j02jLm.t[N7m:۫( CQr8i%.Dt@Q쬔fDy-R#PANfT[:Pȥpli&l@YX3?ʠ~s XM|Ē-JP=oPalAHS`=ǒqN~ifA?qwb'V؈ϔ9G3јa+'dd$䖑CpWWk䵭k:DG>Ugr)#sAݗM o-*k0zC>uͮdqvxjBۇF8krQ@qq q5{N +Fu)rh!%ذ gI^t*|,kjs0S1$ )VJwDބDhMdH3H8RB8lr%WVB(4V\pD-|'ƌC@x +KMjo)DD!I2ǣYAYAhsy +۳#Ε da~#!HIt"8V!P! }ηw9<#\_&*Yr]1s s'Q*{邢\dVd컐Q) +k$WZvQMž Z"A@LL:2Ʋ^~Xk+I6#}!{?onbǛ[*A +ĶJqR,{yxsxAz;-72fwA!B;˓.C7'Mr;ZR2 +0fյ$_\Y_1kj-0EU4y;z,@̟;275rh& +ѽD˿&8H DŸ +w-mE@lķVig>惶PW66c)h_,.].8kk^j$gՀ* a;rq l>ZuRpd}/,I6ǏqR36W\ΘϺdS(9?wL@x1V`f#U&k9:>|\$zp֓,RCr:?9h485wG?>lr9cgcoMM`%JGuHk$ i{j0|@>/2E8NQo\"H8YXXL ;({/ ^ =:psU?轖uAZ\Ȯ P`p:grw߶?K5*ߠuXA/Ь%ӪZs'Z_d9z"-:L L +'# +?peyxNe}/*Ur_eY0 poe=c5۾BDž Fz+̀8|. Ey; vD0嵓7Ou.[ס`>۳r-Lx;1NpFCi Jyof,=Y߇DHD6;kc\Sm'8K,-psOӫҢP%-? +QL=x7Y/&`dk}̭OhĿ΍U/tB;2򵊷 <L}Q*1[Bө#. +U#0Xb;PAkVbLrO:WIU (lCT]1vvI RISS3"n^i|$H D6a\5Qo n$= ɦNM^w^-bgW:gA!mfʉ˄xM ƾ%騏_MҚo mz,}-;iVDX4?9Ea/ٵm6,ƚ[Gyx n%(+E +! rNޅj |pWc]3M٫2LU8y 6~d&)"oK:8 ᤥ.t 7,DbE/, PK-xgCV![B qkId p}f]/0X s +0eN"-}b}=7SqpOD;?܉yx>,w+jt)Z]Eͤ >(UKڸJQt`Bn9jWXÒ19zsۡ:"i.y&#\c!H+Z |@V+^ej_?HPđ;v%1է}R\aZҙ"s+[sqN*OIΕ|jdU%e@){E@"ؖa5;an፶JZΟ@7 _2L{+q:U~:g:=|ld&I4aҨ`+?Vy_78auAC-\Nc+gʕ{(UeAkS>  +#xBZˁ2); )xi\^E?.7A:f6|)~pPj[+o`"7ȭjiйJ]V:yR4y&0j; ߊUXtrMdQ%BUM)#O +4%]sblrn|nb`@z&$ +G0Ć.3!Z l@`7 ɇ4#_O?Q_*牜 ZDFEM+K#'aKxGX9CBwL!03\WLp<#X-HCݲ"f q 7RZ1y=t F77rK#8 0ʠwes/l+`zP=* @BxZ7|%l$̡s7e8\rdJ%VBě1xT"wPvS{ve/`'/kyƪ>6׳#QRPGͱPt )FJc |rq +i糔 5dOz1Or^P Q :Q$\:Wl,גKBBmN3byj*\ݿ~MY%lTmbm!//Kc6 +7S +f O RAweƞ奖 `rQJ傎9/ C hl_Zy{^6;UfP`VZq. J^bBU j6Uv{=K \)g6l[>ӭzFQ'뙸| M0!/&G]җ(X|/Q896<-쇧A+RYOJEź +v0p,DT)@eJ>ѥ䎆DW0)Myx==cߐYm3/T8x{4#E~;rD̅ڲgz67eSԱ808|[#)z1wΑ'J7_31 {\@M qWanzL3dz|԰.M H@*dyZK~2c-!Fa-FLۅܱXwLXoMj4ǟSu `C D5^P(`\ɕq#6FzPö +"5o8tQR%#p;U6qi/ +8$dE<H3^ ^Иh5mo'l!@=}NڶuzcD;2bvzb$xz`vH^ŋ7z|7>:]ޒL0000000000000000000000000000000000000000000000000000000000000000 0000000000000000000000000000000000000000000000000000000000000000 0000000000000000000000000000000000000000000000000000000000000000 0000000000000000000000000000000000000000000000000000000000000000 @@ -7511,41 +8105,41 @@ a cleartomark endstream endobj -91 0 obj << +95 0 obj << /Type /Font /Subtype /Type1 -/Encoding 363 0 R +/Encoding 382 0 R /FirstChar 11 -/LastChar 124 -/Widths 364 0 R -/BaseFont /WAUNAD+CMR10 -/FontDescriptor 89 0 R +/LastChar 127 +/Widths 383 0 R +/BaseFont /WXIRFQ+CMR10 +/FontDescriptor 93 0 R >> endobj -89 0 obj << +93 0 obj << /Ascent 694 /CapHeight 683 /Descent -194 -/FontName /WAUNAD+CMR10 +/FontName /WXIRFQ+CMR10 /ItalicAngle 0 /StemV 69 /XHeight 431 /FontBBox [-251 -250 1009 969] /Flags 4 -/CharSet (/ff/fi/ffi/caron/quotedblright/ampersand/quoteright/parenleft/parenright/comma/hyphen/period/slash/zero/one/two/three/four/five/six/seven/eight/nine/colon/semicolon/equal/question/A/B/C/D/E/F/G/H/I/J/K/L/M/N/O/P/R/S/T/U/V/W/X/bracketleft/quotedblleft/bracketright/a/b/c/d/e/f/g/h/i/j/k/l/m/n/o/p/q/r/s/t/u/v/w/x/y/z/endash/emdash) -/FontFile 90 0 R +/CharSet (/ff/fi/ffi/caron/quotedblright/quoteright/parenleft/parenright/comma/hyphen/period/slash/zero/one/two/three/four/five/six/seven/eight/nine/colon/semicolon/equal/question/A/B/C/D/E/F/G/H/I/J/K/L/M/N/O/P/R/S/T/U/V/W/X/bracketleft/quotedblleft/bracketright/a/b/c/d/e/f/g/h/i/j/k/l/m/n/o/p/q/r/s/t/u/v/w/x/y/z/endash/emdash/dieresis) +/FontFile 94 0 R >> endobj -364 0 obj -[583 556 0 833 0 0 0 0 0 500 0 0 0 0 0 0 0 0 0 0 0 0 0 500 0 0 0 778 278 389 389 0 0 278 333 278 500 500 500 500 500 500 500 500 500 500 500 278 278 0 778 0 472 0 750 708 722 764 681 653 785 750 361 514 778 625 917 750 778 681 0 736 556 722 750 750 1028 750 0 0 278 500 278 0 0 0 500 556 444 556 444 306 500 556 278 306 528 278 833 556 500 556 528 392 394 389 556 528 722 528 528 444 500 1000 ] +383 0 obj +[583 556 0 833 0 0 0 0 0 500 0 0 0 0 0 0 0 0 0 0 0 0 0 500 0 0 0 0 278 389 389 0 0 278 333 278 500 500 500 500 500 500 500 500 500 500 500 278 278 0 778 0 472 0 750 708 722 764 681 653 785 750 361 514 778 625 917 750 778 681 0 736 556 722 750 750 1028 750 0 0 278 500 278 0 0 0 500 556 444 556 444 306 500 556 278 306 528 278 833 556 500 556 528 392 394 389 556 528 722 528 528 444 500 1000 0 0 500 ] endobj -363 0 obj << +382 0 obj << /Type /Encoding -/Differences [ 0 /.notdef 11/ff/fi 13/.notdef 14/ffi 15/.notdef 20/caron 21/.notdef 34/quotedblright 35/.notdef 38/ampersand/quoteright/parenleft/parenright 42/.notdef 44/comma/hyphen/period/slash/zero/one/two/three/four/five/six/seven/eight/nine/colon/semicolon 60/.notdef 61/equal 62/.notdef 63/question 64/.notdef 65/A/B/C/D/E/F/G/H/I/J/K/L/M/N/O/P 81/.notdef 82/R/S/T/U/V/W/X 89/.notdef 91/bracketleft/quotedblleft/bracketright 94/.notdef 97/a/b/c/d/e/f/g/h/i/j/k/l/m/n/o/p/q/r/s/t/u/v/w/x/y/z/endash/emdash 125/.notdef] +/Differences [ 0 /.notdef 11/ff/fi 13/.notdef 14/ffi 15/.notdef 20/caron 21/.notdef 34/quotedblright 35/.notdef 39/quoteright/parenleft/parenright 42/.notdef 44/comma/hyphen/period/slash/zero/one/two/three/four/five/six/seven/eight/nine/colon/semicolon 60/.notdef 61/equal 62/.notdef 63/question 64/.notdef 65/A/B/C/D/E/F/G/H/I/J/K/L/M/N/O/P 81/.notdef 82/R/S/T/U/V/W/X 89/.notdef 91/bracketleft/quotedblleft/bracketright 94/.notdef 97/a/b/c/d/e/f/g/h/i/j/k/l/m/n/o/p/q/r/s/t/u/v/w/x/y/z/endash/emdash 125/.notdef 127/dieresis 128/.notdef] >> endobj -78 0 obj << +82 0 obj << /Length1 1353 -/Length2 7074 +/Length2 7165 /Length3 532 -/Length 8959 +/Length 9050 >> stream %!PS-AdobeFont-1.1: CMR12 1.0 @@ -7561,7 +8155,7 @@ stream /ItalicAngle 0 def /isFixedPitch false def end readonly def -/FontName /PJYMAF+CMR12 def +/FontName /GFODYD+CMR12 def /PaintType 0 def /FontType 1 def /FontMatrix [0.001 0 0 0.001 0 0] readonly def @@ -7574,7 +8168,7 @@ dup 46 /period put dup 48 /zero put dup 49 /one put dup 50 /two put -dup 52 /four put +dup 53 /five put dup 56 /eight put dup 58 /colon put dup 65 /A put @@ -7617,25 +8211,29 @@ currentfile eexec Jɩ14ulRh+$LHʍ-?xM6mk]FsvN VI &gljᑢ_5s$ U$;|Q|nÜ2 @%ړqP c Tݓz#rr%sV 5jXmcxco!e<꯿!j_&a招Dʕ񮄏]_ZbJm*:/gO!**$_ !YEBě `Ek14#!"AGgJt+1u!*(*}U\#6g1.*u =>Jx7bdژپ|8K8u+0aYq/2S8|ea7lt+qo[YD5v_W <Zw[}7{<p s'}up/Pl Ēde.+R/rHu /&T V]jSXDT ]v2OG90g}M;ρ}Ҙ#LdWVoft&<"C8&rŔyTqd.2*Em9u.m}pk&QUZr t2A -5'Vh*He"z8<`jCZnpZ.C^L̮uÑ9LTr>Ғʩ]]H)eܨ<1BDvT h8#JPϸQ>#<8&6Cc`mE}w56_z#h}ʅDFM"ֶ+\@esx~1lP:S/ \H)l_᤺ѼYrvε[ɹHP:xb_ S6٩,^b~q, ;FKkgB*.6څy!rhN㉳^K0Z\dRoþIh /A]&.t i> -N)`~L CɬS -374TldǧA?*2|iwtYɪA5R%t/Pd -?Ty&$銥f+J y l?cڵ*W𲌲BNE n>PL^x|Gq?"#o",eGb3*|g]BhKxs,9M+d XB1:: ?5gGP, 626y|Bn\AD ū|-_C;s+|/Lmj=f*( wRڮ]e~:XOOnXp6%dLQx %"!租`NƩd_ 2a?Gj}>+={yIb̍e= ZcZLĴ[)2 gqbՖa|؇ DH -ހ `b^U|? R*wC쌆96 GrFwߊt>^hnIlT>RXJagM6#ő j~cG,9#P_# -Lq -< (,] 'LL^ufU[8$IL袋qiIC¹űnC8]ܖ>(/^4G 6oq `^=\xHnN~j;];KmCG$L*Ya*`wL~$_4rL2Z)F$LkL A%Rx5^"aFܒ}zq;:>C`L% -Nx&$Tn3^ 7mʫ28Hr"k~80OXi)ΟL3L<9Ҙ~ro6S tDR] /H/+)♹ 8I͊ >r(,'H@pǦC2=G ".)GgD;x:ڜ}? 0S-Bk2LQnߍjXyRFp4=Kv6`a( 7_vTLxsxV{!v{GGݫ *4Uꮵ$@+s'A͚'{` 95"b@̎juTE[Ii} x9nM(yʑA[^`08|EtUsyޛk*Kw/ze48RnO%zghHK3HU2,?8{ŋ8 @N)x`4OD ҍ] P%PcyM=4E)ccYš~PDi<!ϴ۠r0p_\_^i?! 6:0\ !( - aOYly^\J8AH.4,zVU'U W'"؊Go Z΃Q ~W^N>^U+X*-7H! '%_1U&L˕~)5"jx2$?q9Cz%v6kܱ޾yWdC Л~QF:=#"`eؐe9|>]tp"m:O|m:.~/z&;%KeŻz7ajEA2 |a!OMb4>WkfgXl -Pѿ5wJWß8p0ƌ\}RRkF_z7b;h8 ЖI-[V'8u Ř9ISUu'm4;gi}8q+P .F3q/^?]؎̢[soD&ęjn*0QBE=Ws I, Q =KP~Y^V #( }$ΐpg,9X夲G{q؋O 絬:oz09ܞ+xqs y5';w"6(Y}[L 4i(yo3S*Fw\2j*U%K)fr["7SV2T""&'_}O-qpO'%4[^Ro51~9tp6B'*רILleAxŝm|_j6LJh\Erd k p>B- Rʓq^I.lEvXā0XЄ$Wun#6x07/0u^<6uu@r42Vm2iںte[e|m(!>J9lY椀ꏺ"r6fϔ+'^*hbK}'Cdi㴂F!>[1 |kt -6  +\\8>XnJs^2VKU{Xn:8uQpݎ4^ -{KEķ%YUBF^hp֩Z9k*`pKN%%R<:ڒWR#_\q$ΔP<G7=<5fb*.#_/[QzVT~"E}Ռo5}6nzqĆIi٥g=)"-=_Vx P|f.e j(fO03i^dt%V"Q"yE%]k?!5A啇n1E3B[/Z:G{UuǫJh6 b@ڄ XL8Bfr7b; Ni!k= &z\JثL5_D]<K -?]1!Ԛ.*txO T!ٞOV ->қHJ;\0?Y1jZ<؟~f1 xP>HlL;l#%VRܐNBL(s3wm)m Ep]?g]΅]~]<@ݍ^|Id> #*Z`iɫmG2{c-EVbj; KS"LV+Z+ѼHO*f2`Nƻdo/GB@f=ձLy H҈!@ys$ǝyTRƳ)[Syi:e.Ho*ثT7w&Ivi](>˔iGHs{G}<+W+uAm=|YZo;{Ya8Q2+i`776d PE:_pC`WYq4xfcnK0000000000000000000000000000000000000000000000000000000000000000 +rb]2-OkJ'Jʼn°tWY4a5\l)ڟ 9-ُ w qJѹ`+KWyY2JlB݁X rAOuV[̲(w`r׿玭2>&gljᑢ_5s$ U$;|Q|nÜ2 @%ړqP c Tݕ H0#C^AĘyzXPÌV_mEs>4vʞ  ]{i r!B]ʔFef򎊇ImF`౉gkuu2Ŗ >Rl,Q}gS0ْ*KN 'ɭYӪYlZ2 $`(z"(nWDMj0R *\jBmc[Mf1pCVVk +ZjHvcm5r[#@#*1G7.+x.*Uy<pR<#A{ZFW1X=۪Q@N"tZ/)Aq&_ "hlH#JS+}5 +Gtx tuACŚB h,j.EW /{e.lj`WۦdfJ)E&3ghƤ lak̓KLv,@~9m 426=ݓv@trsV3ɿu* n+踑cFya {?yiلPs:,2jZ襢y>$5$Lwz|XUJGQT1(c|LlJ;\B|KMD^ ZP7eɖqe,3 x% SGy1eaEC>Dyd9ЗyɘR+o<=N}c G3 J1*YAǫ]+t0"1!8Hui5f[}! +ѯeu1[ u'_>tS[οv(2|Ȣ݌G`0{" ?L%30=5]OIcT*)4qn`G*Aha)f4 }ˏ +t3U.Y ` wo("\K%լ$Q_O>7zh%م;kNf?fas^ bwcTmkI{Vxlp#4Z$ r;]Ghx*Qy' `7ZХ3-D|-sn"/n‹ℕ5&%j`BK"O 2Rk 5i g1yzw4]# =qdGuzw1+ruGBv>rOr0H q_) 4 y2ܧ]HbU0CQ&g$$hhZs k(E+oMD8hGߡY;^!{+K5UUgp#pC3Ӯ&E>59dc &qsx p-2 c˜XȠP/+Ӵ_tia&[L^XukԹTҍ6¹TAM'zJ AMX,U( {M{f6*knnfzOX0}Đ0F+JnrMe]UƲdD;xF G +qۆ ea{4z_&k P@96twG@j6Wx[t֥GE)Ңv 'CH.KQRvn 1{-XN +=f"UJs5wZj" O]zOQ3COjfG< ە#.w&Yd"Q1g #C&2/c 2{2Ю>KӞwo{aD6ZD0QD>} IDN[bSs\oG_1vQQdyW$<-_;~BpҔksW4"$M*%q(Us7% AKQ GX̲EPUxIhLlT&Қ6Cam 8dy7Nm857 +]n6,0%Jd,)iL@7*)-pN񚷗|64qMI΍@~Y1^_wφS7`ȉ!9q Mw+E3 x0 EeËtH\l/Dg3'9&'G6gi=$[8dȮ7)qXl˒%W gbGQ +/C]4ƫ }qsۺ>-uM9>}{V!0 ZSM09~&,O5}'@:~:RᗈܰP +aK^"Dѿ5I d߹I6H~72r 1#f lJn` 2gT)^eM(m,&0A +k 744͒1b\:OD3Nm=[BO H,=KxSe8f0(*_V 09zq.nf5;aXiE7d-̛dl8c#DcCY4ʯ`Rm{h33xі^1slԦwYF_ҧoF-R&LR?)@xZčf>VqQVD?S7>h$zjnCum_r;t~5Yf-)Ub9k w Ǹ9uΔ(XiXYy+'mJFae9i"šҗ&Ђ|.Cݸݺ#/a2_JKgRaN35AL +@Y%F3ҨOuzV"]$wmF+7 PЃow& + s 38}F~ +JdF"<24] :TR2͗~L 'H_(^PeG)"VԹY(AP +\GIA`-'  0 2@p,s g0nTd*9ķ?ɒSs~\=•~x+&]Sϫ@od9v '}!MqZ!fvJ'yEVG`ưH"89$6OT91#/WJ/ҒQd8 V_1/XN2~Gk>9U~Qgēm +3RUr[q2aI $.+Lr5^@\_eZްF qT(dC"zR~U=:8L xR)GdHhXb#LWٜ;?5c97I.؀E- }usEzWVŻk/'LSSMw|J({yl\f~?% *}KJCB˻8lO7%^,~9+aVgF4 I0HRs +5&+UԓeEYזNPI`FPoKM\f>uP9gc;gY-t~bY_~Q4Qiq׭@"8Bd`о+8|@3&l +*]C3bN`\/%ڵ? <1 ;pb/k[q4W\M+}4 efdNMUӐ{Pōl$ey!R@-ޑ?E{ŃL!n>a +v"%ruzC$8G5cZ=jZ\<x| 6yvWkR݀=MNa=mz劻L^*ήDٞ, %l-w]>,17&L]pQZ;v<}K͇OjjNw&?3 +vPmz3yq?̓'M 璃r<(pex<ֿe\vDSJRJQ5]z`.'u0ڽoi9KKSLMZUi4^_E7 +{ ք1x:tݑbkfԝ=ӣi0=Mxsưn_ ⠂X[У DpD|Q.9aCLukducodॊ{"ltɐqO^ = :sK!;#ANPm"glt[G_# B"4=Ӻ}=v(#:UXL d4alxt*caKQyg%ކV.m<4KFq9zб'Ic00jX$ e9|&J ]&v&No:P k*a2vUIpd@9ލ}I%{ Geu,%.\B>8=ӧ)Yf&8e3ѭz08sAD>0zsba _nIΎ 5ugӐl_,렟Ect5fzâ%C(~ "A!;M!s1zY{ %jy¢֘l#Qċ*!Goēc7z#NVϦ{8O 1u:}+bWv~o"ajOi6o(͓*qs$I| %1!+4BABQdjmW8-8q%FL-x약ig ^ 5kR/./m5Kl疣?J-$FimzjwZ`gfN1ñ!(a?:Kq WPYga9aB&1 !<4)'lMwv-#(0GH_Xw NZކj;xhe'NpO~q\$o&'yw^b݂./2o4#ȹIFLoe'V[D +AnnY oRAHa7bVAkGsT製ܭ9PX:8*9U5g/1NIhvElǙvQ/nc |ཅm21@-&B.1p@[nCL x_+F̠_ OF> endobj -77 0 obj << +81 0 obj << /Ascent 694 /CapHeight 683 /Descent -194 -/FontName /PJYMAF+CMR12 +/FontName /GFODYD+CMR12 /ItalicAngle 0 /StemV 65 /XHeight 431 /FontBBox [-34 -251 988 750] /Flags 4 -/CharSet (/quotedblright/comma/hyphen/period/zero/one/two/four/eight/colon/A/C/I/J/N/R/S/T/U/V/quotedblleft/a/c/d/e/f/g/i/l/m/n/o/p/r/s/t/u/v/w/y) -/FontFile 78 0 R +/CharSet (/quotedblright/comma/hyphen/period/zero/one/two/five/eight/colon/A/C/I/J/N/R/S/T/U/V/quotedblleft/a/c/d/e/f/g/i/l/m/n/o/p/r/s/t/u/v/w/y) +/FontFile 82 0 R >> endobj -366 0 obj -[490 0 0 0 0 0 0 0 0 0 272 326 272 0 490 490 490 0 490 0 0 0 490 0 272 0 0 0 0 0 0 734 0 707 0 0 0 0 0 353 503 0 0 0 734 0 0 0 721 544 707 734 734 0 0 0 0 0 490 0 0 0 0 490 0 435 544 435 299 490 0 272 0 0 272 816 544 490 544 0 381 386 381 544 517 707 0 517 ] +385 0 obj +[490 0 0 0 0 0 0 0 0 0 272 326 272 0 490 490 490 0 0 490 0 0 490 0 272 0 0 0 0 0 0 734 0 707 0 0 0 0 0 353 503 0 0 0 734 0 0 0 721 544 707 734 734 0 0 0 0 0 490 0 0 0 0 490 0 435 544 435 299 490 0 272 0 0 272 816 544 490 544 0 381 386 381 544 517 707 0 517 ] endobj -365 0 obj << +384 0 obj << /Type /Encoding -/Differences [ 0 /.notdef 34/quotedblright 35/.notdef 44/comma/hyphen/period 47/.notdef 48/zero/one/two 51/.notdef 52/four 53/.notdef 56/eight 57/.notdef 58/colon 59/.notdef 65/A 66/.notdef 67/C 68/.notdef 73/I/J 75/.notdef 78/N 79/.notdef 82/R/S/T/U/V 87/.notdef 92/quotedblleft 93/.notdef 97/a 98/.notdef 99/c/d/e/f/g 104/.notdef 105/i 106/.notdef 108/l/m/n/o/p 113/.notdef 114/r/s/t/u/v/w 120/.notdef 121/y 122/.notdef] +/Differences [ 0 /.notdef 34/quotedblright 35/.notdef 44/comma/hyphen/period 47/.notdef 48/zero/one/two 51/.notdef 53/five 54/.notdef 56/eight 57/.notdef 58/colon 59/.notdef 65/A 66/.notdef 67/C 68/.notdef 73/I/J 75/.notdef 78/N 79/.notdef 82/R/S/T/U/V 87/.notdef 92/quotedblleft 93/.notdef 97/a 98/.notdef 99/c/d/e/f/g 104/.notdef 105/i 106/.notdef 108/l/m/n/o/p 113/.notdef 114/r/s/t/u/v/w 120/.notdef 121/y 122/.notdef] >> endobj -75 0 obj << +79 0 obj << /Length1 1144 /Length2 6097 /Length3 532 @@ -7696,7 +8294,7 @@ stream /ItalicAngle -14.04 def /isFixedPitch false def end readonly def -/FontName /GHIUBH+CMTI12 def +/FontName /GPDXAD+CMTI12 def /PaintType 0 def /FontType 1 def /FontMatrix [0.001 0 0 0.001 0 0] readonly def @@ -7767,41 +8365,41 @@ Y| cleartomark endstream endobj -76 0 obj << +80 0 obj << /Type /Font /Subtype /Type1 -/Encoding 367 0 R +/Encoding 386 0 R /FirstChar 45 /LastChar 118 -/Widths 368 0 R -/BaseFont /GHIUBH+CMTI12 -/FontDescriptor 74 0 R +/Widths 387 0 R +/BaseFont /GPDXAD+CMTI12 +/FontDescriptor 78 0 R >> endobj -74 0 obj << +78 0 obj << /Ascent 694 /CapHeight 683 /Descent -194 -/FontName /GHIUBH+CMTI12 +/FontName /GPDXAD+CMTI12 /ItalicAngle -14.04 /StemV 63 /XHeight 431 /FontBBox [-36 -251 1103 750] /Flags 4 /CharSet (/hyphen/A/B/D/L/M/P/S/a/b/c/d/e/f/g/h/i/k/l/m/n/o/p/r/s/t/u/v) -/FontFile 75 0 R +/FontFile 79 0 R >> endobj -368 0 obj +387 0 obj [350 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 727 688 0 738 0 0 0 0 0 0 0 613 877 0 0 663 0 0 550 0 0 0 0 0 0 0 0 0 0 0 0 0 500 450 450 500 450 300 450 500 300 0 450 250 800 550 500 500 0 413 400 325 525 450 ] endobj -367 0 obj << +386 0 obj << /Type /Encoding /Differences [ 0 /.notdef 45/hyphen 46/.notdef 65/A/B 67/.notdef 68/D 69/.notdef 76/L/M 78/.notdef 80/P 81/.notdef 83/S 84/.notdef 97/a/b/c/d/e/f/g/h/i 106/.notdef 107/k/l/m/n/o/p 113/.notdef 114/r/s/t/u/v 119/.notdef] >> endobj -72 0 obj << -/Length1 1463 -/Length2 8363 +76 0 obj << +/Length1 1460 +/Length2 8357 /Length3 532 -/Length 10358 +/Length 10349 >> stream %!PS-AdobeFont-1.1: CMBX12 1.0 @@ -7817,7 +8415,7 @@ stream /ItalicAngle 0 def /isFixedPitch false def end readonly def -/FontName /AJDUCR+CMBX12 def +/FontName /YHUOVJ+CMBX12 def /PaintType 0 def /FontType 1 def /FontMatrix [0.001 0 0 0.001 0 0] readonly def @@ -7832,7 +8430,6 @@ dup 51 /three put dup 52 /four put dup 53 /five put dup 54 /six put -dup 55 /seven put dup 65 /A put dup 66 /B put dup 67 /C put @@ -7857,6 +8454,7 @@ dup 100 /d put dup 101 /e put dup 102 /f put dup 103 /g put +dup 104 /h put dup 105 /i put dup 108 /l put dup 109 /m put @@ -7881,34 +8479,26 @@ currentfile eexec M(Y8gJݪG JEJwLOFdTvYӐBlg=6}=]\O.*Wc6D(rbIebN8!KAeRn4&K%^p w a f#ۢ:#۰\f浕MxpŨ&cYٲm#]qvOT[ȱG_w;3%t.PV!}}ph2,1⾈͡\?4TT1f ۹tV%V }+a n z"&rW;aA{\j=&CCC3-A4\'R$cyf?)Uѣ4̗Tq,;2SKZ o"&5·e릶8N7F&*qnNu+v,v󂑑Ts52r_@1؋!y'D J~\B<8dy4+=eji~bW[p v?ti򯹥 !<8pÛ=DDƖ֩9I9im˜-Jsm1=("=R=nc|k)Ps8Yi?鱞 ,Q~+>lbC3^Qy3y1ayYf(sjX>ZHw%}m7>\z=)?MJ/ڥ}+vk|O)M\VAWUVe¿2ۋ3LK}:jH3JKwEӍ9eeD98D` +1|=c0bOIn#EJH 7fy]xPrP.r+8;I*M׿bS/_ Ўi4R|zkh'}h *p$Xs5ѣ6^ʳYk%fb z:?y -~ve*iQ F9z!skE8O?zd_1دJ3s -WG֜jC@{ -v۹%}ȅͽEq. %` o1(7ïa#~3w6?D"̂ )msN2l^[6>H ->|ª"nܞ[&*+ -v&b;t69QmFL/a G!֌cD }-1rK#ًQz${w) { 70r&)3&tbٻmZ#z"dIݛ|ltr,mp\Fs|{ 9j ϑDK4%ZcR%(8xPtV%^b -/NIh=̤Ĭ曤@$ثE1Qys |  c7O"?6nnSϘ>}{; ;ΩL7ywӇZ)r ] -H؎e

@/ڢ?2?Z0l{b$vxTHYomZD;3:8#:u\,лr7beeFf0AWq[ -TXV s3A!nWcA&JXP<*nWAphǥ`8҇ec#6R/F3qNtvkᐢ,DaB[شN2z߱5 8V>yNC~J g{/pع'FZıZx愒UPtCS,<ι8\oNvҼN{!%35dI-K#Nc~a*ʈ7rl|QM6LGb60wHg=HdfVRJq4R:d'5CCb"rz_""'+ -p9-ўP r<<*lERI;lX֟K}Fe(sgj!6gQÇm膿,ܘo("d Qg$k8'>u]GId;- DJf'wbH:SyvD۴dTӦ!;+}C<@Z5^xme>7QC\XcrMugrZu Κwz Vӹm2SFXPʪ0y"wc]hd~|gD8pI=%Šv\b7*x2!ӛh'vzqybd@ )-`)ys CkXW J+Չ.wdGLEjoncédN- ̨iu6! yK1V#wsLDGXEb͓͝UnyxxBʱU&^lEx͔l&h\EDxOΝ!~e~mO X(ů8"F}c3gJ(t.F% DohuPVr&C&^iDn?"k6SuͰkp4&E0~(|S#`"]G8Y&j/*O|rsMyqp R§`.e'(DޅU0]%+"Bj OlUb^m 1hR3吲-x3~-юznL -K@VDκvZ>fAv3NQyDܺ| jC00+>wz΋ayI냟kD Ԃת&&J7xB_kQ=i9>QD=?VU /DLŘ-25ŹpzsXRUkMZ4wɠm!]8Oeu؈*Mg|؀Xa竵K$5Љ)يᦙ[eΖѼ>~\kq#rQ 4ju=)UA"^HqWb%EJV/~r; -dxtנ^G{l\08R>Bձsđ]=ߙRLb<a7y9BtvĴRwK'~7Cr%3:ܞnEznKfXBmq.srm # 9˯v~oTq.룾'SjA0͇倷SRa6HX~A[ߔ*~#RQA:}@yuzM YF5jYyHPcÒ7Z 4§л(ʾנ>ùP,FU;87Niժfٰ){[d md368+ZzeA`#lY*>/mjr/I&,:mV0ks/hJΫbOAF--;Y%;ϱVU^7ܧB!4}qYN\WX!) '%`(oȤ^ù`GSG9"6IY#ލ:k1~vagϯt;'q;֨wΫJ&db(Hv^dD ->g܃N.>Z S1ױ!4 -bX(x6E0_(7ͣxӛɍ%DG -=nے9-C!=p*ldkSG3vj'"ЬG* -f[G,'%MZ5BL8E4oE ;i9_ʼ4 -z{]Hό|f$G9*"~{iEĎÃZ*uf:B?T1jsp̃rʀnXaɮ޺?6E=`8SkUU3=]9apˢB+{ -zY4OZѺ;NECh:dǮz#:qp dU‰F cH}(WQy/zXU[>&S~o_s0D>e -k ձ)P -˫=" K !6 XЇ$|%?( Eɹj zc3$S _E6LȌ LnEa zLG",TrSW|FSL7zpyD-5.m 7F υ?ֈF-4*tjlYۄ`Hϵ#'x#:Za-T+uAuYAVj#z].zC`#;S{ -P)Q8 #&Ͼ歰Rꩬ?LhIswDÈ^پ[ -WNI&XXj+| xn$r^s<+a nv)uA)29GaԄ1)I0Gee|+69tqmWcaUq5LbVc]jp()6A%_Յc-H\0P!{Xfw)sa̡+=xn`rv3^C 5g d"XmU"J -xD|6exNtmA!{ D2^$#$sPCX1l'2nQ1%SMɃ1)'`G@!k]m‡KV|dilVZnкUNJCnJ unT,[+ !!Ǹf#ĕQhҬݍvqH]whҝj41M.B-+X=u,hW P19WbRv !LLia=@]J=߬EJ 9hB2J_wJ?N$) -K "+eLΉ{vfOϱK|Z~\ KKm|3Md߬Bҟq1#Ǒy46$3;{PT#4Ղ%N6OǴ_g39 Bow}5JyƂ1fbqzK`(| .tl졌F+:*w,4y侮Ƿ\Ƴ{Ǖ+{&;gL@tuzPZB .\G aXq9Fa_1+ yBrؔ>? F-p}+*qb|XdWe?b9<,;4r8+EB6(Vٸ,Ed"';F$qxgˑcMv^VsdN쓢Zbކ%u"w8r+X+U;];&^W%|!IS ÷`RYmw4ņ%TTə}^.:4% gaEUwn a$5wo_/v.}T]9A'twԐM!&/'w}0ODHMoE*nuA_ /A'B%D])m~&^pI3T@;χ-yUteB-Tr7lҝS4Ęmc˃k_B.w°Y::b̮^,Je2^ѣJ/O-W*Maͦd/q. SsriTͩ<;\x*%Dmq0B C"^;l-j,Xx0]}&pvT$9?'8d)Eکޜٵ'ݫaMyao{cqP͞ 'n?DhkNQ9EKȭ|&`#`z_WB'2>A{X08v`1R9^lAw#L~wHV d2%`qֆ#}"}N>1H&*oN:"*Ne iKh SVza +kG/%FNTqKQp5??sfO4, +\?CĒk?BBK74]Om%:4d / 4lxޣ~!S8zdnSWa e~Tooݠ5)]+wmsNk =>IG19* wNt",e+Z@2i'vG6j.Qݶ2q|..hb΢g-w&^+?0NБ>w/rmM fTMtԐb:#Ak1 Y= < +IlE,T"=ՙk?+$]6֒/{p.'(kr=p%]HrS/)1AϼBIȈestBB2o@2 x&6[GDqd#݁<Ϣd`W'v84,ExMa+VaQ{^)v$@\ۥo&ͅݟFVJ.!lKL*f|ӓ>tnǝ²"ALv)a 38Q8PC7rI62(Ð*.2^L, :K!dt_JD/HMAqoݜ:a|ÁTם(X8 u\Wt1͠\ZwȂ +p\v3s@|?Vuubig缚+|5+1W*^ ~@XSjM(!ZT2m]<1U$fwweqh'졆(.6C)T k-[jm0ՏEvL3HqKbH;.jh:~{!px"M'}#-5!yk;tAV]uN3LR3#?9p+E]}YA +HzȀ˕w(, U +p"l0?Pԋ]>2k|9 \$POR*yL@*blrIҡ BYX.|JP) $ |']<<8¤8.Zꫠz=ξ@`f5hE||LKfV.hF\hܑ-`v}!Zw 4R>RF7D!wd(>Gj oSmK wklp,s%[2ch*(PE,썼•EzUֺ/^c"sw%̵ćI$Хk +?e>.FG߷==I" z( + 8 sǀ%X 4fDq!ռ"Gs$Q_*0lwW*[V:>ӍJ:A܅ |)[ltl' M?9=ɇpI6!, cdNF} +dA@x} {mWIPj'4SZXpm)Od}L6\dǾa!w?| {tRWnv4ܡkD`Jbq&evewJl霨1:(v>'˴Q<W\=Wf T!L&q"C +Z[/pح ~k*L&ԫLؘw׃Qݔ]Q個IaoVRkkkc>*ӱ)!42uhXWCNܨm]T 2]L6뛂Dy-pEP$q uA_:1WYQ.Mۻp3Q6 f6gaH^jJBij8`9&>JTs``ƴM\۝'/gF4"ctyqlӊ/~ C.vڒJn[.(ʠc^vN' 4VlQ]ApJjH`LFcD"9X3г吢>K 5ܜwF`e\Q[QE>jL[-X~moN@NY9 #L +@5Y)em! %]Z٣> ]0mK!_vzDC|F"\ `,` Ğ3)M + ~X.ah<ެ_gJ[ aixcEN^T2@B-gI6G;l+dU:@ݍ,`#2yIǟ1)Ψ%A:\Y΀?B`'.m>8s}O*g)@ zA9y(srA}3oH;NkGwh(O CCj*w/&G$ÝX"ӜQh-l5$ɂۓB[N(r݅˝2?4 VM +f:AȠ. Vk4!v`huQ(ŏԴ-x 9wQ\cdH33 $[' _b.){WtާH!Kcc:v'/i`"X?-4`jic}sq-eû"|/bl<;{MRud z9Zj0SDŽה:S7!|_aaQ$gV®ෂ+VFUDQQR +ɻW\٪)vݾQB#Ϧ$J" SPc:ޥ0MT=+tβ)e|WUUhLwf&Yj aHi|US(ʽM|q7ȯ[($gKE44!fD`A+.Ǵ(A'GZwU}\w^%aȍC ծx8"`H7Xi\!w]wqfw$ȍ.m ɑ>?)AWm*^nzCA fz|'_Hi"q,ܫ_q7-tuM8 賺uE5 (YrS6{ bڷˌU +܀l.+4bPKdH ;9Al E#m'۰l9'g^g+(9̺9ADI^/^4m[kR6<⹭Dd!FZo'UgZ}Xd" mZP>q~滩WHL?;Ӝ-AhM]BY" 1s scP”OreuR$AfوP;w27JL<6O6=QD# <) >¬(P VСݚ.a1('rcީag8 ~0kOD) e?#.`mN67"//0ggZiQm?Nn>nAP3g%5=jE1"^gP+ve4Csu֐MC Qѹѧ(x +v(zJL2ͬT|a2n}yc?}p4>zLh9>wf 2 AɤH"߷B7"W;],+f&β!gL0ʥF&7W Aj4^1^t̟q/W~G~[}zEc +gwINebCNf~WQK,d.Q~67=VJ1:ң +-MMưkI?VxI0@r<|&6VB2@SX1>|}"z6\ߛ= HKefR^TgփU"Y;@] IbkHZ+R=iwo&՗j@Ke-aaL + ^YpO*jVvarK??-q՞DJs\$u\7F}WGc%_D^]"U{DMQ^%v$Yx=T-^!!ُ?NNXt ^So<4`Mj~bmïCH">24$P:e <9KC a)<J^6.vUW@*UgY@Rp d:UIC^ǎb);Y BG%{Tt^#GYx)ye%slEǕc_/SSi*A ѳEf0AbgV8w@ 8Ux±-]x$HMvg!j Dv8HEEJc}:N.OJqdr,!2<vhqߌGJwkTY .zYH|m 2AlӨYhUKAk/V-|` QJ);:8LD_\L 'egk(e> WA;ք>aɻsS0000000000000000000000000000000000000000000000000000000000000000 0000000000000000000000000000000000000000000000000000000000000000 0000000000000000000000000000000000000000000000000000000000000000 0000000000000000000000000000000000000000000000000000000000000000 @@ -7919,154 +8509,161 @@ K cleartomark endstream endobj -73 0 obj << +77 0 obj << /Type /Font /Subtype /Type1 -/Encoding 369 0 R +/Encoding 388 0 R /FirstChar 12 /LastChar 121 -/Widths 370 0 R -/BaseFont /AJDUCR+CMBX12 -/FontDescriptor 71 0 R +/Widths 389 0 R +/BaseFont /YHUOVJ+CMBX12 +/FontDescriptor 75 0 R >> endobj -71 0 obj << +75 0 obj << /Ascent 694 /CapHeight 686 /Descent -194 -/FontName /AJDUCR+CMBX12 +/FontName /YHUOVJ+CMBX12 /ItalicAngle 0 /StemV 109 /XHeight 444 /FontBBox [-53 -251 1139 750] /Flags 4 -/CharSet (/fi/quoteright/period/one/two/three/four/five/six/seven/A/B/C/D/E/F/G/H/I/L/M/N/O/P/R/S/U/a/b/c/d/e/f/g/i/l/m/n/o/p/q/r/s/t/u/v/w/x/y) -/FontFile 72 0 R +/CharSet (/fi/quoteright/period/one/two/three/four/five/six/A/B/C/D/E/F/G/H/I/L/M/N/O/P/R/S/U/a/b/c/d/e/f/g/h/i/l/m/n/o/p/q/r/s/t/u/v/w/x/y) +/FontFile 76 0 R >> endobj -370 0 obj -[625 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 312 0 0 0 0 0 0 312 0 0 562 562 562 562 562 562 562 0 0 0 0 0 0 0 0 0 850 800 812 862 738 707 884 880 419 0 0 676 1067 880 845 769 0 839 625 0 865 0 0 0 0 0 0 0 0 0 0 0 547 625 500 625 513 344 562 0 312 0 0 312 937 625 562 625 594 459 444 437 625 594 812 594 594 ] +389 0 obj +[625 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 312 0 0 0 0 0 0 312 0 0 562 562 562 562 562 562 0 0 0 0 0 0 0 0 0 0 850 800 812 862 738 707 884 880 419 0 0 676 1067 880 845 769 0 839 625 0 865 0 0 0 0 0 0 0 0 0 0 0 547 625 500 625 513 344 562 625 312 0 0 312 937 625 562 625 594 459 444 437 625 594 812 594 594 ] endobj -369 0 obj << +388 0 obj << /Type /Encoding -/Differences [ 0 /.notdef 12/fi 13/.notdef 39/quoteright 40/.notdef 46/period 47/.notdef 49/one/two/three/four/five/six/seven 56/.notdef 65/A/B/C/D/E/F/G/H/I 74/.notdef 76/L/M/N/O/P 81/.notdef 82/R/S 84/.notdef 85/U 86/.notdef 97/a/b/c/d/e/f/g 104/.notdef 105/i 106/.notdef 108/l/m/n/o/p/q/r/s/t/u/v/w/x/y 122/.notdef] +/Differences [ 0 /.notdef 12/fi 13/.notdef 39/quoteright 40/.notdef 46/period 47/.notdef 49/one/two/three/four/five/six 55/.notdef 65/A/B/C/D/E/F/G/H/I 74/.notdef 76/L/M/N/O/P 81/.notdef 82/R/S 84/.notdef 85/U 86/.notdef 97/a/b/c/d/e/f/g/h/i 106/.notdef 108/l/m/n/o/p/q/r/s/t/u/v/w/x/y 122/.notdef] >> endobj -80 0 obj << +84 0 obj << /Type /Pages /Count 6 -/Parent 371 0 R -/Kids [66 0 R 82 0 R 86 0 R 102 0 R 124 0 R 145 0 R] +/Parent 390 0 R +/Kids [70 0 R 86 0 R 90 0 R 106 0 R 129 0 R 158 0 R] >> endobj -153 0 obj << +166 0 obj << /Type /Pages /Count 6 -/Parent 371 0 R -/Kids [149 0 R 155 0 R 163 0 R 168 0 R 196 0 R 205 0 R] +/Parent 390 0 R +/Kids [162 0 R 168 0 R 173 0 R 202 0 R 212 0 R 229 0 R] >> endobj -221 0 obj << +241 0 obj << /Type /Pages /Count 6 -/Parent 371 0 R -/Kids [217 0 R 223 0 R 228 0 R 243 0 R 258 0 R 263 0 R] +/Parent 390 0 R +/Kids [237 0 R 243 0 R 258 0 R 273 0 R 278 0 R 287 0 R] >> endobj -274 0 obj << +298 0 obj << /Type /Pages /Count 6 -/Parent 371 0 R -/Kids [269 0 R 276 0 R 281 0 R 288 0 R 300 0 R 306 0 R] +/Parent 390 0 R +/Kids [293 0 R 301 0 R 310 0 R 322 0 R 328 0 R 333 0 R] >> endobj -324 0 obj << +348 0 obj << /Type /Pages /Count 2 -/Parent 371 0 R -/Kids [311 0 R 326 0 R] +/Parent 390 0 R +/Kids [338 0 R 350 0 R] >> endobj -371 0 obj << +390 0 obj << /Type /Pages /Count 26 -/Kids [80 0 R 153 0 R 221 0 R 274 0 R 324 0 R] +/Kids [84 0 R 166 0 R 241 0 R 298 0 R 348 0 R] >> endobj -372 0 obj << +391 0 obj << /Type /Outlines /First 7 0 R /Last 7 0 R /Count 1 >> endobj +67 0 obj << +/Title 68 0 R +/A 65 0 R +/Parent 7 0 R +/Prev 63 0 R +>> endobj 63 0 obj << /Title 64 0 R /A 61 0 R /Parent 7 0 R -/Prev 35 0 R +/Prev 59 0 R +/Next 67 0 R >> endobj 59 0 obj << /Title 60 0 R /A 57 0 R -/Parent 35 0 R -/Prev 55 0 R +/Parent 7 0 R +/Prev 31 0 R +/Next 63 0 R >> endobj 55 0 obj << /Title 56 0 R /A 53 0 R -/Parent 35 0 R +/Parent 31 0 R /Prev 51 0 R -/Next 59 0 R >> endobj 51 0 obj << /Title 52 0 R /A 49 0 R -/Parent 35 0 R +/Parent 31 0 R /Prev 47 0 R /Next 55 0 R >> endobj 47 0 obj << /Title 48 0 R /A 45 0 R -/Parent 35 0 R +/Parent 31 0 R /Prev 43 0 R /Next 51 0 R >> endobj 43 0 obj << /Title 44 0 R /A 41 0 R -/Parent 35 0 R +/Parent 31 0 R /Prev 39 0 R /Next 47 0 R >> endobj 39 0 obj << /Title 40 0 R /A 37 0 R -/Parent 35 0 R +/Parent 31 0 R +/Prev 35 0 R /Next 43 0 R >> endobj 35 0 obj << /Title 36 0 R /A 33 0 R -/Parent 7 0 R -/Prev 27 0 R -/Next 63 0 R -/First 39 0 R -/Last 59 0 R -/Count -6 +/Parent 31 0 R +/Next 39 0 R >> endobj 31 0 obj << /Title 32 0 R /A 29 0 R -/Parent 27 0 R +/Parent 7 0 R +/Prev 23 0 R +/Next 59 0 R +/First 35 0 R +/Last 55 0 R +/Count -6 >> endobj 27 0 obj << /Title 28 0 R /A 25 0 R -/Parent 7 0 R -/Prev 23 0 R -/Next 35 0 R -/First 31 0 R -/Last 31 0 R -/Count -1 +/Parent 23 0 R >> endobj 23 0 obj << /Title 24 0 R /A 21 0 R /Parent 7 0 R /Prev 19 0 R -/Next 27 0 R +/Next 31 0 R +/First 27 0 R +/Last 27 0 R +/Count -1 >> endobj 19 0 obj << /Title 20 0 R @@ -8091,421 +8688,440 @@ endobj 7 0 obj << /Title 8 0 R /A 5 0 R -/Parent 372 0 R +/Parent 391 0 R /First 11 0 R -/Last 63 0 R -/Count -7 +/Last 67 0 R +/Count -8 >> endobj -373 0 obj << -/Names [(Doc-Start) 70 0 R (Item.1) 172 0 R (Item.10) 254 0 R (Item.2) 176 0 R (Item.3) 178 0 R (Item.4) 183 0 R (Item.5) 184 0 R (Item.6) 185 0 R (Item.7) 251 0 R (Item.8) 252 0 R (Item.9) 253 0 R (cite.BLACS) 320 0 R (cite.BLAS1) 331 0 R (cite.BREZINA_VANEK) 335 0 R (cite.Cai_Widlund_92) 318 0 R (cite.KIVA3PSBLAS) 323 0 R (cite.METIS) 330 0 R (cite.MPI1) 143 0 R (cite.PARA04FOREST) 316 0 R (cite.VANEK_MANDEL_BREZINA) 336 0 R (cite.aaecc_07) 194 0 R (cite.apnum_07) 193 0 R (cite.dd1_94) 319 0 R (cite.dd2_96) 334 0 R (cite.machiels) 332 0 R (cite.metcalf) 333 0 R (cite.para_04) 317 0 R (cite.psblas_00) 142 0 R (cite.sblas_02) 322 0 R (cite.sblas_97) 321 0 R (equation.1) 133 0 R (figure.1) 203 0 R (figure.2) 213 0 R (figure.3) 214 0 R (figure.4) 215 0 R (page.1) 69 0 R (page.10) 225 0 R (page.11) 230 0 R (page.12) 245 0 R (page.13) 260 0 R (page.14) 265 0 R (page.15) 271 0 R (page.16) 278 0 R (page.17) 283 0 R (page.18) 290 0 R (page.19) 302 0 R (page.2) 84 0 R (page.20) 308 0 R (page.21) 313 0 R (page.22) 328 0 R (page.3) 151 0 R (page.4) 157 0 R (page.5) 165 0 R (page.6) 170 0 R (page.7) 198 0 R (page.8) 207 0 R (page.9) 219 0 R (page.i) 88 0 R (page.ii) 104 0 R (section*.1) 105 0 R (section*.2) 239 0 R (section*.3) 247 0 R (section*.4) 285 0 R (section*.5) 292 0 R (section*.6) 297 0 R (section*.7) 304 0 R (section*.8) 315 0 R (section.1) 10 0 R (section.2) 14 0 R (section.3) 18 0 R (section.4) 22 0 R (section.5) 26 0 R (section.6) 34 0 R (section.7) 62 0 R (subsection.5.1) 30 0 R (subsection.6.1) 38 0 R (subsection.6.2) 42 0 R (subsection.6.3) 46 0 R (subsection.6.4) 50 0 R (subsection.6.5) 54 0 R (subsection.6.6) 58 0 R (table.1) 190 0 R (table.2) 191 0 R (table.3) 267 0 R (table.4) 273 0 R (table.5) 192 0 R (title.0) 6 0 R] +392 0 obj << +/Names [(Doc-Start) 74 0 R (Item.1) 178 0 R (Item.10) 269 0 R (Item.2) 182 0 R (Item.3) 184 0 R (Item.4) 189 0 R (Item.5) 190 0 R (Item.6) 191 0 R (Item.7) 266 0 R (Item.8) 267 0 R (Item.9) 268 0 R (cite.BREZINA_VANEK) 152 0 R (cite.CAI_SARKIS) 344 0 R (cite.Cai_Widlund_92) 345 0 R (cite.EFSTATHIOU) 347 0 R (cite.MPI1) 156 0 R (cite.PSBLASGUIDE) 155 0 R (cite.SUPERLU) 285 0 R (cite.SUPERLUDIST) 299 0 R (cite.StubenGMD69_99) 354 0 R (cite.TUMINARO_TONG) 355 0 R (cite.UMFPACK) 225 0 R (cite.VANEK_MANDEL_BREZINA) 153 0 R (cite.aaecc_07) 199 0 R (cite.apnum_07) 200 0 R (cite.dd1_94) 346 0 R (cite.dd2_96) 151 0 R (cite.para_04) 343 0 R (cite.psblas_00) 154 0 R (equation.1) 139 0 R (figure.1) 210 0 R (figure.2) 224 0 R (figure.3) 226 0 R (figure.4) 227 0 R (page.1) 73 0 R (page.10) 245 0 R (page.11) 260 0 R (page.12) 275 0 R (page.13) 280 0 R (page.14) 289 0 R (page.15) 295 0 R (page.16) 303 0 R (page.17) 312 0 R (page.18) 324 0 R (page.19) 330 0 R (page.2) 88 0 R (page.20) 335 0 R (page.21) 340 0 R (page.22) 352 0 R (page.3) 164 0 R (page.4) 170 0 R (page.5) 175 0 R (page.6) 204 0 R (page.7) 214 0 R (page.8) 231 0 R (page.9) 239 0 R (page.i) 92 0 R (page.ii) 108 0 R (section*.1) 109 0 R (section*.2) 254 0 R (section*.3) 262 0 R (section*.4) 305 0 R (section*.5) 314 0 R (section*.6) 319 0 R (section*.7) 326 0 R (section*.8) 342 0 R (section.1) 10 0 R (section.2) 14 0 R (section.3) 18 0 R (section.4) 22 0 R (section.5) 30 0 R (section.6) 58 0 R (section.A) 62 0 R (section.B) 66 0 R (subsection.4.1) 26 0 R (subsection.5.1) 34 0 R (subsection.5.2) 38 0 R (subsection.5.3) 42 0 R (subsection.5.4) 46 0 R (subsection.5.5) 50 0 R (subsection.5.6) 54 0 R (table.1) 196 0 R (table.2) 197 0 R (table.3) 284 0 R (table.4) 291 0 R (table.5) 198 0 R (title.0) 6 0 R] /Limits [(Doc-Start) (title.0)] >> endobj -374 0 obj << -/Kids [373 0 R] +393 0 obj << +/Kids [392 0 R] >> endobj -375 0 obj << -/Dests 374 0 R +394 0 obj << +/Dests 393 0 R >> endobj -376 0 obj << +395 0 obj << /Type /Catalog -/Pages 371 0 R -/Outlines 372 0 R -/Names 375 0 R +/Pages 390 0 R +/Outlines 391 0 R +/Names 394 0 R /PageMode /UseOutlines /PageLabels << /Nums [0 << /S /D >> 2 << /S /r >> 4 << /S /D >> ] >> -/OpenAction 65 0 R +/OpenAction 69 0 R >> endobj -377 0 obj << +396 0 obj << /Title (MultiLevel Domain Decomposition Parallel Preconditioners Package based on PSBLAS, V. 1.0) /Subject (MultiLevel Domain Decomposition Parallel Preconditioners Package) /Keywords (Parallel Numerical Software, Algebraic Multilevel Preconditioners, Sparse Iterative Solvers, PSBLAS, MPI) /Creator (pdfLaTeX) /Producer ($Id: userguide.tex 2008-04-08 Pasqua D'Ambra, Daniela di Serafino, Salvatore Filippone$) /Author()/Title()/Subject()/Creator(LaTeX with hyperref package)/Producer(pdfeTeX-1.21a)/Keywords() -/CreationDate (D:20080624111720+02'00') +/CreationDate (D:20080625150906+02'00') /PTEX.Fullbanner (This is pdfeTeX, Version 3.141592-1.21a-2.2 (Web2C 7.5.4) kpathsea version 3.5.4) >> endobj xref -0 378 +0 397 0000000001 65535 f 0000000002 00000 f 0000000003 00000 f 0000000004 00000 f 0000000000 00000 f 0000000009 00000 n -0000003551 00000 n -0000342280 00000 n +0000003620 00000 n +0000365879 00000 n 0000000052 00000 n 0000000103 00000 n -0000031375 00000 n -0000342208 00000 n +0000032722 00000 n +0000365807 00000 n 0000000148 00000 n 0000000185 00000 n -0000035888 00000 n -0000342122 00000 n +0000038131 00000 n +0000365721 00000 n 0000000231 00000 n 0000000274 00000 n -0000041032 00000 n -0000342036 00000 n +0000040705 00000 n +0000365635 00000 n 0000000320 00000 n -0000000358 00000 n -0000043604 00000 n -0000341950 00000 n -0000000404 00000 n -0000000456 00000 n -0000059655 00000 n -0000341827 00000 n -0000000502 00000 n -0000000538 00000 n -0000074112 00000 n -0000341766 00000 n -0000000589 00000 n -0000000620 00000 n -0000105833 00000 n -0000341643 00000 n -0000000666 00000 n -0000000701 00000 n -0000105895 00000 n -0000341569 00000 n -0000000752 00000 n -0000000801 00000 n -0000114958 00000 n -0000341482 00000 n -0000000852 00000 n -0000000900 00000 n -0000147676 00000 n -0000341395 00000 n -0000000951 00000 n -0000000999 00000 n -0000160244 00000 n -0000341308 00000 n -0000001050 00000 n -0000001099 00000 n -0000160369 00000 n -0000341221 00000 n -0000001150 00000 n -0000001199 00000 n -0000163857 00000 n -0000341147 00000 n -0000001250 00000 n -0000001300 00000 n -0000165395 00000 n -0000341074 00000 n -0000001346 00000 n -0000001381 00000 n -0000003311 00000 n -0000003611 00000 n -0000001431 00000 n -0000003429 00000 n -0000003490 00000 n -0000339334 00000 n -0000328717 00000 n -0000339174 00000 n -0000327975 00000 n -0000319943 00000 n -0000327815 00000 n -0000318878 00000 n -0000309661 00000 n -0000318719 00000 n -0000340359 00000 n -0000004077 00000 n -0000003898 00000 n -0000003705 00000 n -0000004016 00000 n -0000008624 00000 n -0000008445 00000 n -0000004117 00000 n -0000008563 00000 n -0000308162 00000 n -0000290468 00000 n -0000308003 00000 n -0000289997 00000 n -0000286402 00000 n -0000289838 00000 n -0000285552 00000 n -0000278223 00000 n -0000285391 00000 n -0000277072 00000 n -0000265781 00000 n -0000276913 00000 n -0000018892 00000 n -0000016305 00000 n -0000008730 00000 n -0000018766 00000 n -0000018829 00000 n -0000016550 00000 n -0000264570 00000 n -0000250090 00000 n -0000264408 00000 n -0000016706 00000 n -0000016861 00000 n -0000017017 00000 n -0000017173 00000 n -0000017329 00000 n -0000017490 00000 n -0000017646 00000 n -0000017807 00000 n -0000017967 00000 n -0000018127 00000 n -0000018288 00000 n -0000018449 00000 n -0000018610 00000 n -0000031501 00000 n -0000030745 00000 n -0000018987 00000 n -0000030902 00000 n -0000249440 00000 n -0000244928 00000 n -0000249278 00000 n -0000243775 00000 n -0000228016 00000 n -0000243613 00000 n -0000031437 00000 n -0000227447 00000 n -0000222855 00000 n -0000227285 00000 n -0000222481 00000 n -0000220182 00000 n -0000222320 00000 n -0000031058 00000 n -0000031219 00000 n -0000176955 00000 n -0000184099 00000 n -0000033829 00000 n -0000033532 00000 n -0000031660 00000 n -0000033673 00000 n -0000035950 00000 n -0000035527 00000 n -0000033925 00000 n -0000035825 00000 n -0000035669 00000 n -0000340472 00000 n -0000041094 00000 n -0000040671 00000 n -0000036045 00000 n -0000040969 00000 n -0000040813 00000 n -0000218968 00000 n -0000205650 00000 n -0000218807 00000 n -0000043666 00000 n -0000043243 00000 n -0000041202 00000 n -0000043541 00000 n -0000043385 00000 n -0000060095 00000 n -0000057807 00000 n -0000043761 00000 n -0000059592 00000 n -0000058021 00000 n -0000059717 00000 n -0000204467 00000 n -0000192696 00000 n -0000204305 00000 n -0000059780 00000 n -0000058177 00000 n -0000059843 00000 n -0000058331 00000 n -0000058491 00000 n -0000058647 00000 n -0000058801 00000 n -0000059906 00000 n -0000059969 00000 n -0000060032 00000 n -0000058955 00000 n -0000059111 00000 n -0000059272 00000 n -0000059432 00000 n -0000074048 00000 n -0000122920 00000 n -0000142835 00000 n -0000176514 00000 n -0000176451 00000 n -0000074174 00000 n -0000073200 00000 n -0000060229 00000 n -0000073985 00000 n -0000073366 00000 n -0000073522 00000 n -0000073678 00000 n -0000073832 00000 n -0000087807 00000 n -0000083415 00000 n -0000082403 00000 n -0000074308 00000 n -0000083352 00000 n -0000082577 00000 n -0000082733 00000 n -0000082888 00000 n -0000083043 00000 n -0000083197 00000 n -0000092519 00000 n -0000092582 00000 n -0000092646 00000 n -0000087871 00000 n -0000087446 00000 n -0000083524 00000 n -0000087744 00000 n -0000087588 00000 n -0000340589 00000 n -0000092709 00000 n -0000092158 00000 n -0000087967 00000 n -0000092456 00000 n -0000092300 00000 n -0000106020 00000 n -0000104978 00000 n -0000092805 00000 n -0000105770 00000 n -0000105144 00000 n -0000192391 00000 n -0000190277 00000 n -0000192233 00000 n -0000189971 00000 n -0000187393 00000 n -0000189812 00000 n -0000105300 00000 n -0000105957 00000 n -0000105461 00000 n -0000105615 00000 n -0000115334 00000 n -0000113786 00000 n -0000106205 00000 n -0000114895 00000 n -0000113968 00000 n -0000115020 00000 n -0000114124 00000 n -0000114278 00000 n -0000114432 00000 n -0000115083 00000 n -0000115145 00000 n -0000115208 00000 n -0000115271 00000 n -0000114587 00000 n -0000114741 00000 n -0000122983 00000 n -0000122559 00000 n -0000115468 00000 n -0000122857 00000 n -0000122701 00000 n -0000130633 00000 n -0000130209 00000 n -0000123105 00000 n -0000130507 00000 n -0000130351 00000 n -0000130570 00000 n -0000136173 00000 n -0000135749 00000 n -0000130768 00000 n -0000136047 00000 n -0000135891 00000 n -0000136110 00000 n -0000340706 00000 n -0000142897 00000 n -0000142474 00000 n -0000136295 00000 n -0000142772 00000 n -0000142616 00000 n -0000147801 00000 n -0000147152 00000 n -0000143019 00000 n -0000147613 00000 n -0000147302 00000 n -0000147738 00000 n -0000147458 00000 n -0000160494 00000 n -0000159558 00000 n -0000147935 00000 n -0000160181 00000 n -0000159716 00000 n -0000160306 00000 n -0000159872 00000 n -0000187087 00000 n -0000184397 00000 n -0000186927 00000 n -0000160431 00000 n -0000160027 00000 n -0000163982 00000 n -0000163496 00000 n -0000160679 00000 n -0000163794 00000 n -0000163638 00000 n -0000163919 00000 n -0000165457 00000 n -0000165034 00000 n -0000164116 00000 n -0000165332 00000 n -0000165176 00000 n -0000177081 00000 n -0000175964 00000 n -0000165552 00000 n -0000176262 00000 n -0000176106 00000 n -0000176325 00000 n -0000176388 00000 n -0000176577 00000 n -0000176640 00000 n -0000176703 00000 n -0000176766 00000 n -0000176829 00000 n -0000176892 00000 n -0000177018 00000 n -0000340823 00000 n -0000184288 00000 n -0000183423 00000 n -0000177189 00000 n -0000183721 00000 n -0000183565 00000 n -0000183784 00000 n -0000183847 00000 n -0000183910 00000 n -0000183973 00000 n -0000184036 00000 n -0000184162 00000 n -0000184225 00000 n -0000187311 00000 n -0000187287 00000 n -0000190193 00000 n -0000190169 00000 n -0000192622 00000 n -0000192598 00000 n -0000205160 00000 n -0000204854 00000 n -0000219744 00000 n -0000219404 00000 n -0000222741 00000 n -0000222703 00000 n -0000227838 00000 n -0000227672 00000 n -0000244532 00000 n -0000244166 00000 n -0000249848 00000 n -0000249664 00000 n -0000265347 00000 n -0000264975 00000 n -0000277778 00000 n -0000277432 00000 n -0000286055 00000 n -0000285819 00000 n -0000290343 00000 n -0000290205 00000 n -0000309097 00000 n -0000308685 00000 n -0000319481 00000 n -0000319205 00000 n -0000328459 00000 n -0000328235 00000 n -0000340001 00000 n -0000339662 00000 n -0000340908 00000 n -0000341001 00000 n -0000342376 00000 n -0000344189 00000 n -0000344228 00000 n -0000344266 00000 n -0000344464 00000 n +0000000372 00000 n +0000057142 00000 n +0000365512 00000 n +0000000418 00000 n +0000000454 00000 n +0000072026 00000 n +0000365451 00000 n +0000000505 00000 n +0000000536 00000 n +0000105204 00000 n +0000365328 00000 n +0000000582 00000 n +0000000617 00000 n +0000105266 00000 n +0000365254 00000 n +0000000668 00000 n +0000000717 00000 n +0000114331 00000 n +0000365167 00000 n +0000000768 00000 n +0000000816 00000 n +0000161064 00000 n +0000365080 00000 n +0000000867 00000 n +0000000915 00000 n +0000173634 00000 n +0000364993 00000 n +0000000966 00000 n +0000001015 00000 n +0000173759 00000 n +0000364906 00000 n +0000001066 00000 n +0000001115 00000 n +0000177249 00000 n +0000364832 00000 n +0000001166 00000 n +0000001216 00000 n +0000178781 00000 n +0000364746 00000 n +0000001262 00000 n +0000001297 00000 n +0000183876 00000 n +0000364660 00000 n +0000001343 00000 n +0000001371 00000 n +0000195136 00000 n +0000364587 00000 n +0000001417 00000 n +0000001450 00000 n +0000003380 00000 n +0000003680 00000 n +0000001500 00000 n +0000003498 00000 n +0000003559 00000 n +0000362871 00000 n +0000352263 00000 n +0000362711 00000 n +0000351521 00000 n +0000343489 00000 n +0000351361 00000 n +0000342424 00000 n +0000333116 00000 n +0000342265 00000 n +0000363872 00000 n +0000004146 00000 n +0000003967 00000 n +0000003774 00000 n +0000004085 00000 n +0000008693 00000 n +0000008514 00000 n +0000004186 00000 n +0000008632 00000 n +0000331597 00000 n +0000314089 00000 n +0000331438 00000 n +0000313618 00000 n +0000310023 00000 n +0000313459 00000 n +0000309172 00000 n +0000301841 00000 n +0000309010 00000 n +0000300688 00000 n +0000289395 00000 n +0000300528 00000 n +0000019374 00000 n +0000016624 00000 n +0000008800 00000 n +0000019248 00000 n +0000019311 00000 n +0000016877 00000 n +0000288146 00000 n +0000273301 00000 n +0000287984 00000 n +0000017033 00000 n +0000017188 00000 n +0000017344 00000 n +0000017500 00000 n +0000017660 00000 n +0000017816 00000 n +0000017976 00000 n +0000018136 00000 n +0000018297 00000 n +0000018458 00000 n +0000018619 00000 n +0000018780 00000 n +0000018936 00000 n +0000019092 00000 n +0000032847 00000 n +0000031402 00000 n +0000019469 00000 n +0000031591 00000 n +0000272334 00000 n +0000262607 00000 n +0000272172 00000 n +0000261440 00000 n +0000245428 00000 n +0000261278 00000 n +0000031747 00000 n +0000032784 00000 n +0000244789 00000 n +0000239787 00000 n +0000244627 00000 n +0000239323 00000 n +0000236867 00000 n +0000239162 00000 n +0000031905 00000 n +0000032070 00000 n +0000032242 00000 n +0000032403 00000 n +0000032566 00000 n +0000200884 00000 n +0000195261 00000 n +0000201136 00000 n +0000195954 00000 n +0000195891 00000 n +0000200947 00000 n +0000036050 00000 n +0000035753 00000 n +0000033007 00000 n +0000035894 00000 n +0000038193 00000 n +0000037770 00000 n +0000036146 00000 n +0000038068 00000 n +0000037912 00000 n +0000363985 00000 n +0000040767 00000 n +0000040344 00000 n +0000038288 00000 n +0000040642 00000 n +0000040486 00000 n +0000057582 00000 n +0000055123 00000 n +0000040862 00000 n +0000057079 00000 n +0000055345 00000 n +0000055501 00000 n +0000057204 00000 n +0000235732 00000 n +0000224126 00000 n +0000235570 00000 n +0000057267 00000 n +0000055664 00000 n +0000057330 00000 n +0000055818 00000 n +0000055978 00000 n +0000056134 00000 n +0000056288 00000 n +0000057393 00000 n +0000057456 00000 n +0000057519 00000 n +0000056442 00000 n +0000056598 00000 n +0000056759 00000 n +0000056919 00000 n +0000071962 00000 n +0000122010 00000 n +0000155500 00000 n +0000195387 00000 n +0000195450 00000 n +0000072088 00000 n +0000070944 00000 n +0000057716 00000 n +0000071899 00000 n +0000071118 00000 n +0000071274 00000 n +0000071429 00000 n +0000071583 00000 n +0000071736 00000 n +0000087334 00000 n +0000082953 00000 n +0000081287 00000 n +0000072222 00000 n +0000082890 00000 n +0000081493 00000 n +0000081649 00000 n +0000081804 00000 n +0000081963 00000 n +0000082118 00000 n +0000082272 00000 n +0000082426 00000 n +0000082580 00000 n +0000082735 00000 n +0000092034 00000 n +0000195702 00000 n +0000092097 00000 n +0000092161 00000 n +0000087398 00000 n +0000086973 00000 n +0000083062 00000 n +0000087271 00000 n +0000087115 00000 n +0000222912 00000 n +0000209594 00000 n +0000222751 00000 n +0000092224 00000 n +0000091673 00000 n +0000087494 00000 n +0000091971 00000 n +0000091815 00000 n +0000364102 00000 n +0000105391 00000 n +0000104350 00000 n +0000092320 00000 n +0000105141 00000 n +0000104516 00000 n +0000209289 00000 n +0000207175 00000 n +0000209131 00000 n +0000206869 00000 n +0000204291 00000 n +0000206710 00000 n +0000104672 00000 n +0000105328 00000 n +0000104832 00000 n +0000104986 00000 n +0000114707 00000 n +0000113159 00000 n +0000105576 00000 n +0000114268 00000 n +0000113341 00000 n +0000114393 00000 n +0000113497 00000 n +0000113651 00000 n +0000113805 00000 n +0000114456 00000 n +0000114518 00000 n +0000114581 00000 n +0000114644 00000 n +0000113960 00000 n +0000114114 00000 n +0000122073 00000 n +0000121649 00000 n +0000114841 00000 n +0000121947 00000 n +0000121791 00000 n +0000135059 00000 n +0000134303 00000 n +0000122195 00000 n +0000134932 00000 n +0000134461 00000 n +0000134617 00000 n +0000134775 00000 n +0000134995 00000 n +0000195765 00000 n +0000143281 00000 n +0000142857 00000 n +0000135207 00000 n +0000143155 00000 n +0000142999 00000 n +0000143218 00000 n +0000155564 00000 n +0000154968 00000 n +0000143454 00000 n +0000155437 00000 n +0000155118 00000 n +0000155274 00000 n +0000364219 00000 n +0000196017 00000 n +0000161189 00000 n +0000160200 00000 n +0000155712 00000 n +0000161001 00000 n +0000160366 00000 n +0000161126 00000 n +0000160522 00000 n +0000160684 00000 n +0000160846 00000 n +0000173884 00000 n +0000172948 00000 n +0000161323 00000 n +0000173571 00000 n +0000173106 00000 n +0000173696 00000 n +0000173262 00000 n +0000203985 00000 n +0000201295 00000 n +0000203825 00000 n +0000173821 00000 n +0000173417 00000 n +0000177374 00000 n +0000176888 00000 n +0000174069 00000 n +0000177186 00000 n +0000177030 00000 n +0000177311 00000 n +0000178843 00000 n +0000178420 00000 n +0000177508 00000 n +0000178718 00000 n +0000178562 00000 n +0000183938 00000 n +0000183515 00000 n +0000178938 00000 n +0000183813 00000 n +0000183657 00000 n +0000196080 00000 n +0000194775 00000 n +0000184046 00000 n +0000195073 00000 n +0000194917 00000 n +0000195198 00000 n +0000195324 00000 n +0000195513 00000 n +0000195576 00000 n +0000195639 00000 n +0000195828 00000 n +0000364336 00000 n +0000201199 00000 n +0000200523 00000 n +0000196201 00000 n +0000200821 00000 n +0000200665 00000 n +0000201010 00000 n +0000201073 00000 n +0000204209 00000 n +0000204185 00000 n +0000207091 00000 n +0000207067 00000 n +0000209520 00000 n +0000209496 00000 n +0000223688 00000 n +0000223348 00000 n +0000236404 00000 n +0000236108 00000 n +0000239651 00000 n +0000239553 00000 n +0000245205 00000 n +0000245031 00000 n +0000262197 00000 n +0000261831 00000 n +0000272939 00000 n +0000272625 00000 n +0000288937 00000 n +0000288563 00000 n +0000301396 00000 n +0000301050 00000 n +0000309676 00000 n +0000309440 00000 n +0000313964 00000 n +0000313826 00000 n +0000332537 00000 n +0000332119 00000 n +0000343027 00000 n +0000342751 00000 n +0000352005 00000 n +0000351781 00000 n +0000363534 00000 n +0000363195 00000 n +0000364421 00000 n +0000364514 00000 n +0000365975 00000 n +0000367805 00000 n +0000367844 00000 n +0000367882 00000 n +0000368080 00000 n trailer << -/Size 378 -/Root 376 0 R -/Info 377 0 R -/ID [<97C10E95183E5672708463F473773A9F> <97C10E95183E5672708463F473773A9F>] +/Size 397 +/Root 395 0 R +/Info 396 0 R +/ID [<865FC2F93AFA2FD348D5A5861B047CC6> <865FC2F93AFA2FD348D5A5861B047CC6>] >> startxref -345139 +368755 %%EOF