1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311
|
<center><a href="slepcsvd.h">Actual source code: slepcsvd.h</a></center><br>
<html>
<head> <link rel="canonical" href="https://slepc.upv.es/documentation/current/include/slepcsvd.h.html" />
<title></title>
<meta name="generator" content="c2html 0.9.4">
<meta name="date" content="2023-01-26T12:19:47+00:00">
</head>
<body bgcolor="#FFFFFF">
<div id="version" align=right><b>slepc-3.18.2 2023-01-26</b></div>
<div id="bugreport" align=right><a href="mailto:slepc-maint@upv.es?subject=Typo or Error in Documentation &body=Please describe the typo or error in the documentation: slepc-3.18.2 v3.18.2 include/slepcsvd.h.html "><small>Report Typos and Errors</small></a></div>
<pre width="80">
<a name="line1"> 1: </a><font color="#B22222">/*</font>
<a name="line2"> 2: </a><font color="#B22222"> - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -</font>
<a name="line3"> 3: </a><font color="#B22222"> SLEPc - Scalable Library for Eigenvalue Problem Computations</font>
<a name="line4"> 4: </a><font color="#B22222"> Copyright (c) 2002-, Universitat Politecnica de Valencia, Spain</font>
<a name="line6"> 6: </a><font color="#B22222"> This file is part of SLEPc.</font>
<a name="line7"> 7: </a><font color="#B22222"> SLEPc is distributed under a 2-clause BSD license (see LICENSE).</font>
<a name="line8"> 8: </a><font color="#B22222"> - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -</font>
<a name="line9"> 9: </a><font color="#B22222">*/</font>
<a name="line10"> 10: </a><font color="#B22222">/*</font>
<a name="line11"> 11: </a><font color="#B22222"> User interface for SLEPc's singular value solvers</font>
<a name="line12"> 12: </a><font color="#B22222">*/</font>
<a name="line14"> 14: </a><font color="#A020F0">#if !defined(SLEPCSVD_H)</font>
<a name="line15"> 15: </a><strong><font color="#228B22">#define SLEPCSVD_H</font></strong>
<a name="line17"> 17: </a>#include <A href="slepceps.h.html"><slepceps.h></A>
<a name="line18"> 18: </a>#include <A href="slepcbv.h.html"><slepcbv.h></A>
<a name="line19"> 19: </a>#include <A href="slepcds.h.html"><slepcds.h></A>
<a name="line21"> 21: </a><font color="#B22222">/* SUBMANSEC = <a href="../docs/manualpages/SVD/SVD.html#SVD">SVD</a> */</font>
<a name="line23"> 23: </a><strong><font color="#4169E1">SLEPC_EXTERN <a href="https://petsc.org/release/docs/manualpages/Sys/PetscErrorCode.html#PetscErrorCode">PetscErrorCode</a> <a href="../docs/manualpages/SVD/SVDInitializePackage.html#SVDInitializePackage">SVDInitializePackage</a>(void)</font></strong>;
<a name="line25"> 25: </a><font color="#B22222">/*S</font>
<a name="line26"> 26: </a><font color="#B22222"> <a href="../docs/manualpages/SVD/SVD.html#SVD">SVD</a> - Abstract SLEPc object that manages all the singular value</font>
<a name="line27"> 27: </a><font color="#B22222"> problem solvers.</font>
<a name="line29"> 29: </a><font color="#B22222"> Level: beginner</font>
<a name="line31"> 31: </a><font color="#B22222">.seealso: <a href="../docs/manualpages/SVD/SVDCreate.html#SVDCreate">SVDCreate</a>()</font>
<a name="line32"> 32: </a><font color="#B22222">S*/</font>
<a name="line33"> 33: </a><font color="#4169E1">typedef struct _p_SVD* <a href="../docs/manualpages/SVD/SVD.html#SVD">SVD</a>;</font>
<a name="line35"> 35: </a><font color="#B22222">/*J</font>
<a name="line36"> 36: </a><font color="#B22222"> <a href="../docs/manualpages/SVD/SVDType.html#SVDType">SVDType</a> - String with the name of a SLEPc singular value solver</font>
<a name="line38"> 38: </a><font color="#B22222"> Level: beginner</font>
<a name="line40"> 40: </a><font color="#B22222">.seealso: <a href="../docs/manualpages/SVD/SVDSetType.html#SVDSetType">SVDSetType</a>(), <a href="../docs/manualpages/SVD/SVD.html#SVD">SVD</a></font>
<a name="line41"> 41: </a><font color="#B22222">J*/</font>
<a name="line42"> 42: </a><font color="#4169E1">typedef const char* <a href="../docs/manualpages/SVD/SVDType.html#SVDType">SVDType</a>;</font>
<a name="line43"> 43: </a><strong><font color="#228B22">#define SVDCROSS </font><font color="#666666">"cross"</font><font color="#228B22"></font></strong>
<a name="line44"> 44: </a><strong><font color="#228B22">#define SVDCYCLIC </font><font color="#666666">"cyclic"</font><font color="#228B22"></font></strong>
<a name="line45"> 45: </a><strong><font color="#228B22">#define SVDLAPACK </font><font color="#666666">"lapack"</font><font color="#228B22"></font></strong>
<a name="line46"> 46: </a><strong><font color="#228B22">#define SVDLANCZOS </font><font color="#666666">"lanczos"</font><font color="#228B22"></font></strong>
<a name="line47"> 47: </a><strong><font color="#228B22">#define SVDTRLANCZOS </font><font color="#666666">"trlanczos"</font><font color="#228B22"></font></strong>
<a name="line48"> 48: </a><strong><font color="#228B22">#define SVDRANDOMIZED </font><font color="#666666">"randomized"</font><font color="#228B22"></font></strong>
<a name="line49"> 49: </a><strong><font color="#228B22">#define SVDSCALAPACK </font><font color="#666666">"scalapack"</font><font color="#228B22"></font></strong>
<a name="line50"> 50: </a><strong><font color="#228B22">#define SVDELEMENTAL </font><font color="#666666">"elemental"</font><font color="#228B22"></font></strong>
<a name="line51"> 51: </a><strong><font color="#228B22">#define SVDPRIMME </font><font color="#666666">"primme"</font><font color="#228B22"></font></strong>
<a name="line53"> 53: </a><font color="#B22222">/* Logging support */</font>
<a name="line54"> 54: </a>SLEPC_EXTERN <a href="https://petsc.org/release/docs/manualpages/Sys/PetscClassId.html#PetscClassId">PetscClassId</a> SVD_CLASSID;
<a name="line56"> 56: </a><font color="#B22222">/*E</font>
<a name="line57"> 57: </a><font color="#B22222"> <a href="../docs/manualpages/SVD/SVDProblemType.html#SVDProblemType">SVDProblemType</a> - Determines the type of singular value problem</font>
<a name="line59"> 59: </a><font color="#B22222"> Level: beginner</font>
<a name="line61"> 61: </a><font color="#B22222">.seealso: <a href="../docs/manualpages/SVD/SVDSetProblemType.html#SVDSetProblemType">SVDSetProblemType</a>(), <a href="../docs/manualpages/SVD/SVDGetProblemType.html#SVDGetProblemType">SVDGetProblemType</a>()</font>
<a name="line62"> 62: </a><font color="#B22222">E*/</font>
<a name="line63"> 63: </a><font color="#4169E1">typedef</font> <font color="#4169E1">enum</font> { <a href="../docs/manualpages/SVD/SVDProblemType.html#SVDProblemType">SVD_STANDARD</a>=1,
<a name="line64"> 64: </a> <a href="../docs/manualpages/SVD/SVDProblemType.html#SVDProblemType">SVD_GENERALIZED</a>, <font color="#B22222">/* GSVD */</font>
<a name="line65"> 65: </a> <a href="../docs/manualpages/SVD/SVDProblemType.html#SVDProblemType">SVD_HYPERBOLIC</a> <font color="#B22222">/* HSVD */</font>
<a name="line66"> 66: </a> } <a href="../docs/manualpages/SVD/SVDProblemType.html#SVDProblemType">SVDProblemType</a>;
<a name="line68"> 68: </a><font color="#B22222">/*E</font>
<a name="line69"> 69: </a><font color="#B22222"> <a href="../docs/manualpages/SVD/SVDWhich.html#SVDWhich">SVDWhich</a> - Determines whether largest or smallest singular triplets</font>
<a name="line70"> 70: </a><font color="#B22222"> are to be computed</font>
<a name="line72"> 72: </a><font color="#B22222"> Level: intermediate</font>
<a name="line74"> 74: </a><font color="#B22222">.seealso: <a href="../docs/manualpages/SVD/SVDSetWhichSingularTriplets.html#SVDSetWhichSingularTriplets">SVDSetWhichSingularTriplets</a>(), <a href="../docs/manualpages/SVD/SVDGetWhichSingularTriplets.html#SVDGetWhichSingularTriplets">SVDGetWhichSingularTriplets</a>()</font>
<a name="line75"> 75: </a><font color="#B22222">E*/</font>
<a name="line76"> 76: </a><font color="#4169E1">typedef</font> <font color="#4169E1">enum</font> { <a href="../docs/manualpages/SVD/SVDWhich.html#SVDWhich">SVD_LARGEST</a>,
<a name="line77"> 77: </a> <a href="../docs/manualpages/SVD/SVDWhich.html#SVDWhich">SVD_SMALLEST</a> } <a href="../docs/manualpages/SVD/SVDWhich.html#SVDWhich">SVDWhich</a>;
<a name="line79"> 79: </a><font color="#B22222">/*E</font>
<a name="line80"> 80: </a><font color="#B22222"> <a href="../docs/manualpages/SVD/SVDErrorType.html#SVDErrorType">SVDErrorType</a> - The error type used to assess accuracy of computed solutions</font>
<a name="line82"> 82: </a><font color="#B22222"> Level: intermediate</font>
<a name="line84"> 84: </a><font color="#B22222">.seealso: <a href="../docs/manualpages/SVD/SVDComputeError.html#SVDComputeError">SVDComputeError</a>()</font>
<a name="line85"> 85: </a><font color="#B22222">E*/</font>
<a name="line86"> 86: </a><font color="#4169E1">typedef</font> <font color="#4169E1">enum</font> { <a href="../docs/manualpages/SVD/SVDErrorType.html#SVDErrorType">SVD_ERROR_ABSOLUTE</a>,
<a name="line87"> 87: </a> <a href="../docs/manualpages/SVD/SVDErrorType.html#SVDErrorType">SVD_ERROR_RELATIVE</a>,
<a name="line88"> 88: </a> <a href="../docs/manualpages/SVD/SVDErrorType.html#SVDErrorType">SVD_ERROR_NORM</a> } <a href="../docs/manualpages/SVD/SVDErrorType.html#SVDErrorType">SVDErrorType</a>;
<a name="line89"> 89: </a>SLEPC_EXTERN const char *SVDErrorTypes[];
<a name="line91"> 91: </a><font color="#B22222">/*E</font>
<a name="line92"> 92: </a><font color="#B22222"> <a href="../docs/manualpages/SVD/SVDConv.html#SVDConv">SVDConv</a> - Determines the convergence test</font>
<a name="line94"> 94: </a><font color="#B22222"> Level: intermediate</font>
<a name="line96"> 96: </a><font color="#B22222">.seealso: <a href="../docs/manualpages/SVD/SVDSetConvergenceTest.html#SVDSetConvergenceTest">SVDSetConvergenceTest</a>(), <a href="../docs/manualpages/SVD/SVDSetConvergenceTestFunction.html#SVDSetConvergenceTestFunction">SVDSetConvergenceTestFunction</a>()</font>
<a name="line97"> 97: </a><font color="#B22222">E*/</font>
<a name="line98"> 98: </a><font color="#4169E1">typedef</font> <font color="#4169E1">enum</font> { <a href="../docs/manualpages/SVD/SVDConv.html#SVDConv">SVD_CONV_ABS</a>,
<a name="line99"> 99: </a> <a href="../docs/manualpages/SVD/SVDConv.html#SVDConv">SVD_CONV_REL</a>,
<a name="line100">100: </a> <a href="../docs/manualpages/SVD/SVDConv.html#SVDConv">SVD_CONV_NORM</a>,
<a name="line101">101: </a> <a href="../docs/manualpages/SVD/SVDConv.html#SVDConv">SVD_CONV_MAXIT</a>,
<a name="line102">102: </a> <a href="../docs/manualpages/SVD/SVDConv.html#SVDConv">SVD_CONV_USER</a> } <a href="../docs/manualpages/SVD/SVDConv.html#SVDConv">SVDConv</a>;
<a name="line104">104: </a><font color="#B22222">/*E</font>
<a name="line105">105: </a><font color="#B22222"> <a href="../docs/manualpages/SVD/SVDStop.html#SVDStop">SVDStop</a> - Determines the stopping test</font>
<a name="line107">107: </a><font color="#B22222"> Level: advanced</font>
<a name="line109">109: </a><font color="#B22222">.seealso: <a href="../docs/manualpages/SVD/SVDSetStoppingTest.html#SVDSetStoppingTest">SVDSetStoppingTest</a>(), <a href="../docs/manualpages/SVD/SVDSetStoppingTestFunction.html#SVDSetStoppingTestFunction">SVDSetStoppingTestFunction</a>()</font>
<a name="line110">110: </a><font color="#B22222">E*/</font>
<a name="line111">111: </a><font color="#4169E1">typedef</font> <font color="#4169E1">enum</font> { <a href="../docs/manualpages/SVD/SVDStop.html#SVDStop">SVD_STOP_BASIC</a>,
<a name="line112">112: </a> <a href="../docs/manualpages/SVD/SVDStop.html#SVDStop">SVD_STOP_USER</a> } <a href="../docs/manualpages/SVD/SVDStop.html#SVDStop">SVDStop</a>;
<a name="line114">114: </a><font color="#B22222">/*E</font>
<a name="line115">115: </a><font color="#B22222"> <a href="../docs/manualpages/SVD/SVDConvergedReason.html#SVDConvergedReason">SVDConvergedReason</a> - Reason a singular value solver was said to</font>
<a name="line116">116: </a><font color="#B22222"> have converged or diverged</font>
<a name="line118">118: </a><font color="#B22222"> Level: intermediate</font>
<a name="line120">120: </a><font color="#B22222">.seealso: <a href="../docs/manualpages/SVD/SVDSolve.html#SVDSolve">SVDSolve</a>(), <a href="../docs/manualpages/SVD/SVDGetConvergedReason.html#SVDGetConvergedReason">SVDGetConvergedReason</a>(), <a href="../docs/manualpages/SVD/SVDSetTolerances.html#SVDSetTolerances">SVDSetTolerances</a>()</font>
<a name="line121">121: </a><font color="#B22222">E*/</font>
<a name="line122">122: </a><font color="#4169E1">typedef</font> <font color="#4169E1">enum</font> {<font color="#B22222">/* converged */</font>
<a name="line123">123: </a> <a href="../docs/manualpages/SVD/SVDConvergedReason.html#SVDConvergedReason">SVD_CONVERGED_TOL</a> = 1,
<a name="line124">124: </a> <a href="../docs/manualpages/SVD/SVDConvergedReason.html#SVDConvergedReason">SVD_CONVERGED_USER</a> = 2,
<a name="line125">125: </a> <a href="../docs/manualpages/SVD/SVDConvergedReason.html#SVDConvergedReason">SVD_CONVERGED_MAXIT</a> = 3,
<a name="line126">126: </a> <font color="#B22222">/* diverged */</font>
<a name="line127">127: </a> <a href="../docs/manualpages/SVD/SVDConvergedReason.html#SVDConvergedReason">SVD_DIVERGED_ITS</a> = -1,
<a name="line128">128: </a> <a href="../docs/manualpages/SVD/SVDConvergedReason.html#SVDConvergedReason">SVD_DIVERGED_BREAKDOWN</a> = -2,
<a name="line129">129: </a> <a href="../docs/manualpages/SVD/SVDConvergedReason.html#SVDConvergedReason">SVD_CONVERGED_ITERATING</a> = 0 } <a href="../docs/manualpages/SVD/SVDConvergedReason.html#SVDConvergedReason">SVDConvergedReason</a>;
<a name="line130">130: </a>SLEPC_EXTERN const char *const*SVDConvergedReasons;
<a name="line132">132: </a><strong><font color="#4169E1">SLEPC_EXTERN <a href="https://petsc.org/release/docs/manualpages/Sys/PetscErrorCode.html#PetscErrorCode">PetscErrorCode</a> <a href="../docs/manualpages/SVD/SVDCreate.html#SVDCreate">SVDCreate</a>(<a href="https://petsc.org/release/docs/manualpages/Sys/MPI_Comm.html#MPI_Comm">MPI_Comm</a>,<a href="../docs/manualpages/SVD/SVD.html#SVD">SVD</a>*)</font></strong>;
<a name="line133">133: </a><strong><font color="#4169E1">SLEPC_EXTERN <a href="https://petsc.org/release/docs/manualpages/Sys/PetscErrorCode.html#PetscErrorCode">PetscErrorCode</a> <a href="../docs/manualpages/SVD/SVDSetBV.html#SVDSetBV">SVDSetBV</a>(<a href="../docs/manualpages/SVD/SVD.html#SVD">SVD</a>,<a href="../docs/manualpages/BV/BV.html#BV">BV</a>,<a href="../docs/manualpages/BV/BV.html#BV">BV</a>)</font></strong>;
<a name="line134">134: </a><strong><font color="#4169E1">SLEPC_EXTERN <a href="https://petsc.org/release/docs/manualpages/Sys/PetscErrorCode.html#PetscErrorCode">PetscErrorCode</a> <a href="../docs/manualpages/SVD/SVDGetBV.html#SVDGetBV">SVDGetBV</a>(<a href="../docs/manualpages/SVD/SVD.html#SVD">SVD</a>,<a href="../docs/manualpages/BV/BV.html#BV">BV</a>*,<a href="../docs/manualpages/BV/BV.html#BV">BV</a>*)</font></strong>;
<a name="line135">135: </a><strong><font color="#4169E1">SLEPC_EXTERN <a href="https://petsc.org/release/docs/manualpages/Sys/PetscErrorCode.html#PetscErrorCode">PetscErrorCode</a> <a href="../docs/manualpages/SVD/SVDSetDS.html#SVDSetDS">SVDSetDS</a>(<a href="../docs/manualpages/SVD/SVD.html#SVD">SVD</a>,<a href="../docs/manualpages/DS/DS.html#DS">DS</a>)</font></strong>;
<a name="line136">136: </a><strong><font color="#4169E1">SLEPC_EXTERN <a href="https://petsc.org/release/docs/manualpages/Sys/PetscErrorCode.html#PetscErrorCode">PetscErrorCode</a> <a href="../docs/manualpages/SVD/SVDGetDS.html#SVDGetDS">SVDGetDS</a>(<a href="../docs/manualpages/SVD/SVD.html#SVD">SVD</a>,<a href="../docs/manualpages/DS/DS.html#DS">DS</a>*)</font></strong>;
<a name="line137">137: </a><strong><font color="#4169E1">SLEPC_EXTERN <a href="https://petsc.org/release/docs/manualpages/Sys/PetscErrorCode.html#PetscErrorCode">PetscErrorCode</a> <a href="../docs/manualpages/SVD/SVDSetType.html#SVDSetType">SVDSetType</a>(<a href="../docs/manualpages/SVD/SVD.html#SVD">SVD</a>,<a href="../docs/manualpages/SVD/SVDType.html#SVDType">SVDType</a>)</font></strong>;
<a name="line138">138: </a><strong><font color="#4169E1">SLEPC_EXTERN <a href="https://petsc.org/release/docs/manualpages/Sys/PetscErrorCode.html#PetscErrorCode">PetscErrorCode</a> <a href="../docs/manualpages/SVD/SVDGetType.html#SVDGetType">SVDGetType</a>(<a href="../docs/manualpages/SVD/SVD.html#SVD">SVD</a>,<a href="../docs/manualpages/SVD/SVDType.html#SVDType">SVDType</a>*)</font></strong>;
<a name="line139">139: </a><strong><font color="#4169E1">SLEPC_EXTERN <a href="https://petsc.org/release/docs/manualpages/Sys/PetscErrorCode.html#PetscErrorCode">PetscErrorCode</a> <a href="../docs/manualpages/SVD/SVDSetProblemType.html#SVDSetProblemType">SVDSetProblemType</a>(<a href="../docs/manualpages/SVD/SVD.html#SVD">SVD</a>,<a href="../docs/manualpages/SVD/SVDProblemType.html#SVDProblemType">SVDProblemType</a>)</font></strong>;
<a name="line140">140: </a><strong><font color="#4169E1">SLEPC_EXTERN <a href="https://petsc.org/release/docs/manualpages/Sys/PetscErrorCode.html#PetscErrorCode">PetscErrorCode</a> <a href="../docs/manualpages/SVD/SVDGetProblemType.html#SVDGetProblemType">SVDGetProblemType</a>(<a href="../docs/manualpages/SVD/SVD.html#SVD">SVD</a>,<a href="../docs/manualpages/SVD/SVDProblemType.html#SVDProblemType">SVDProblemType</a>*)</font></strong>;
<a name="line141">141: </a><strong><font color="#4169E1">SLEPC_EXTERN <a href="https://petsc.org/release/docs/manualpages/Sys/PetscErrorCode.html#PetscErrorCode">PetscErrorCode</a> <a href="../docs/manualpages/SVD/SVDIsGeneralized.html#SVDIsGeneralized">SVDIsGeneralized</a>(<a href="../docs/manualpages/SVD/SVD.html#SVD">SVD</a>,<a href="https://petsc.org/release/docs/manualpages/Sys/PetscBool.html#PetscBool">PetscBool</a>*)</font></strong>;
<a name="line142">142: </a><strong><font color="#4169E1">SLEPC_EXTERN <a href="https://petsc.org/release/docs/manualpages/Sys/PetscErrorCode.html#PetscErrorCode">PetscErrorCode</a> <a href="../docs/manualpages/SVD/SVDIsHyperbolic.html#SVDIsHyperbolic">SVDIsHyperbolic</a>(<a href="../docs/manualpages/SVD/SVD.html#SVD">SVD</a>,<a href="https://petsc.org/release/docs/manualpages/Sys/PetscBool.html#PetscBool">PetscBool</a>*)</font></strong>;
<a name="line143">143: </a><strong><font color="#4169E1">SLEPC_EXTERN <a href="https://petsc.org/release/docs/manualpages/Sys/PetscErrorCode.html#PetscErrorCode">PetscErrorCode</a> <a href="../docs/manualpages/SVD/SVDSetOperators.html#SVDSetOperators">SVDSetOperators</a>(<a href="../docs/manualpages/SVD/SVD.html#SVD">SVD</a>,<a href="https://petsc.org/release/docs/manualpages/Mat/Mat.html#Mat">Mat</a>,<a href="https://petsc.org/release/docs/manualpages/Mat/Mat.html#Mat">Mat</a>)</font></strong>;
<a name="line144">144: </a>PETSC_DEPRECATED_FUNCTION(<font color="#666666">"Use <a href="../docs/manualpages/SVD/SVDSetOperators.html#SVDSetOperators">SVDSetOperators</a>()"</font>) static inline <a href="https://petsc.org/release/docs/manualpages/Sys/PetscErrorCode.html#PetscErrorCode">PetscErrorCode</a> SVDSetOperator(<a href="../docs/manualpages/SVD/SVD.html#SVD">SVD</a> svd,<a href="https://petsc.org/release/docs/manualpages/Mat/Mat.html#Mat">Mat</a> A) {<font color="#4169E1">return</font> <a href="../docs/manualpages/SVD/SVDSetOperators.html#SVDSetOperators">SVDSetOperators</a>(svd,A,NULL);}
<a name="line145">145: </a><strong><font color="#4169E1">SLEPC_EXTERN <a href="https://petsc.org/release/docs/manualpages/Sys/PetscErrorCode.html#PetscErrorCode">PetscErrorCode</a> <a href="../docs/manualpages/SVD/SVDGetOperators.html#SVDGetOperators">SVDGetOperators</a>(<a href="../docs/manualpages/SVD/SVD.html#SVD">SVD</a>,<a href="https://petsc.org/release/docs/manualpages/Mat/Mat.html#Mat">Mat</a>*,<a href="https://petsc.org/release/docs/manualpages/Mat/Mat.html#Mat">Mat</a>*)</font></strong>;
<a name="line146">146: </a>PETSC_DEPRECATED_FUNCTION(<font color="#666666">"Use <a href="../docs/manualpages/SVD/SVDGetOperators.html#SVDGetOperators">SVDGetOperators</a>()"</font>) static inline <a href="https://petsc.org/release/docs/manualpages/Sys/PetscErrorCode.html#PetscErrorCode">PetscErrorCode</a> SVDGetOperator(<a href="../docs/manualpages/SVD/SVD.html#SVD">SVD</a> svd,<a href="https://petsc.org/release/docs/manualpages/Mat/Mat.html#Mat">Mat</a> *A) {<font color="#4169E1">return</font> <a href="../docs/manualpages/SVD/SVDGetOperators.html#SVDGetOperators">SVDGetOperators</a>(svd,A,NULL);}
<a name="line147">147: </a><strong><font color="#4169E1">SLEPC_EXTERN <a href="https://petsc.org/release/docs/manualpages/Sys/PetscErrorCode.html#PetscErrorCode">PetscErrorCode</a> <a href="../docs/manualpages/SVD/SVDSetSignature.html#SVDSetSignature">SVDSetSignature</a>(<a href="../docs/manualpages/SVD/SVD.html#SVD">SVD</a>,<a href="https://petsc.org/release/docs/manualpages/Vec/Vec.html#Vec">Vec</a>)</font></strong>;
<a name="line148">148: </a><strong><font color="#4169E1">SLEPC_EXTERN <a href="https://petsc.org/release/docs/manualpages/Sys/PetscErrorCode.html#PetscErrorCode">PetscErrorCode</a> <a href="../docs/manualpages/SVD/SVDGetSignature.html#SVDGetSignature">SVDGetSignature</a>(<a href="../docs/manualpages/SVD/SVD.html#SVD">SVD</a>,<a href="https://petsc.org/release/docs/manualpages/Vec/Vec.html#Vec">Vec</a>*)</font></strong>;
<a name="line149">149: </a><strong><font color="#4169E1">SLEPC_EXTERN <a href="https://petsc.org/release/docs/manualpages/Sys/PetscErrorCode.html#PetscErrorCode">PetscErrorCode</a> <a href="../docs/manualpages/SVD/SVDSetInitialSpaces.html#SVDSetInitialSpaces">SVDSetInitialSpaces</a>(<a href="../docs/manualpages/SVD/SVD.html#SVD">SVD</a>,<a href="https://petsc.org/release/docs/manualpages/Sys/PetscInt.html#PetscInt">PetscInt</a>,<a href="https://petsc.org/release/docs/manualpages/Vec/Vec.html#Vec">Vec</a>[],<a href="https://petsc.org/release/docs/manualpages/Sys/PetscInt.html#PetscInt">PetscInt</a>,<a href="https://petsc.org/release/docs/manualpages/Vec/Vec.html#Vec">Vec</a>[])</font></strong>;
<a name="line150">150: </a>PETSC_DEPRECATED_FUNCTION(<font color="#666666">"Use <a href="../docs/manualpages/SVD/SVDSetInitialSpaces.html#SVDSetInitialSpaces">SVDSetInitialSpaces</a>()"</font>) static inline <a href="https://petsc.org/release/docs/manualpages/Sys/PetscErrorCode.html#PetscErrorCode">PetscErrorCode</a> SVDSetInitialSpace(<a href="../docs/manualpages/SVD/SVD.html#SVD">SVD</a> svd,<a href="https://petsc.org/release/docs/manualpages/Sys/PetscInt.html#PetscInt">PetscInt</a> nr,<a href="https://petsc.org/release/docs/manualpages/Vec/Vec.html#Vec">Vec</a> *isr) {<font color="#4169E1">return</font> <a href="../docs/manualpages/SVD/SVDSetInitialSpaces.html#SVDSetInitialSpaces">SVDSetInitialSpaces</a>(svd,nr,isr,0,NULL);}
<a name="line151">151: </a>PETSC_DEPRECATED_FUNCTION(<font color="#666666">"Use <a href="../docs/manualpages/SVD/SVDSetInitialSpaces.html#SVDSetInitialSpaces">SVDSetInitialSpaces</a>()"</font>) static inline <a href="https://petsc.org/release/docs/manualpages/Sys/PetscErrorCode.html#PetscErrorCode">PetscErrorCode</a> SVDSetInitialSpaceLeft(<a href="../docs/manualpages/SVD/SVD.html#SVD">SVD</a> svd,<a href="https://petsc.org/release/docs/manualpages/Sys/PetscInt.html#PetscInt">PetscInt</a> nl,<a href="https://petsc.org/release/docs/manualpages/Vec/Vec.html#Vec">Vec</a> *isl) {<font color="#4169E1">return</font> <a href="../docs/manualpages/SVD/SVDSetInitialSpaces.html#SVDSetInitialSpaces">SVDSetInitialSpaces</a>(svd,0,NULL,nl,isl);}
<a name="line152">152: </a><strong><font color="#4169E1">SLEPC_EXTERN <a href="https://petsc.org/release/docs/manualpages/Sys/PetscErrorCode.html#PetscErrorCode">PetscErrorCode</a> <a href="../docs/manualpages/SVD/SVDSetImplicitTranspose.html#SVDSetImplicitTranspose">SVDSetImplicitTranspose</a>(<a href="../docs/manualpages/SVD/SVD.html#SVD">SVD</a>,<a href="https://petsc.org/release/docs/manualpages/Sys/PetscBool.html#PetscBool">PetscBool</a>)</font></strong>;
<a name="line153">153: </a><strong><font color="#4169E1">SLEPC_EXTERN <a href="https://petsc.org/release/docs/manualpages/Sys/PetscErrorCode.html#PetscErrorCode">PetscErrorCode</a> <a href="../docs/manualpages/SVD/SVDGetImplicitTranspose.html#SVDGetImplicitTranspose">SVDGetImplicitTranspose</a>(<a href="../docs/manualpages/SVD/SVD.html#SVD">SVD</a>,<a href="https://petsc.org/release/docs/manualpages/Sys/PetscBool.html#PetscBool">PetscBool</a>*)</font></strong>;
<a name="line154">154: </a><strong><font color="#4169E1">SLEPC_EXTERN <a href="https://petsc.org/release/docs/manualpages/Sys/PetscErrorCode.html#PetscErrorCode">PetscErrorCode</a> <a href="../docs/manualpages/SVD/SVDSetDimensions.html#SVDSetDimensions">SVDSetDimensions</a>(<a href="../docs/manualpages/SVD/SVD.html#SVD">SVD</a>,<a href="https://petsc.org/release/docs/manualpages/Sys/PetscInt.html#PetscInt">PetscInt</a>,<a href="https://petsc.org/release/docs/manualpages/Sys/PetscInt.html#PetscInt">PetscInt</a>,<a href="https://petsc.org/release/docs/manualpages/Sys/PetscInt.html#PetscInt">PetscInt</a>)</font></strong>;
<a name="line155">155: </a><strong><font color="#4169E1">SLEPC_EXTERN <a href="https://petsc.org/release/docs/manualpages/Sys/PetscErrorCode.html#PetscErrorCode">PetscErrorCode</a> <a href="../docs/manualpages/SVD/SVDGetDimensions.html#SVDGetDimensions">SVDGetDimensions</a>(<a href="../docs/manualpages/SVD/SVD.html#SVD">SVD</a>,<a href="https://petsc.org/release/docs/manualpages/Sys/PetscInt.html#PetscInt">PetscInt</a>*,<a href="https://petsc.org/release/docs/manualpages/Sys/PetscInt.html#PetscInt">PetscInt</a>*,<a href="https://petsc.org/release/docs/manualpages/Sys/PetscInt.html#PetscInt">PetscInt</a>*)</font></strong>;
<a name="line156">156: </a><strong><font color="#4169E1">SLEPC_EXTERN <a href="https://petsc.org/release/docs/manualpages/Sys/PetscErrorCode.html#PetscErrorCode">PetscErrorCode</a> <a href="../docs/manualpages/SVD/SVDSetTolerances.html#SVDSetTolerances">SVDSetTolerances</a>(<a href="../docs/manualpages/SVD/SVD.html#SVD">SVD</a>,<a href="https://petsc.org/release/docs/manualpages/Sys/PetscReal.html#PetscReal">PetscReal</a>,<a href="https://petsc.org/release/docs/manualpages/Sys/PetscInt.html#PetscInt">PetscInt</a>)</font></strong>;
<a name="line157">157: </a><strong><font color="#4169E1">SLEPC_EXTERN <a href="https://petsc.org/release/docs/manualpages/Sys/PetscErrorCode.html#PetscErrorCode">PetscErrorCode</a> <a href="../docs/manualpages/SVD/SVDGetTolerances.html#SVDGetTolerances">SVDGetTolerances</a>(<a href="../docs/manualpages/SVD/SVD.html#SVD">SVD</a>,<a href="https://petsc.org/release/docs/manualpages/Sys/PetscReal.html#PetscReal">PetscReal</a>*,<a href="https://petsc.org/release/docs/manualpages/Sys/PetscInt.html#PetscInt">PetscInt</a>*)</font></strong>;
<a name="line158">158: </a><strong><font color="#4169E1">SLEPC_EXTERN <a href="https://petsc.org/release/docs/manualpages/Sys/PetscErrorCode.html#PetscErrorCode">PetscErrorCode</a> <a href="../docs/manualpages/SVD/SVDSetWhichSingularTriplets.html#SVDSetWhichSingularTriplets">SVDSetWhichSingularTriplets</a>(<a href="../docs/manualpages/SVD/SVD.html#SVD">SVD</a>,<a href="../docs/manualpages/SVD/SVDWhich.html#SVDWhich">SVDWhich</a>)</font></strong>;
<a name="line159">159: </a><strong><font color="#4169E1">SLEPC_EXTERN <a href="https://petsc.org/release/docs/manualpages/Sys/PetscErrorCode.html#PetscErrorCode">PetscErrorCode</a> <a href="../docs/manualpages/SVD/SVDGetWhichSingularTriplets.html#SVDGetWhichSingularTriplets">SVDGetWhichSingularTriplets</a>(<a href="../docs/manualpages/SVD/SVD.html#SVD">SVD</a>,<a href="../docs/manualpages/SVD/SVDWhich.html#SVDWhich">SVDWhich</a>*)</font></strong>;
<a name="line160">160: </a><strong><font color="#4169E1">SLEPC_EXTERN <a href="https://petsc.org/release/docs/manualpages/Sys/PetscErrorCode.html#PetscErrorCode">PetscErrorCode</a> <a href="../docs/manualpages/SVD/SVDSetFromOptions.html#SVDSetFromOptions">SVDSetFromOptions</a>(<a href="../docs/manualpages/SVD/SVD.html#SVD">SVD</a>)</font></strong>;
<a name="line161">161: </a><strong><font color="#4169E1">SLEPC_EXTERN <a href="https://petsc.org/release/docs/manualpages/Sys/PetscErrorCode.html#PetscErrorCode">PetscErrorCode</a> <a href="../docs/manualpages/SVD/SVDSetOptionsPrefix.html#SVDSetOptionsPrefix">SVDSetOptionsPrefix</a>(<a href="../docs/manualpages/SVD/SVD.html#SVD">SVD</a>,const char*)</font></strong>;
<a name="line162">162: </a><strong><font color="#4169E1">SLEPC_EXTERN <a href="https://petsc.org/release/docs/manualpages/Sys/PetscErrorCode.html#PetscErrorCode">PetscErrorCode</a> <a href="../docs/manualpages/SVD/SVDAppendOptionsPrefix.html#SVDAppendOptionsPrefix">SVDAppendOptionsPrefix</a>(<a href="../docs/manualpages/SVD/SVD.html#SVD">SVD</a>,const char*)</font></strong>;
<a name="line163">163: </a><strong><font color="#4169E1">SLEPC_EXTERN <a href="https://petsc.org/release/docs/manualpages/Sys/PetscErrorCode.html#PetscErrorCode">PetscErrorCode</a> <a href="../docs/manualpages/SVD/SVDGetOptionsPrefix.html#SVDGetOptionsPrefix">SVDGetOptionsPrefix</a>(<a href="../docs/manualpages/SVD/SVD.html#SVD">SVD</a>,const char*[])</font></strong>;
<a name="line164">164: </a><strong><font color="#4169E1">SLEPC_EXTERN <a href="https://petsc.org/release/docs/manualpages/Sys/PetscErrorCode.html#PetscErrorCode">PetscErrorCode</a> <a href="../docs/manualpages/SVD/SVDSetUp.html#SVDSetUp">SVDSetUp</a>(<a href="../docs/manualpages/SVD/SVD.html#SVD">SVD</a>)</font></strong>;
<a name="line165">165: </a><strong><font color="#4169E1">SLEPC_EXTERN <a href="https://petsc.org/release/docs/manualpages/Sys/PetscErrorCode.html#PetscErrorCode">PetscErrorCode</a> <a href="../docs/manualpages/SVD/SVDSolve.html#SVDSolve">SVDSolve</a>(<a href="../docs/manualpages/SVD/SVD.html#SVD">SVD</a>)</font></strong>;
<a name="line166">166: </a><strong><font color="#4169E1">SLEPC_EXTERN <a href="https://petsc.org/release/docs/manualpages/Sys/PetscErrorCode.html#PetscErrorCode">PetscErrorCode</a> <a href="../docs/manualpages/SVD/SVDGetIterationNumber.html#SVDGetIterationNumber">SVDGetIterationNumber</a>(<a href="../docs/manualpages/SVD/SVD.html#SVD">SVD</a>,<a href="https://petsc.org/release/docs/manualpages/Sys/PetscInt.html#PetscInt">PetscInt</a>*)</font></strong>;
<a name="line167">167: </a><strong><font color="#4169E1"><a name="SVDSetConvergenceTestFunction"></a>SLEPC_EXTERN <a href="https://petsc.org/release/docs/manualpages/Sys/PetscErrorCode.html#PetscErrorCode">PetscErrorCode</a> <a href="../docs/manualpages/SVD/SVDSetConvergenceTestFunction.html#SVDSetConvergenceTestFunction">SVDSetConvergenceTestFunction</a>(<a href="../docs/manualpages/SVD/SVD.html#SVD">SVD</a>,<a href="https://petsc.org/release/docs/manualpages/Sys/PetscErrorCode.html#PetscErrorCode">PetscErrorCode</a> (*)(<a href="../docs/manualpages/SVD/SVD.html#SVD">SVD</a>,<a href="https://petsc.org/release/docs/manualpages/Sys/PetscReal.html#PetscReal">PetscReal</a>,<a href="https://petsc.org/release/docs/manualpages/Sys/PetscReal.html#PetscReal">PetscReal</a>,<a href="https://petsc.org/release/docs/manualpages/Sys/PetscReal.html#PetscReal">PetscReal</a>*,void*),void*,<a href="https://petsc.org/release/docs/manualpages/Sys/PetscErrorCode.html#PetscErrorCode">PetscErrorCode</a> (*)(void*)</font></strong>);
<a name="line168">168: </a><strong><font color="#4169E1">SLEPC_EXTERN <a href="https://petsc.org/release/docs/manualpages/Sys/PetscErrorCode.html#PetscErrorCode">PetscErrorCode</a> <a href="../docs/manualpages/SVD/SVDSetConvergenceTest.html#SVDSetConvergenceTest">SVDSetConvergenceTest</a>(<a href="../docs/manualpages/SVD/SVD.html#SVD">SVD</a>,<a href="../docs/manualpages/SVD/SVDConv.html#SVDConv">SVDConv</a>)</font></strong>;
<a name="line169">169: </a><strong><font color="#4169E1">SLEPC_EXTERN <a href="https://petsc.org/release/docs/manualpages/Sys/PetscErrorCode.html#PetscErrorCode">PetscErrorCode</a> <a href="../docs/manualpages/SVD/SVDGetConvergenceTest.html#SVDGetConvergenceTest">SVDGetConvergenceTest</a>(<a href="../docs/manualpages/SVD/SVD.html#SVD">SVD</a>,<a href="../docs/manualpages/SVD/SVDConv.html#SVDConv">SVDConv</a>*)</font></strong>;
<a name="line170">170: </a><strong><font color="#4169E1">SLEPC_EXTERN <a href="https://petsc.org/release/docs/manualpages/Sys/PetscErrorCode.html#PetscErrorCode">PetscErrorCode</a> SVDConvergedAbsolute(<a href="../docs/manualpages/SVD/SVD.html#SVD">SVD</a>,<a href="https://petsc.org/release/docs/manualpages/Sys/PetscReal.html#PetscReal">PetscReal</a>,<a href="https://petsc.org/release/docs/manualpages/Sys/PetscReal.html#PetscReal">PetscReal</a>,<a href="https://petsc.org/release/docs/manualpages/Sys/PetscReal.html#PetscReal">PetscReal</a>*,void*)</font></strong>;
<a name="line171">171: </a><strong><font color="#4169E1">SLEPC_EXTERN <a href="https://petsc.org/release/docs/manualpages/Sys/PetscErrorCode.html#PetscErrorCode">PetscErrorCode</a> SVDConvergedRelative(<a href="../docs/manualpages/SVD/SVD.html#SVD">SVD</a>,<a href="https://petsc.org/release/docs/manualpages/Sys/PetscReal.html#PetscReal">PetscReal</a>,<a href="https://petsc.org/release/docs/manualpages/Sys/PetscReal.html#PetscReal">PetscReal</a>,<a href="https://petsc.org/release/docs/manualpages/Sys/PetscReal.html#PetscReal">PetscReal</a>*,void*)</font></strong>;
<a name="line172">172: </a><strong><font color="#4169E1">SLEPC_EXTERN <a href="https://petsc.org/release/docs/manualpages/Sys/PetscErrorCode.html#PetscErrorCode">PetscErrorCode</a> SVDConvergedNorm(<a href="../docs/manualpages/SVD/SVD.html#SVD">SVD</a>,<a href="https://petsc.org/release/docs/manualpages/Sys/PetscReal.html#PetscReal">PetscReal</a>,<a href="https://petsc.org/release/docs/manualpages/Sys/PetscReal.html#PetscReal">PetscReal</a>,<a href="https://petsc.org/release/docs/manualpages/Sys/PetscReal.html#PetscReal">PetscReal</a>*,void*)</font></strong>;
<a name="line173">173: </a><strong><font color="#4169E1">SLEPC_EXTERN <a href="https://petsc.org/release/docs/manualpages/Sys/PetscErrorCode.html#PetscErrorCode">PetscErrorCode</a> SVDConvergedMaxIt(<a href="../docs/manualpages/SVD/SVD.html#SVD">SVD</a>,<a href="https://petsc.org/release/docs/manualpages/Sys/PetscReal.html#PetscReal">PetscReal</a>,<a href="https://petsc.org/release/docs/manualpages/Sys/PetscReal.html#PetscReal">PetscReal</a>,<a href="https://petsc.org/release/docs/manualpages/Sys/PetscReal.html#PetscReal">PetscReal</a>*,void*)</font></strong>;
<a name="line174">174: </a><strong><font color="#4169E1"><a name="SVDSetStoppingTestFunction"></a>SLEPC_EXTERN <a href="https://petsc.org/release/docs/manualpages/Sys/PetscErrorCode.html#PetscErrorCode">PetscErrorCode</a> <a href="../docs/manualpages/SVD/SVDSetStoppingTestFunction.html#SVDSetStoppingTestFunction">SVDSetStoppingTestFunction</a>(<a href="../docs/manualpages/SVD/SVD.html#SVD">SVD</a>,<a href="https://petsc.org/release/docs/manualpages/Sys/PetscErrorCode.html#PetscErrorCode">PetscErrorCode</a> (*)(<a href="../docs/manualpages/SVD/SVD.html#SVD">SVD</a>,<a href="https://petsc.org/release/docs/manualpages/Sys/PetscInt.html#PetscInt">PetscInt</a>,<a href="https://petsc.org/release/docs/manualpages/Sys/PetscInt.html#PetscInt">PetscInt</a>,<a href="https://petsc.org/release/docs/manualpages/Sys/PetscInt.html#PetscInt">PetscInt</a>,<a href="https://petsc.org/release/docs/manualpages/Sys/PetscInt.html#PetscInt">PetscInt</a>,<a href="../docs/manualpages/SVD/SVDConvergedReason.html#SVDConvergedReason">SVDConvergedReason</a>*,void*),void*,<a href="https://petsc.org/release/docs/manualpages/Sys/PetscErrorCode.html#PetscErrorCode">PetscErrorCode</a> (*)(void*)</font></strong>);
<a name="line175">175: </a><strong><font color="#4169E1">SLEPC_EXTERN <a href="https://petsc.org/release/docs/manualpages/Sys/PetscErrorCode.html#PetscErrorCode">PetscErrorCode</a> <a href="../docs/manualpages/SVD/SVDSetStoppingTest.html#SVDSetStoppingTest">SVDSetStoppingTest</a>(<a href="../docs/manualpages/SVD/SVD.html#SVD">SVD</a>,<a href="../docs/manualpages/SVD/SVDStop.html#SVDStop">SVDStop</a>)</font></strong>;
<a name="line176">176: </a><strong><font color="#4169E1">SLEPC_EXTERN <a href="https://petsc.org/release/docs/manualpages/Sys/PetscErrorCode.html#PetscErrorCode">PetscErrorCode</a> <a href="../docs/manualpages/SVD/SVDGetStoppingTest.html#SVDGetStoppingTest">SVDGetStoppingTest</a>(<a href="../docs/manualpages/SVD/SVD.html#SVD">SVD</a>,<a href="../docs/manualpages/SVD/SVDStop.html#SVDStop">SVDStop</a>*)</font></strong>;
<a name="line177">177: </a><strong><font color="#4169E1">SLEPC_EXTERN <a href="https://petsc.org/release/docs/manualpages/Sys/PetscErrorCode.html#PetscErrorCode">PetscErrorCode</a> <a href="../docs/manualpages/SVD/SVDStoppingBasic.html#SVDStoppingBasic">SVDStoppingBasic</a>(<a href="../docs/manualpages/SVD/SVD.html#SVD">SVD</a>,<a href="https://petsc.org/release/docs/manualpages/Sys/PetscInt.html#PetscInt">PetscInt</a>,<a href="https://petsc.org/release/docs/manualpages/Sys/PetscInt.html#PetscInt">PetscInt</a>,<a href="https://petsc.org/release/docs/manualpages/Sys/PetscInt.html#PetscInt">PetscInt</a>,<a href="https://petsc.org/release/docs/manualpages/Sys/PetscInt.html#PetscInt">PetscInt</a>,<a href="../docs/manualpages/SVD/SVDConvergedReason.html#SVDConvergedReason">SVDConvergedReason</a>*,void*)</font></strong>;
<a name="line178">178: </a><strong><font color="#4169E1">SLEPC_EXTERN <a href="https://petsc.org/release/docs/manualpages/Sys/PetscErrorCode.html#PetscErrorCode">PetscErrorCode</a> <a href="../docs/manualpages/SVD/SVDGetConvergedReason.html#SVDGetConvergedReason">SVDGetConvergedReason</a>(<a href="../docs/manualpages/SVD/SVD.html#SVD">SVD</a>,<a href="../docs/manualpages/SVD/SVDConvergedReason.html#SVDConvergedReason">SVDConvergedReason</a>*)</font></strong>;
<a name="line179">179: </a><strong><font color="#4169E1">SLEPC_EXTERN <a href="https://petsc.org/release/docs/manualpages/Sys/PetscErrorCode.html#PetscErrorCode">PetscErrorCode</a> <a href="../docs/manualpages/SVD/SVDGetConverged.html#SVDGetConverged">SVDGetConverged</a>(<a href="../docs/manualpages/SVD/SVD.html#SVD">SVD</a>,<a href="https://petsc.org/release/docs/manualpages/Sys/PetscInt.html#PetscInt">PetscInt</a>*)</font></strong>;
<a name="line180">180: </a><strong><font color="#4169E1">SLEPC_EXTERN <a href="https://petsc.org/release/docs/manualpages/Sys/PetscErrorCode.html#PetscErrorCode">PetscErrorCode</a> <a href="../docs/manualpages/SVD/SVDGetSingularTriplet.html#SVDGetSingularTriplet">SVDGetSingularTriplet</a>(<a href="../docs/manualpages/SVD/SVD.html#SVD">SVD</a>,<a href="https://petsc.org/release/docs/manualpages/Sys/PetscInt.html#PetscInt">PetscInt</a>,<a href="https://petsc.org/release/docs/manualpages/Sys/PetscReal.html#PetscReal">PetscReal</a>*,<a href="https://petsc.org/release/docs/manualpages/Vec/Vec.html#Vec">Vec</a>,<a href="https://petsc.org/release/docs/manualpages/Vec/Vec.html#Vec">Vec</a>)</font></strong>;
<a name="line181">181: </a><strong><font color="#4169E1">SLEPC_EXTERN <a href="https://petsc.org/release/docs/manualpages/Sys/PetscErrorCode.html#PetscErrorCode">PetscErrorCode</a> <a href="../docs/manualpages/SVD/SVDComputeError.html#SVDComputeError">SVDComputeError</a>(<a href="../docs/manualpages/SVD/SVD.html#SVD">SVD</a>,<a href="https://petsc.org/release/docs/manualpages/Sys/PetscInt.html#PetscInt">PetscInt</a>,<a href="../docs/manualpages/SVD/SVDErrorType.html#SVDErrorType">SVDErrorType</a>,<a href="https://petsc.org/release/docs/manualpages/Sys/PetscReal.html#PetscReal">PetscReal</a>*)</font></strong>;
<a name="line182">182: </a>PETSC_DEPRECATED_FUNCTION(<font color="#666666">"Use <a href="../docs/manualpages/SVD/SVDComputeError.html#SVDComputeError">SVDComputeError</a>()"</font>) static inline <a href="https://petsc.org/release/docs/manualpages/Sys/PetscErrorCode.html#PetscErrorCode">PetscErrorCode</a> SVDComputeRelativeError(<a href="../docs/manualpages/SVD/SVD.html#SVD">SVD</a> svd,<a href="https://petsc.org/release/docs/manualpages/Sys/PetscInt.html#PetscInt">PetscInt</a> i,<a href="https://petsc.org/release/docs/manualpages/Sys/PetscReal.html#PetscReal">PetscReal</a> *r) {<font color="#4169E1">return</font> <a href="../docs/manualpages/SVD/SVDComputeError.html#SVDComputeError">SVDComputeError</a>(svd,i,<a href="../docs/manualpages/SVD/SVDErrorType.html#SVDErrorType">SVD_ERROR_RELATIVE</a>,r);}
<a name="line183">183: </a>PETSC_DEPRECATED_FUNCTION(<font color="#666666">"Use <a href="../docs/manualpages/SVD/SVDComputeError.html#SVDComputeError">SVDComputeError</a>() with <a href="../docs/manualpages/SVD/SVDErrorType.html#SVDErrorType">SVD_ERROR_ABSOLUTE</a>"</font>) static inline <a href="https://petsc.org/release/docs/manualpages/Sys/PetscErrorCode.html#PetscErrorCode">PetscErrorCode</a> SVDComputeResidualNorms(<a href="../docs/manualpages/SVD/SVD.html#SVD">SVD</a> svd,<a href="https://petsc.org/release/docs/manualpages/Sys/PetscInt.html#PetscInt">PetscInt</a> i,<a href="https://petsc.org/release/docs/manualpages/Sys/PetscReal.html#PetscReal">PetscReal</a> *r1,PETSC_UNUSED <a href="https://petsc.org/release/docs/manualpages/Sys/PetscReal.html#PetscReal">PetscReal</a> *r2) {<font color="#4169E1">return</font> <a href="../docs/manualpages/SVD/SVDComputeError.html#SVDComputeError">SVDComputeError</a>(svd,i,<a href="../docs/manualpages/SVD/SVDErrorType.html#SVDErrorType">SVD_ERROR_ABSOLUTE</a>,r1);}
<a name="line184">184: </a><strong><font color="#4169E1">SLEPC_EXTERN <a href="https://petsc.org/release/docs/manualpages/Sys/PetscErrorCode.html#PetscErrorCode">PetscErrorCode</a> <a href="../docs/manualpages/SVD/SVDView.html#SVDView">SVDView</a>(<a href="../docs/manualpages/SVD/SVD.html#SVD">SVD</a>,<a href="https://petsc.org/release/docs/manualpages/Viewer/PetscViewer.html#PetscViewer">PetscViewer</a>)</font></strong>;
<a name="line185">185: </a><strong><font color="#4169E1">SLEPC_EXTERN <a href="https://petsc.org/release/docs/manualpages/Sys/PetscErrorCode.html#PetscErrorCode">PetscErrorCode</a> <a href="../docs/manualpages/SVD/SVDViewFromOptions.html#SVDViewFromOptions">SVDViewFromOptions</a>(<a href="../docs/manualpages/SVD/SVD.html#SVD">SVD</a>,<a href="https://petsc.org/release/docs/manualpages/Sys/PetscObject.html#PetscObject">PetscObject</a>,const char[])</font></strong>;
<a name="line186">186: </a><strong><font color="#4169E1">SLEPC_EXTERN <a href="https://petsc.org/release/docs/manualpages/Sys/PetscErrorCode.html#PetscErrorCode">PetscErrorCode</a> <a href="../docs/manualpages/SVD/SVDErrorView.html#SVDErrorView">SVDErrorView</a>(<a href="../docs/manualpages/SVD/SVD.html#SVD">SVD</a>,<a href="../docs/manualpages/SVD/SVDErrorType.html#SVDErrorType">SVDErrorType</a>,<a href="https://petsc.org/release/docs/manualpages/Viewer/PetscViewer.html#PetscViewer">PetscViewer</a>)</font></strong>;
<a name="line187">187: </a>PETSC_DEPRECATED_FUNCTION(<font color="#666666">"Use <a href="../docs/manualpages/SVD/SVDErrorView.html#SVDErrorView">SVDErrorView</a>()"</font>) static inline <a href="https://petsc.org/release/docs/manualpages/Sys/PetscErrorCode.html#PetscErrorCode">PetscErrorCode</a> SVDPrintSolution(<a href="../docs/manualpages/SVD/SVD.html#SVD">SVD</a> svd,<a href="https://petsc.org/release/docs/manualpages/Viewer/PetscViewer.html#PetscViewer">PetscViewer</a> v) {<font color="#4169E1">return</font> <a href="../docs/manualpages/SVD/SVDErrorView.html#SVDErrorView">SVDErrorView</a>(svd,<a href="../docs/manualpages/SVD/SVDErrorType.html#SVDErrorType">SVD_ERROR_RELATIVE</a>,v);}
<a name="line188">188: </a><strong><font color="#4169E1">SLEPC_EXTERN <a href="https://petsc.org/release/docs/manualpages/Sys/PetscErrorCode.html#PetscErrorCode">PetscErrorCode</a> <a href="../docs/manualpages/SVD/SVDErrorViewFromOptions.html#SVDErrorViewFromOptions">SVDErrorViewFromOptions</a>(<a href="../docs/manualpages/SVD/SVD.html#SVD">SVD</a>)</font></strong>;
<a name="line189">189: </a><strong><font color="#4169E1">SLEPC_EXTERN <a href="https://petsc.org/release/docs/manualpages/Sys/PetscErrorCode.html#PetscErrorCode">PetscErrorCode</a> <a href="../docs/manualpages/SVD/SVDConvergedReasonView.html#SVDConvergedReasonView">SVDConvergedReasonView</a>(<a href="../docs/manualpages/SVD/SVD.html#SVD">SVD</a>,<a href="https://petsc.org/release/docs/manualpages/Viewer/PetscViewer.html#PetscViewer">PetscViewer</a>)</font></strong>;
<a name="line190">190: </a><strong><font color="#4169E1">SLEPC_EXTERN <a href="https://petsc.org/release/docs/manualpages/Sys/PetscErrorCode.html#PetscErrorCode">PetscErrorCode</a> <a href="../docs/manualpages/SVD/SVDConvergedReasonViewFromOptions.html#SVDConvergedReasonViewFromOptions">SVDConvergedReasonViewFromOptions</a>(<a href="../docs/manualpages/SVD/SVD.html#SVD">SVD</a>)</font></strong>;
<a name="line191">191: </a>PETSC_DEPRECATED_FUNCTION(<font color="#666666">"Use <a href="../docs/manualpages/SVD/SVDConvergedReasonView.html#SVDConvergedReasonView">SVDConvergedReasonView</a>() (since version 3.14)"</font>) static inline <a href="https://petsc.org/release/docs/manualpages/Sys/PetscErrorCode.html#PetscErrorCode">PetscErrorCode</a> SVDReasonView(<a href="../docs/manualpages/SVD/SVD.html#SVD">SVD</a> svd,<a href="https://petsc.org/release/docs/manualpages/Viewer/PetscViewer.html#PetscViewer">PetscViewer</a> v) {<font color="#4169E1">return</font> <a href="../docs/manualpages/SVD/SVDConvergedReasonView.html#SVDConvergedReasonView">SVDConvergedReasonView</a>(svd,v);}
<a name="line192">192: </a>PETSC_DEPRECATED_FUNCTION(<font color="#666666">"Use <a href="../docs/manualpages/SVD/SVDConvergedReasonViewFromOptions.html#SVDConvergedReasonViewFromOptions">SVDConvergedReasonViewFromOptions</a>() (since version 3.14)"</font>) static inline <a href="https://petsc.org/release/docs/manualpages/Sys/PetscErrorCode.html#PetscErrorCode">PetscErrorCode</a> SVDReasonViewFromOptions(<a href="../docs/manualpages/SVD/SVD.html#SVD">SVD</a> svd) {<font color="#4169E1">return</font> <a href="../docs/manualpages/SVD/SVDConvergedReasonViewFromOptions.html#SVDConvergedReasonViewFromOptions">SVDConvergedReasonViewFromOptions</a>(svd);}
<a name="line193">193: </a><strong><font color="#4169E1">SLEPC_EXTERN <a href="https://petsc.org/release/docs/manualpages/Sys/PetscErrorCode.html#PetscErrorCode">PetscErrorCode</a> <a href="../docs/manualpages/SVD/SVDValuesView.html#SVDValuesView">SVDValuesView</a>(<a href="../docs/manualpages/SVD/SVD.html#SVD">SVD</a>,<a href="https://petsc.org/release/docs/manualpages/Viewer/PetscViewer.html#PetscViewer">PetscViewer</a>)</font></strong>;
<a name="line194">194: </a><strong><font color="#4169E1">SLEPC_EXTERN <a href="https://petsc.org/release/docs/manualpages/Sys/PetscErrorCode.html#PetscErrorCode">PetscErrorCode</a> <a href="../docs/manualpages/SVD/SVDValuesViewFromOptions.html#SVDValuesViewFromOptions">SVDValuesViewFromOptions</a>(<a href="../docs/manualpages/SVD/SVD.html#SVD">SVD</a>)</font></strong>;
<a name="line195">195: </a><strong><font color="#4169E1">SLEPC_EXTERN <a href="https://petsc.org/release/docs/manualpages/Sys/PetscErrorCode.html#PetscErrorCode">PetscErrorCode</a> <a href="../docs/manualpages/SVD/SVDVectorsView.html#SVDVectorsView">SVDVectorsView</a>(<a href="../docs/manualpages/SVD/SVD.html#SVD">SVD</a>,<a href="https://petsc.org/release/docs/manualpages/Viewer/PetscViewer.html#PetscViewer">PetscViewer</a>)</font></strong>;
<a name="line196">196: </a><strong><font color="#4169E1">SLEPC_EXTERN <a href="https://petsc.org/release/docs/manualpages/Sys/PetscErrorCode.html#PetscErrorCode">PetscErrorCode</a> <a href="../docs/manualpages/SVD/SVDVectorsViewFromOptions.html#SVDVectorsViewFromOptions">SVDVectorsViewFromOptions</a>(<a href="../docs/manualpages/SVD/SVD.html#SVD">SVD</a>)</font></strong>;
<a name="line197">197: </a><strong><font color="#4169E1">SLEPC_EXTERN <a href="https://petsc.org/release/docs/manualpages/Sys/PetscErrorCode.html#PetscErrorCode">PetscErrorCode</a> <a href="../docs/manualpages/SVD/SVDDestroy.html#SVDDestroy">SVDDestroy</a>(<a href="../docs/manualpages/SVD/SVD.html#SVD">SVD</a>*)</font></strong>;
<a name="line198">198: </a><strong><font color="#4169E1">SLEPC_EXTERN <a href="https://petsc.org/release/docs/manualpages/Sys/PetscErrorCode.html#PetscErrorCode">PetscErrorCode</a> <a href="../docs/manualpages/SVD/SVDReset.html#SVDReset">SVDReset</a>(<a href="../docs/manualpages/SVD/SVD.html#SVD">SVD</a>)</font></strong>;
<a name="line199">199: </a><strong><font color="#4169E1">SLEPC_EXTERN <a href="https://petsc.org/release/docs/manualpages/Sys/PetscErrorCode.html#PetscErrorCode">PetscErrorCode</a> <a href="../docs/manualpages/SVD/SVDSetWorkVecs.html#SVDSetWorkVecs">SVDSetWorkVecs</a>(<a href="../docs/manualpages/SVD/SVD.html#SVD">SVD</a>,<a href="https://petsc.org/release/docs/manualpages/Sys/PetscInt.html#PetscInt">PetscInt</a>,<a href="https://petsc.org/release/docs/manualpages/Sys/PetscInt.html#PetscInt">PetscInt</a>)</font></strong>;
<a name="line200">200: </a><strong><font color="#4169E1">SLEPC_EXTERN <a href="https://petsc.org/release/docs/manualpages/Sys/PetscErrorCode.html#PetscErrorCode">PetscErrorCode</a> <a href="../docs/manualpages/SVD/SVDSetTrackAll.html#SVDSetTrackAll">SVDSetTrackAll</a>(<a href="../docs/manualpages/SVD/SVD.html#SVD">SVD</a>,<a href="https://petsc.org/release/docs/manualpages/Sys/PetscBool.html#PetscBool">PetscBool</a>)</font></strong>;
<a name="line201">201: </a><strong><font color="#4169E1">SLEPC_EXTERN <a href="https://petsc.org/release/docs/manualpages/Sys/PetscErrorCode.html#PetscErrorCode">PetscErrorCode</a> <a href="../docs/manualpages/SVD/SVDGetTrackAll.html#SVDGetTrackAll">SVDGetTrackAll</a>(<a href="../docs/manualpages/SVD/SVD.html#SVD">SVD</a>,<a href="https://petsc.org/release/docs/manualpages/Sys/PetscBool.html#PetscBool">PetscBool</a>*)</font></strong>;
<a name="line203">203: </a><strong><font color="#4169E1">SLEPC_EXTERN <a href="https://petsc.org/release/docs/manualpages/Sys/PetscErrorCode.html#PetscErrorCode">PetscErrorCode</a> SVDMonitor(<a href="../docs/manualpages/SVD/SVD.html#SVD">SVD</a>,<a href="https://petsc.org/release/docs/manualpages/Sys/PetscInt.html#PetscInt">PetscInt</a>,<a href="https://petsc.org/release/docs/manualpages/Sys/PetscInt.html#PetscInt">PetscInt</a>,<a href="https://petsc.org/release/docs/manualpages/Sys/PetscReal.html#PetscReal">PetscReal</a>*,<a href="https://petsc.org/release/docs/manualpages/Sys/PetscReal.html#PetscReal">PetscReal</a>*,<a href="https://petsc.org/release/docs/manualpages/Sys/PetscInt.html#PetscInt">PetscInt</a>)</font></strong>;
<a name="line204">204: </a><strong><font color="#4169E1"><a name="SVDMonitorSet"></a>SLEPC_EXTERN <a href="https://petsc.org/release/docs/manualpages/Sys/PetscErrorCode.html#PetscErrorCode">PetscErrorCode</a> <a href="../docs/manualpages/SVD/SVDMonitorSet.html#SVDMonitorSet">SVDMonitorSet</a>(<a href="../docs/manualpages/SVD/SVD.html#SVD">SVD</a>,<a href="https://petsc.org/release/docs/manualpages/Sys/PetscErrorCode.html#PetscErrorCode">PetscErrorCode</a> (*)(<a href="../docs/manualpages/SVD/SVD.html#SVD">SVD</a>,<a href="https://petsc.org/release/docs/manualpages/Sys/PetscInt.html#PetscInt">PetscInt</a>,<a href="https://petsc.org/release/docs/manualpages/Sys/PetscInt.html#PetscInt">PetscInt</a>,<a href="https://petsc.org/release/docs/manualpages/Sys/PetscReal.html#PetscReal">PetscReal</a>*,<a href="https://petsc.org/release/docs/manualpages/Sys/PetscReal.html#PetscReal">PetscReal</a>*,<a href="https://petsc.org/release/docs/manualpages/Sys/PetscInt.html#PetscInt">PetscInt</a>,void*),void*,<a href="https://petsc.org/release/docs/manualpages/Sys/PetscErrorCode.html#PetscErrorCode">PetscErrorCode</a> (*)(void**)</font></strong>);
<a name="line205">205: </a><strong><font color="#4169E1">SLEPC_EXTERN <a href="https://petsc.org/release/docs/manualpages/Sys/PetscErrorCode.html#PetscErrorCode">PetscErrorCode</a> <a href="../docs/manualpages/SVD/SVDMonitorCancel.html#SVDMonitorCancel">SVDMonitorCancel</a>(<a href="../docs/manualpages/SVD/SVD.html#SVD">SVD</a>)</font></strong>;
<a name="line206">206: </a><strong><font color="#4169E1">SLEPC_EXTERN <a href="https://petsc.org/release/docs/manualpages/Sys/PetscErrorCode.html#PetscErrorCode">PetscErrorCode</a> <a href="../docs/manualpages/SVD/SVDGetMonitorContext.html#SVDGetMonitorContext">SVDGetMonitorContext</a>(<a href="../docs/manualpages/SVD/SVD.html#SVD">SVD</a>,void*)</font></strong>;
<a name="line208">208: </a><strong><font color="#4169E1">SLEPC_EXTERN <a href="https://petsc.org/release/docs/manualpages/Sys/PetscErrorCode.html#PetscErrorCode">PetscErrorCode</a> <a href="../docs/manualpages/SVD/SVDMonitorSetFromOptions.html#SVDMonitorSetFromOptions">SVDMonitorSetFromOptions</a>(<a href="../docs/manualpages/SVD/SVD.html#SVD">SVD</a>,const char[],const char[],void*,<a href="https://petsc.org/release/docs/manualpages/Sys/PetscBool.html#PetscBool">PetscBool</a>)</font></strong>;
<a name="line209">209: </a><strong><font color="#4169E1">SLEPC_EXTERN <a href="https://petsc.org/release/docs/manualpages/Sys/PetscErrorCode.html#PetscErrorCode">PetscErrorCode</a> SVDMonitorLGCreate(<a href="https://petsc.org/release/docs/manualpages/Sys/MPI_Comm.html#MPI_Comm">MPI_Comm</a>,const char[],const char[],const char[],<a href="https://petsc.org/release/docs/manualpages/Sys/PetscInt.html#PetscInt">PetscInt</a>,const char*[],int,int,int,int,<a href="https://petsc.org/release/docs/manualpages/Draw/PetscDrawLG.html#PetscDrawLG">PetscDrawLG</a>*)</font></strong>;
<a name="line210">210: </a><strong><font color="#4169E1">SLEPC_EXTERN <a href="https://petsc.org/release/docs/manualpages/Sys/PetscErrorCode.html#PetscErrorCode">PetscErrorCode</a> <a href="../docs/manualpages/SVD/SVDMonitorFirst.html#SVDMonitorFirst">SVDMonitorFirst</a>(<a href="../docs/manualpages/SVD/SVD.html#SVD">SVD</a>,<a href="https://petsc.org/release/docs/manualpages/Sys/PetscInt.html#PetscInt">PetscInt</a>,<a href="https://petsc.org/release/docs/manualpages/Sys/PetscInt.html#PetscInt">PetscInt</a>,<a href="https://petsc.org/release/docs/manualpages/Sys/PetscReal.html#PetscReal">PetscReal</a>*,<a href="https://petsc.org/release/docs/manualpages/Sys/PetscReal.html#PetscReal">PetscReal</a>*,<a href="https://petsc.org/release/docs/manualpages/Sys/PetscInt.html#PetscInt">PetscInt</a>,PetscViewerAndFormat*)</font></strong>;
<a name="line211">211: </a><strong><font color="#4169E1">SLEPC_EXTERN <a href="https://petsc.org/release/docs/manualpages/Sys/PetscErrorCode.html#PetscErrorCode">PetscErrorCode</a> <a href="../docs/manualpages/SVD/SVDMonitorFirstDrawLG.html#SVDMonitorFirstDrawLG">SVDMonitorFirstDrawLG</a>(<a href="../docs/manualpages/SVD/SVD.html#SVD">SVD</a>,<a href="https://petsc.org/release/docs/manualpages/Sys/PetscInt.html#PetscInt">PetscInt</a>,<a href="https://petsc.org/release/docs/manualpages/Sys/PetscInt.html#PetscInt">PetscInt</a>,<a href="https://petsc.org/release/docs/manualpages/Sys/PetscReal.html#PetscReal">PetscReal</a>*,<a href="https://petsc.org/release/docs/manualpages/Sys/PetscReal.html#PetscReal">PetscReal</a>*,<a href="https://petsc.org/release/docs/manualpages/Sys/PetscInt.html#PetscInt">PetscInt</a>,PetscViewerAndFormat*)</font></strong>;
<a name="line212">212: </a><strong><font color="#4169E1">SLEPC_EXTERN <a href="https://petsc.org/release/docs/manualpages/Sys/PetscErrorCode.html#PetscErrorCode">PetscErrorCode</a> <a href="../docs/manualpages/SVD/SVDMonitorFirstDrawLGCreate.html#SVDMonitorFirstDrawLGCreate">SVDMonitorFirstDrawLGCreate</a>(<a href="https://petsc.org/release/docs/manualpages/Viewer/PetscViewer.html#PetscViewer">PetscViewer</a>,<a href="https://petsc.org/release/docs/manualpages/Viewer/PetscViewerFormat.html#PetscViewerFormat">PetscViewerFormat</a>,void *,PetscViewerAndFormat**)</font></strong>;
<a name="line213">213: </a><strong><font color="#4169E1">SLEPC_EXTERN <a href="https://petsc.org/release/docs/manualpages/Sys/PetscErrorCode.html#PetscErrorCode">PetscErrorCode</a> <a href="../docs/manualpages/SVD/SVDMonitorAll.html#SVDMonitorAll">SVDMonitorAll</a>(<a href="../docs/manualpages/SVD/SVD.html#SVD">SVD</a>,<a href="https://petsc.org/release/docs/manualpages/Sys/PetscInt.html#PetscInt">PetscInt</a>,<a href="https://petsc.org/release/docs/manualpages/Sys/PetscInt.html#PetscInt">PetscInt</a>,<a href="https://petsc.org/release/docs/manualpages/Sys/PetscReal.html#PetscReal">PetscReal</a>*,<a href="https://petsc.org/release/docs/manualpages/Sys/PetscReal.html#PetscReal">PetscReal</a>*,<a href="https://petsc.org/release/docs/manualpages/Sys/PetscInt.html#PetscInt">PetscInt</a>,PetscViewerAndFormat*)</font></strong>;
<a name="line214">214: </a><strong><font color="#4169E1">SLEPC_EXTERN <a href="https://petsc.org/release/docs/manualpages/Sys/PetscErrorCode.html#PetscErrorCode">PetscErrorCode</a> <a href="../docs/manualpages/SVD/SVDMonitorAllDrawLG.html#SVDMonitorAllDrawLG">SVDMonitorAllDrawLG</a>(<a href="../docs/manualpages/SVD/SVD.html#SVD">SVD</a>,<a href="https://petsc.org/release/docs/manualpages/Sys/PetscInt.html#PetscInt">PetscInt</a>,<a href="https://petsc.org/release/docs/manualpages/Sys/PetscInt.html#PetscInt">PetscInt</a>,<a href="https://petsc.org/release/docs/manualpages/Sys/PetscReal.html#PetscReal">PetscReal</a>*,<a href="https://petsc.org/release/docs/manualpages/Sys/PetscReal.html#PetscReal">PetscReal</a>*,<a href="https://petsc.org/release/docs/manualpages/Sys/PetscInt.html#PetscInt">PetscInt</a>,PetscViewerAndFormat*)</font></strong>;
<a name="line215">215: </a><strong><font color="#4169E1">SLEPC_EXTERN <a href="https://petsc.org/release/docs/manualpages/Sys/PetscErrorCode.html#PetscErrorCode">PetscErrorCode</a> <a href="../docs/manualpages/SVD/SVDMonitorAllDrawLGCreate.html#SVDMonitorAllDrawLGCreate">SVDMonitorAllDrawLGCreate</a>(<a href="https://petsc.org/release/docs/manualpages/Viewer/PetscViewer.html#PetscViewer">PetscViewer</a>,<a href="https://petsc.org/release/docs/manualpages/Viewer/PetscViewerFormat.html#PetscViewerFormat">PetscViewerFormat</a>,void *,PetscViewerAndFormat**)</font></strong>;
<a name="line216">216: </a><strong><font color="#4169E1">SLEPC_EXTERN <a href="https://petsc.org/release/docs/manualpages/Sys/PetscErrorCode.html#PetscErrorCode">PetscErrorCode</a> <a href="../docs/manualpages/SVD/SVDMonitorConverged.html#SVDMonitorConverged">SVDMonitorConverged</a>(<a href="../docs/manualpages/SVD/SVD.html#SVD">SVD</a>,<a href="https://petsc.org/release/docs/manualpages/Sys/PetscInt.html#PetscInt">PetscInt</a>,<a href="https://petsc.org/release/docs/manualpages/Sys/PetscInt.html#PetscInt">PetscInt</a>,<a href="https://petsc.org/release/docs/manualpages/Sys/PetscReal.html#PetscReal">PetscReal</a>*,<a href="https://petsc.org/release/docs/manualpages/Sys/PetscReal.html#PetscReal">PetscReal</a>*,<a href="https://petsc.org/release/docs/manualpages/Sys/PetscInt.html#PetscInt">PetscInt</a>,PetscViewerAndFormat*)</font></strong>;
<a name="line217">217: </a><strong><font color="#4169E1">SLEPC_EXTERN <a href="https://petsc.org/release/docs/manualpages/Sys/PetscErrorCode.html#PetscErrorCode">PetscErrorCode</a> SVDMonitorConvergedCreate(<a href="https://petsc.org/release/docs/manualpages/Viewer/PetscViewer.html#PetscViewer">PetscViewer</a>,<a href="https://petsc.org/release/docs/manualpages/Viewer/PetscViewerFormat.html#PetscViewerFormat">PetscViewerFormat</a>,void *,PetscViewerAndFormat**)</font></strong>;
<a name="line218">218: </a><strong><font color="#4169E1">SLEPC_EXTERN <a href="https://petsc.org/release/docs/manualpages/Sys/PetscErrorCode.html#PetscErrorCode">PetscErrorCode</a> <a href="../docs/manualpages/SVD/SVDMonitorConvergedDrawLG.html#SVDMonitorConvergedDrawLG">SVDMonitorConvergedDrawLG</a>(<a href="../docs/manualpages/SVD/SVD.html#SVD">SVD</a>,<a href="https://petsc.org/release/docs/manualpages/Sys/PetscInt.html#PetscInt">PetscInt</a>,<a href="https://petsc.org/release/docs/manualpages/Sys/PetscInt.html#PetscInt">PetscInt</a>,<a href="https://petsc.org/release/docs/manualpages/Sys/PetscReal.html#PetscReal">PetscReal</a>*,<a href="https://petsc.org/release/docs/manualpages/Sys/PetscReal.html#PetscReal">PetscReal</a>*,<a href="https://petsc.org/release/docs/manualpages/Sys/PetscInt.html#PetscInt">PetscInt</a>,PetscViewerAndFormat*)</font></strong>;
<a name="line219">219: </a><strong><font color="#4169E1">SLEPC_EXTERN <a href="https://petsc.org/release/docs/manualpages/Sys/PetscErrorCode.html#PetscErrorCode">PetscErrorCode</a> <a href="../docs/manualpages/SVD/SVDMonitorConvergedDrawLGCreate.html#SVDMonitorConvergedDrawLGCreate">SVDMonitorConvergedDrawLGCreate</a>(<a href="https://petsc.org/release/docs/manualpages/Viewer/PetscViewer.html#PetscViewer">PetscViewer</a>,<a href="https://petsc.org/release/docs/manualpages/Viewer/PetscViewerFormat.html#PetscViewerFormat">PetscViewerFormat</a>,void *,PetscViewerAndFormat**)</font></strong>;
<a name="line220">220: </a><strong><font color="#4169E1">SLEPC_EXTERN <a href="https://petsc.org/release/docs/manualpages/Sys/PetscErrorCode.html#PetscErrorCode">PetscErrorCode</a> SVDMonitorConvergedDestroy(PetscViewerAndFormat**)</font></strong>;
<a name="line221">221: </a><strong><font color="#4169E1">SLEPC_EXTERN <a href="https://petsc.org/release/docs/manualpages/Sys/PetscErrorCode.html#PetscErrorCode">PetscErrorCode</a> <a href="../docs/manualpages/SVD/SVDMonitorConditioning.html#SVDMonitorConditioning">SVDMonitorConditioning</a>(<a href="../docs/manualpages/SVD/SVD.html#SVD">SVD</a>,<a href="https://petsc.org/release/docs/manualpages/Sys/PetscInt.html#PetscInt">PetscInt</a>,<a href="https://petsc.org/release/docs/manualpages/Sys/PetscInt.html#PetscInt">PetscInt</a>,<a href="https://petsc.org/release/docs/manualpages/Sys/PetscReal.html#PetscReal">PetscReal</a>*,<a href="https://petsc.org/release/docs/manualpages/Sys/PetscReal.html#PetscReal">PetscReal</a>*,<a href="https://petsc.org/release/docs/manualpages/Sys/PetscInt.html#PetscInt">PetscInt</a>,PetscViewerAndFormat*)</font></strong>;
<a name="line223">223: </a>SLEPC_EXTERN <a href="https://petsc.org/release/docs/manualpages/Sys/PetscFunctionList.html#PetscFunctionList">PetscFunctionList</a> SVDList;
<a name="line224">224: </a>SLEPC_EXTERN <a href="https://petsc.org/release/docs/manualpages/Sys/PetscFunctionList.html#PetscFunctionList">PetscFunctionList</a> SVDMonitorList;
<a name="line225">225: </a>SLEPC_EXTERN <a href="https://petsc.org/release/docs/manualpages/Sys/PetscFunctionList.html#PetscFunctionList">PetscFunctionList</a> SVDMonitorCreateList;
<a name="line226">226: </a>SLEPC_EXTERN <a href="https://petsc.org/release/docs/manualpages/Sys/PetscFunctionList.html#PetscFunctionList">PetscFunctionList</a> SVDMonitorDestroyList;
<a name="line227">227: </a><strong><font color="#4169E1"><a name="SVDRegister"></a>SLEPC_EXTERN <a href="https://petsc.org/release/docs/manualpages/Sys/PetscErrorCode.html#PetscErrorCode">PetscErrorCode</a> <a href="../docs/manualpages/SVD/SVDRegister.html#SVDRegister">SVDRegister</a>(const char[],<a href="https://petsc.org/release/docs/manualpages/Sys/PetscErrorCode.html#PetscErrorCode">PetscErrorCode</a>(*)(<a href="../docs/manualpages/SVD/SVD.html#SVD">SVD</a>)</font></strong>);
<a name="line228">228: </a><strong><font color="#4169E1"><a name="SVDMonitorRegister"></a>SLEPC_EXTERN <a href="https://petsc.org/release/docs/manualpages/Sys/PetscErrorCode.html#PetscErrorCode">PetscErrorCode</a> <a href="../docs/manualpages/SVD/SVDMonitorRegister.html#SVDMonitorRegister">SVDMonitorRegister</a>(const char[],<a href="https://petsc.org/release/docs/manualpages/Viewer/PetscViewerType.html#PetscViewerType">PetscViewerType</a>,<a href="https://petsc.org/release/docs/manualpages/Viewer/PetscViewerFormat.html#PetscViewerFormat">PetscViewerFormat</a>,<a href="https://petsc.org/release/docs/manualpages/Sys/PetscErrorCode.html#PetscErrorCode">PetscErrorCode</a>(*)(<a href="../docs/manualpages/SVD/SVD.html#SVD">SVD</a>,<a href="https://petsc.org/release/docs/manualpages/Sys/PetscInt.html#PetscInt">PetscInt</a>,<a href="https://petsc.org/release/docs/manualpages/Sys/PetscInt.html#PetscInt">PetscInt</a>,<a href="https://petsc.org/release/docs/manualpages/Sys/PetscReal.html#PetscReal">PetscReal</a>*,<a href="https://petsc.org/release/docs/manualpages/Sys/PetscReal.html#PetscReal">PetscReal</a>*,<a href="https://petsc.org/release/docs/manualpages/Sys/PetscInt.html#PetscInt">PetscInt</a>,PetscViewerAndFormat*),<a href="https://petsc.org/release/docs/manualpages/Sys/PetscErrorCode.html#PetscErrorCode">PetscErrorCode</a>(*)(<a href="https://petsc.org/release/docs/manualpages/Viewer/PetscViewer.html#PetscViewer">PetscViewer</a>,<a href="https://petsc.org/release/docs/manualpages/Viewer/PetscViewerFormat.html#PetscViewerFormat">PetscViewerFormat</a>,void*,PetscViewerAndFormat**),<a href="https://petsc.org/release/docs/manualpages/Sys/PetscErrorCode.html#PetscErrorCode">PetscErrorCode</a>(*)(PetscViewerAndFormat**)</font></strong>);
<a name="line230">230: </a><strong><font color="#4169E1">SLEPC_EXTERN <a href="https://petsc.org/release/docs/manualpages/Sys/PetscErrorCode.html#PetscErrorCode">PetscErrorCode</a> <a href="../docs/manualpages/SVD/SVDAllocateSolution.html#SVDAllocateSolution">SVDAllocateSolution</a>(<a href="../docs/manualpages/SVD/SVD.html#SVD">SVD</a>,<a href="https://petsc.org/release/docs/manualpages/Sys/PetscInt.html#PetscInt">PetscInt</a>)</font></strong>;
<a name="line232">232: </a><font color="#B22222">/* --------- options specific to particular solvers -------- */</font>
<a name="line234">234: </a><strong><font color="#4169E1">SLEPC_EXTERN <a href="https://petsc.org/release/docs/manualpages/Sys/PetscErrorCode.html#PetscErrorCode">PetscErrorCode</a> <a href="../docs/manualpages/SVD/SVDCrossSetExplicitMatrix.html#SVDCrossSetExplicitMatrix">SVDCrossSetExplicitMatrix</a>(<a href="../docs/manualpages/SVD/SVD.html#SVD">SVD</a>,<a href="https://petsc.org/release/docs/manualpages/Sys/PetscBool.html#PetscBool">PetscBool</a>)</font></strong>;
<a name="line235">235: </a><strong><font color="#4169E1">SLEPC_EXTERN <a href="https://petsc.org/release/docs/manualpages/Sys/PetscErrorCode.html#PetscErrorCode">PetscErrorCode</a> <a href="../docs/manualpages/SVD/SVDCrossGetExplicitMatrix.html#SVDCrossGetExplicitMatrix">SVDCrossGetExplicitMatrix</a>(<a href="../docs/manualpages/SVD/SVD.html#SVD">SVD</a>,<a href="https://petsc.org/release/docs/manualpages/Sys/PetscBool.html#PetscBool">PetscBool</a>*)</font></strong>;
<a name="line236">236: </a><strong><font color="#4169E1">SLEPC_EXTERN <a href="https://petsc.org/release/docs/manualpages/Sys/PetscErrorCode.html#PetscErrorCode">PetscErrorCode</a> <a href="../docs/manualpages/SVD/SVDCrossSetEPS.html#SVDCrossSetEPS">SVDCrossSetEPS</a>(<a href="../docs/manualpages/SVD/SVD.html#SVD">SVD</a>,<a href="../docs/manualpages/EPS/EPS.html#EPS">EPS</a>)</font></strong>;
<a name="line237">237: </a><strong><font color="#4169E1">SLEPC_EXTERN <a href="https://petsc.org/release/docs/manualpages/Sys/PetscErrorCode.html#PetscErrorCode">PetscErrorCode</a> <a href="../docs/manualpages/SVD/SVDCrossGetEPS.html#SVDCrossGetEPS">SVDCrossGetEPS</a>(<a href="../docs/manualpages/SVD/SVD.html#SVD">SVD</a>,<a href="../docs/manualpages/EPS/EPS.html#EPS">EPS</a>*)</font></strong>;
<a name="line239">239: </a><strong><font color="#4169E1">SLEPC_EXTERN <a href="https://petsc.org/release/docs/manualpages/Sys/PetscErrorCode.html#PetscErrorCode">PetscErrorCode</a> <a href="../docs/manualpages/SVD/SVDCyclicSetExplicitMatrix.html#SVDCyclicSetExplicitMatrix">SVDCyclicSetExplicitMatrix</a>(<a href="../docs/manualpages/SVD/SVD.html#SVD">SVD</a>,<a href="https://petsc.org/release/docs/manualpages/Sys/PetscBool.html#PetscBool">PetscBool</a>)</font></strong>;
<a name="line240">240: </a><strong><font color="#4169E1">SLEPC_EXTERN <a href="https://petsc.org/release/docs/manualpages/Sys/PetscErrorCode.html#PetscErrorCode">PetscErrorCode</a> <a href="../docs/manualpages/SVD/SVDCyclicGetExplicitMatrix.html#SVDCyclicGetExplicitMatrix">SVDCyclicGetExplicitMatrix</a>(<a href="../docs/manualpages/SVD/SVD.html#SVD">SVD</a>,<a href="https://petsc.org/release/docs/manualpages/Sys/PetscBool.html#PetscBool">PetscBool</a>*)</font></strong>;
<a name="line241">241: </a><strong><font color="#4169E1">SLEPC_EXTERN <a href="https://petsc.org/release/docs/manualpages/Sys/PetscErrorCode.html#PetscErrorCode">PetscErrorCode</a> <a href="../docs/manualpages/SVD/SVDCyclicSetEPS.html#SVDCyclicSetEPS">SVDCyclicSetEPS</a>(<a href="../docs/manualpages/SVD/SVD.html#SVD">SVD</a>,<a href="../docs/manualpages/EPS/EPS.html#EPS">EPS</a>)</font></strong>;
<a name="line242">242: </a><strong><font color="#4169E1">SLEPC_EXTERN <a href="https://petsc.org/release/docs/manualpages/Sys/PetscErrorCode.html#PetscErrorCode">PetscErrorCode</a> <a href="../docs/manualpages/SVD/SVDCyclicGetEPS.html#SVDCyclicGetEPS">SVDCyclicGetEPS</a>(<a href="../docs/manualpages/SVD/SVD.html#SVD">SVD</a>,<a href="../docs/manualpages/EPS/EPS.html#EPS">EPS</a>*)</font></strong>;
<a name="line244">244: </a><strong><font color="#4169E1">SLEPC_EXTERN <a href="https://petsc.org/release/docs/manualpages/Sys/PetscErrorCode.html#PetscErrorCode">PetscErrorCode</a> <a href="../docs/manualpages/SVD/SVDLanczosSetOneSide.html#SVDLanczosSetOneSide">SVDLanczosSetOneSide</a>(<a href="../docs/manualpages/SVD/SVD.html#SVD">SVD</a>,<a href="https://petsc.org/release/docs/manualpages/Sys/PetscBool.html#PetscBool">PetscBool</a>)</font></strong>;
<a name="line245">245: </a><strong><font color="#4169E1">SLEPC_EXTERN <a href="https://petsc.org/release/docs/manualpages/Sys/PetscErrorCode.html#PetscErrorCode">PetscErrorCode</a> <a href="../docs/manualpages/SVD/SVDLanczosGetOneSide.html#SVDLanczosGetOneSide">SVDLanczosGetOneSide</a>(<a href="../docs/manualpages/SVD/SVD.html#SVD">SVD</a>,<a href="https://petsc.org/release/docs/manualpages/Sys/PetscBool.html#PetscBool">PetscBool</a>*)</font></strong>;
<a name="line247">247: </a><font color="#B22222">/*E</font>
<a name="line248">248: </a><font color="#B22222"> <a href="../docs/manualpages/SVD/SVDTRLanczosGBidiag.html#SVDTRLanczosGBidiag">SVDTRLanczosGBidiag</a> - determines the bidiagonalization choice for the</font>
<a name="line249">249: </a><font color="#B22222"> TRLanczos GSVD solver</font>
<a name="line251">251: </a><font color="#B22222"> Level: advanced</font>
<a name="line253">253: </a><font color="#B22222">.seealso: <a href="../docs/manualpages/SVD/SVDTRLanczosSetGBidiag.html#SVDTRLanczosSetGBidiag">SVDTRLanczosSetGBidiag</a>(), <a href="../docs/manualpages/SVD/SVDTRLanczosGetGBidiag.html#SVDTRLanczosGetGBidiag">SVDTRLanczosGetGBidiag</a>()</font>
<a name="line254">254: </a><font color="#B22222">E*/</font>
<a name="line255">255: </a><font color="#4169E1">typedef</font> <font color="#4169E1">enum</font> {
<a name="line256">256: </a> <a href="../docs/manualpages/SVD/SVDTRLanczosGBidiag.html#SVDTRLanczosGBidiag">SVD_TRLANCZOS_GBIDIAG_SINGLE</a>, <font color="#B22222">/* single bidiagonalization (Qa) */</font>
<a name="line257">257: </a> <a href="../docs/manualpages/SVD/SVDTRLanczosGBidiag.html#SVDTRLanczosGBidiag">SVD_TRLANCZOS_GBIDIAG_UPPER</a>, <font color="#B22222">/* joint bidiagonalization, both Qa and Qb in upper bidiagonal form */</font>
<a name="line258">258: </a> <a href="../docs/manualpages/SVD/SVDTRLanczosGBidiag.html#SVDTRLanczosGBidiag">SVD_TRLANCZOS_GBIDIAG_LOWER</a> <font color="#B22222">/* joint bidiagonalization, Qa lower bidiagonal, Qb upper bidiagonal */</font>
<a name="line259">259: </a>} <a href="../docs/manualpages/SVD/SVDTRLanczosGBidiag.html#SVDTRLanczosGBidiag">SVDTRLanczosGBidiag</a>;
<a name="line260">260: </a>SLEPC_EXTERN const char *SVDTRLanczosGBidiags[];
<a name="line262">262: </a><strong><font color="#4169E1">SLEPC_EXTERN <a href="https://petsc.org/release/docs/manualpages/Sys/PetscErrorCode.html#PetscErrorCode">PetscErrorCode</a> <a href="../docs/manualpages/SVD/SVDTRLanczosSetGBidiag.html#SVDTRLanczosSetGBidiag">SVDTRLanczosSetGBidiag</a>(<a href="../docs/manualpages/SVD/SVD.html#SVD">SVD</a>,<a href="../docs/manualpages/SVD/SVDTRLanczosGBidiag.html#SVDTRLanczosGBidiag">SVDTRLanczosGBidiag</a>)</font></strong>;
<a name="line263">263: </a><strong><font color="#4169E1">SLEPC_EXTERN <a href="https://petsc.org/release/docs/manualpages/Sys/PetscErrorCode.html#PetscErrorCode">PetscErrorCode</a> <a href="../docs/manualpages/SVD/SVDTRLanczosGetGBidiag.html#SVDTRLanczosGetGBidiag">SVDTRLanczosGetGBidiag</a>(<a href="../docs/manualpages/SVD/SVD.html#SVD">SVD</a>,<a href="../docs/manualpages/SVD/SVDTRLanczosGBidiag.html#SVDTRLanczosGBidiag">SVDTRLanczosGBidiag</a>*)</font></strong>;
<a name="line264">264: </a><strong><font color="#4169E1">SLEPC_EXTERN <a href="https://petsc.org/release/docs/manualpages/Sys/PetscErrorCode.html#PetscErrorCode">PetscErrorCode</a> <a href="../docs/manualpages/SVD/SVDTRLanczosSetOneSide.html#SVDTRLanczosSetOneSide">SVDTRLanczosSetOneSide</a>(<a href="../docs/manualpages/SVD/SVD.html#SVD">SVD</a>,<a href="https://petsc.org/release/docs/manualpages/Sys/PetscBool.html#PetscBool">PetscBool</a>)</font></strong>;
<a name="line265">265: </a><strong><font color="#4169E1">SLEPC_EXTERN <a href="https://petsc.org/release/docs/manualpages/Sys/PetscErrorCode.html#PetscErrorCode">PetscErrorCode</a> <a href="../docs/manualpages/SVD/SVDTRLanczosGetOneSide.html#SVDTRLanczosGetOneSide">SVDTRLanczosGetOneSide</a>(<a href="../docs/manualpages/SVD/SVD.html#SVD">SVD</a>,<a href="https://petsc.org/release/docs/manualpages/Sys/PetscBool.html#PetscBool">PetscBool</a>*)</font></strong>;
<a name="line266">266: </a><strong><font color="#4169E1">SLEPC_EXTERN <a href="https://petsc.org/release/docs/manualpages/Sys/PetscErrorCode.html#PetscErrorCode">PetscErrorCode</a> <a href="../docs/manualpages/SVD/SVDTRLanczosSetKSP.html#SVDTRLanczosSetKSP">SVDTRLanczosSetKSP</a>(<a href="../docs/manualpages/SVD/SVD.html#SVD">SVD</a>,<a href="https://petsc.org/release/docs/manualpages/KSP/KSP.html#KSP">KSP</a>)</font></strong>;
<a name="line267">267: </a><strong><font color="#4169E1">SLEPC_EXTERN <a href="https://petsc.org/release/docs/manualpages/Sys/PetscErrorCode.html#PetscErrorCode">PetscErrorCode</a> <a href="../docs/manualpages/SVD/SVDTRLanczosGetKSP.html#SVDTRLanczosGetKSP">SVDTRLanczosGetKSP</a>(<a href="../docs/manualpages/SVD/SVD.html#SVD">SVD</a>,<a href="https://petsc.org/release/docs/manualpages/KSP/KSP.html#KSP">KSP</a>*)</font></strong>;
<a name="line268">268: </a><strong><font color="#4169E1">SLEPC_EXTERN <a href="https://petsc.org/release/docs/manualpages/Sys/PetscErrorCode.html#PetscErrorCode">PetscErrorCode</a> <a href="../docs/manualpages/SVD/SVDTRLanczosSetRestart.html#SVDTRLanczosSetRestart">SVDTRLanczosSetRestart</a>(<a href="../docs/manualpages/SVD/SVD.html#SVD">SVD</a>,<a href="https://petsc.org/release/docs/manualpages/Sys/PetscReal.html#PetscReal">PetscReal</a>)</font></strong>;
<a name="line269">269: </a><strong><font color="#4169E1">SLEPC_EXTERN <a href="https://petsc.org/release/docs/manualpages/Sys/PetscErrorCode.html#PetscErrorCode">PetscErrorCode</a> <a href="../docs/manualpages/SVD/SVDTRLanczosGetRestart.html#SVDTRLanczosGetRestart">SVDTRLanczosGetRestart</a>(<a href="../docs/manualpages/SVD/SVD.html#SVD">SVD</a>,<a href="https://petsc.org/release/docs/manualpages/Sys/PetscReal.html#PetscReal">PetscReal</a>*)</font></strong>;
<a name="line270">270: </a><strong><font color="#4169E1">SLEPC_EXTERN <a href="https://petsc.org/release/docs/manualpages/Sys/PetscErrorCode.html#PetscErrorCode">PetscErrorCode</a> <a href="../docs/manualpages/SVD/SVDTRLanczosSetLocking.html#SVDTRLanczosSetLocking">SVDTRLanczosSetLocking</a>(<a href="../docs/manualpages/SVD/SVD.html#SVD">SVD</a>,<a href="https://petsc.org/release/docs/manualpages/Sys/PetscBool.html#PetscBool">PetscBool</a>)</font></strong>;
<a name="line271">271: </a><strong><font color="#4169E1">SLEPC_EXTERN <a href="https://petsc.org/release/docs/manualpages/Sys/PetscErrorCode.html#PetscErrorCode">PetscErrorCode</a> <a href="../docs/manualpages/SVD/SVDTRLanczosGetLocking.html#SVDTRLanczosGetLocking">SVDTRLanczosGetLocking</a>(<a href="../docs/manualpages/SVD/SVD.html#SVD">SVD</a>,<a href="https://petsc.org/release/docs/manualpages/Sys/PetscBool.html#PetscBool">PetscBool</a>*)</font></strong>;
<a name="line272">272: </a><strong><font color="#4169E1">SLEPC_EXTERN <a href="https://petsc.org/release/docs/manualpages/Sys/PetscErrorCode.html#PetscErrorCode">PetscErrorCode</a> <a href="../docs/manualpages/SVD/SVDTRLanczosSetExplicitMatrix.html#SVDTRLanczosSetExplicitMatrix">SVDTRLanczosSetExplicitMatrix</a>(<a href="../docs/manualpages/SVD/SVD.html#SVD">SVD</a>,<a href="https://petsc.org/release/docs/manualpages/Sys/PetscBool.html#PetscBool">PetscBool</a>)</font></strong>;
<a name="line273">273: </a><strong><font color="#4169E1">SLEPC_EXTERN <a href="https://petsc.org/release/docs/manualpages/Sys/PetscErrorCode.html#PetscErrorCode">PetscErrorCode</a> <a href="../docs/manualpages/SVD/SVDTRLanczosGetExplicitMatrix.html#SVDTRLanczosGetExplicitMatrix">SVDTRLanczosGetExplicitMatrix</a>(<a href="../docs/manualpages/SVD/SVD.html#SVD">SVD</a>,<a href="https://petsc.org/release/docs/manualpages/Sys/PetscBool.html#PetscBool">PetscBool</a>*)</font></strong>;
<a name="line274">274: </a><strong><font color="#4169E1">SLEPC_EXTERN <a href="https://petsc.org/release/docs/manualpages/Sys/PetscErrorCode.html#PetscErrorCode">PetscErrorCode</a> <a href="../docs/manualpages/SVD/SVDTRLanczosSetScale.html#SVDTRLanczosSetScale">SVDTRLanczosSetScale</a>(<a href="../docs/manualpages/SVD/SVD.html#SVD">SVD</a>,<a href="https://petsc.org/release/docs/manualpages/Sys/PetscReal.html#PetscReal">PetscReal</a>)</font></strong>;
<a name="line275">275: </a><strong><font color="#4169E1">SLEPC_EXTERN <a href="https://petsc.org/release/docs/manualpages/Sys/PetscErrorCode.html#PetscErrorCode">PetscErrorCode</a> <a href="../docs/manualpages/SVD/SVDTRLanczosGetScale.html#SVDTRLanczosGetScale">SVDTRLanczosGetScale</a>(<a href="../docs/manualpages/SVD/SVD.html#SVD">SVD</a>,<a href="https://petsc.org/release/docs/manualpages/Sys/PetscReal.html#PetscReal">PetscReal</a>*)</font></strong>;
<a name="line277">277: </a><font color="#B22222">/*E</font>
<a name="line278">278: </a><font color="#B22222"> <a href="../docs/manualpages/SVD/SVDPRIMMEMethod.html#SVDPRIMMEMethod">SVDPRIMMEMethod</a> - determines the <a href="../docs/manualpages/SVD/SVD.html#SVD">SVD</a> method selected in the PRIMME library</font>
<a name="line280">280: </a><font color="#B22222"> Level: advanced</font>
<a name="line282">282: </a><font color="#B22222">.seealso: <a href="../docs/manualpages/SVD/SVDPRIMMESetMethod.html#SVDPRIMMESetMethod">SVDPRIMMESetMethod</a>(), <a href="../docs/manualpages/SVD/SVDPRIMMEGetMethod.html#SVDPRIMMEGetMethod">SVDPRIMMEGetMethod</a>()</font>
<a name="line283">283: </a><font color="#B22222">E*/</font>
<a name="line284">284: </a><font color="#4169E1">typedef</font> <font color="#4169E1">enum</font> { <a href="../docs/manualpages/SVD/SVDPRIMMEMethod.html#SVDPRIMMEMethod">SVD_PRIMME_HYBRID</a>=1,
<a name="line285">285: </a> <a href="../docs/manualpages/SVD/SVDPRIMMEMethod.html#SVDPRIMMEMethod">SVD_PRIMME_NORMALEQUATIONS</a>,
<a name="line286">286: </a> <a href="../docs/manualpages/SVD/SVDPRIMMEMethod.html#SVDPRIMMEMethod">SVD_PRIMME_AUGMENTED</a> } <a href="../docs/manualpages/SVD/SVDPRIMMEMethod.html#SVDPRIMMEMethod">SVDPRIMMEMethod</a>;
<a name="line287">287: </a>SLEPC_EXTERN const char *SVDPRIMMEMethods[];
<a name="line289">289: </a><strong><font color="#4169E1">SLEPC_EXTERN <a href="https://petsc.org/release/docs/manualpages/Sys/PetscErrorCode.html#PetscErrorCode">PetscErrorCode</a> <a href="../docs/manualpages/SVD/SVDPRIMMESetBlockSize.html#SVDPRIMMESetBlockSize">SVDPRIMMESetBlockSize</a>(<a href="../docs/manualpages/SVD/SVD.html#SVD">SVD</a>,<a href="https://petsc.org/release/docs/manualpages/Sys/PetscInt.html#PetscInt">PetscInt</a>)</font></strong>;
<a name="line290">290: </a><strong><font color="#4169E1">SLEPC_EXTERN <a href="https://petsc.org/release/docs/manualpages/Sys/PetscErrorCode.html#PetscErrorCode">PetscErrorCode</a> <a href="../docs/manualpages/SVD/SVDPRIMMEGetBlockSize.html#SVDPRIMMEGetBlockSize">SVDPRIMMEGetBlockSize</a>(<a href="../docs/manualpages/SVD/SVD.html#SVD">SVD</a>,<a href="https://petsc.org/release/docs/manualpages/Sys/PetscInt.html#PetscInt">PetscInt</a>*)</font></strong>;
<a name="line291">291: </a><strong><font color="#4169E1">SLEPC_EXTERN <a href="https://petsc.org/release/docs/manualpages/Sys/PetscErrorCode.html#PetscErrorCode">PetscErrorCode</a> <a href="../docs/manualpages/SVD/SVDPRIMMESetMethod.html#SVDPRIMMESetMethod">SVDPRIMMESetMethod</a>(<a href="../docs/manualpages/SVD/SVD.html#SVD">SVD</a>,<a href="../docs/manualpages/SVD/SVDPRIMMEMethod.html#SVDPRIMMEMethod">SVDPRIMMEMethod</a>)</font></strong>;
<a name="line292">292: </a><strong><font color="#4169E1">SLEPC_EXTERN <a href="https://petsc.org/release/docs/manualpages/Sys/PetscErrorCode.html#PetscErrorCode">PetscErrorCode</a> <a href="../docs/manualpages/SVD/SVDPRIMMEGetMethod.html#SVDPRIMMEGetMethod">SVDPRIMMEGetMethod</a>(<a href="../docs/manualpages/SVD/SVD.html#SVD">SVD</a>,<a href="../docs/manualpages/SVD/SVDPRIMMEMethod.html#SVDPRIMMEMethod">SVDPRIMMEMethod</a>*)</font></strong>;
<a name="line294">294: </a><font color="#A020F0">#endif</font>
</pre>
</body>
</html>
|