GCC Code Coverage Report


Directory: ./
File: include/slepc/private/epsimpl.h
Date: 2026-01-12 03:57:26
Exec Total Coverage
Lines: 129 138 93.5%
Functions: 5 5 100.0%
Branches: 373 612 60.9%

Line Branch Exec Source
1 /*
2 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
3 SLEPc - Scalable Library for Eigenvalue Problem Computations
4 Copyright (c) 2002-, Universitat Politecnica de Valencia, Spain
5
6 This file is part of SLEPc.
7 SLEPc is distributed under a 2-clause BSD license (see LICENSE).
8 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
9 */
10
11 #pragma once
12
13 #include <slepceps.h>
14 #include <slepc/private/bvimpl.h>
15
16 /* SUBMANSEC = EPS */
17
18 SLEPC_EXTERN PetscBool EPSRegisterAllCalled;
19 SLEPC_EXTERN PetscBool EPSMonitorRegisterAllCalled;
20 SLEPC_EXTERN PetscErrorCode EPSRegisterAll(void);
21 SLEPC_EXTERN PetscErrorCode EPSMonitorRegisterAll(void);
22 SLEPC_EXTERN PetscLogEvent EPS_SetUp,EPS_Solve,EPS_CISS_SVD;
23
24 typedef struct _EPSOps *EPSOps;
25
26 struct _EPSOps {
27 PetscErrorCode (*solve)(EPS);
28 PetscErrorCode (*setup)(EPS);
29 PetscErrorCode (*setupsort)(EPS);
30 PetscErrorCode (*setfromoptions)(EPS,PetscOptionItems);
31 PetscErrorCode (*publishoptions)(EPS);
32 PetscErrorCode (*destroy)(EPS);
33 PetscErrorCode (*reset)(EPS);
34 PetscErrorCode (*view)(EPS,PetscViewer);
35 PetscErrorCode (*backtransform)(EPS);
36 PetscErrorCode (*computevectors)(EPS);
37 PetscErrorCode (*setdefaultst)(EPS);
38 PetscErrorCode (*setdstype)(EPS);
39 };
40
41 /*
42 Maximum number of monitors you can run with a single EPS
43 */
44 #define MAXEPSMONITORS 5
45
46 /*
47 The solution process goes through several states
48 */
49 typedef enum { EPS_STATE_INITIAL,
50 EPS_STATE_SETUP,
51 EPS_STATE_SOLVED,
52 EPS_STATE_EIGENVECTORS } EPSStateType;
53
54 /*
55 To classify the different solvers into categories
56 */
57 typedef enum { EPS_CATEGORY_KRYLOV, /* Krylov solver: relies on STApply and STBackTransform (same as OTHER) */
58 EPS_CATEGORY_PRECOND, /* Preconditioned solver: uses ST only to manage preconditioner */
59 EPS_CATEGORY_CONTOUR, /* Contour integral: ST used to solve linear systems at integration points */
60 EPS_CATEGORY_OTHER } EPSSolverType;
61
62 /*
63 To check for unsupported features at EPSSetUp_XXX()
64 */
65 typedef enum { EPS_FEATURE_BALANCE=1, /* balancing */
66 EPS_FEATURE_ARBITRARY=2, /* arbitrary selection of eigepairs */
67 EPS_FEATURE_REGION=4, /* nontrivial region for filtering */
68 EPS_FEATURE_EXTRACTION=8, /* extraction technique different from Ritz */
69 EPS_FEATURE_CONVERGENCE=16, /* convergence test selected by user */
70 EPS_FEATURE_STOPPING=32, /* stopping test */
71 EPS_FEATURE_THRESHOLD=64, /* threshold stopping test */
72 EPS_FEATURE_TWOSIDED=128 /* two-sided variant */
73 } EPSFeatureType;
74
75 /*
76 Defines the EPS data structure
77 */
78 struct _p_EPS {
79 PETSCHEADER(struct _EPSOps);
80 /*------------------------- User parameters ---------------------------*/
81 PetscInt max_it; /* maximum number of iterations */
82 PetscInt nev; /* number of eigenvalues to compute */
83 PetscInt ncv; /* number of basis vectors */
84 PetscInt mpd; /* maximum dimension of projected problem */
85 PetscInt nini,ninil; /* number of initial vectors (negative means not copied yet) */
86 PetscInt nds; /* number of basis vectors of deflation space */
87 PetscScalar target; /* target value */
88 PetscReal tol; /* tolerance */
89 PetscReal thres; /* threshold */
90 PetscBool threlative; /* threshold is relative */
91 EPSConv conv; /* convergence test */
92 EPSStop stop; /* stopping test */
93 EPSWhich which; /* which part of the spectrum to be sought */
94 PetscReal inta,intb; /* interval [a,b] for spectrum slicing */
95 EPSProblemType problem_type; /* which kind of problem to be solved */
96 EPSExtraction extraction; /* which kind of extraction to be applied */
97 EPSBalance balance; /* the balancing method */
98 PetscInt balance_its; /* number of iterations of the balancing method */
99 PetscReal balance_cutoff; /* cutoff value for balancing */
100 PetscBool trueres; /* whether the true residual norm must be computed */
101 PetscBool trackall; /* whether all the residuals must be computed */
102 PetscBool purify; /* whether eigenvectors need to be purified */
103 PetscBool twosided; /* whether to compute left eigenvectors (two-sided solver) */
104
105 /*-------------- User-provided functions and contexts -----------------*/
106 EPSConvergenceTestFn *converged;
107 EPSConvergenceTestFn *convergeduser;
108 PetscCtxDestroyFn *convergeddestroy;
109 EPSStoppingTestFn *stopping;
110 EPSStoppingTestFn *stoppinguser;
111 PetscCtxDestroyFn *stoppingdestroy;
112 SlepcArbitrarySelectionFn *arbitrary;
113 PetscCtxDestroyFn *arbitrarydestroy;
114 void *convergedctx;
115 void *stoppingctx;
116 void *arbitraryctx;
117 EPSMonitorFn *monitor[MAXEPSMONITORS];
118 PetscCtxDestroyFn *monitordestroy[MAXEPSMONITORS];
119 void *monitorcontext[MAXEPSMONITORS];
120 PetscInt numbermonitors;
121
122 /*----------------- Child objects and working data -------------------*/
123 ST st; /* spectral transformation object */
124 DS ds; /* direct solver object */
125 BV V; /* set of basis vectors and computed eigenvectors */
126 BV W; /* left basis vectors (if left eigenvectors requested) */
127 RG rg; /* optional region for filtering */
128 SlepcSC sc; /* sorting criterion data */
129 Vec D; /* diagonal matrix for balancing */
130 Vec *IS,*ISL; /* references to user-provided initial spaces */
131 Vec *defl; /* references to user-provided deflation space */
132 PetscScalar *eigr,*eigi; /* real and imaginary parts of eigenvalues */
133 PetscReal *errest; /* error estimates */
134 PetscScalar *rr,*ri; /* values computed by user's arbitrary selection function */
135 PetscInt *perm; /* permutation for eigenvalue ordering */
136 PetscInt nwork; /* number of work vectors */
137 Vec *work; /* work vectors */
138 void *data; /* placeholder for solver-specific stuff */
139
140 /* ----------------------- Status variables --------------------------*/
141 EPSStateType state; /* initial -> setup -> solved -> eigenvectors */
142 EPSSolverType categ; /* solver category */
143 PetscInt nconv; /* number of converged eigenvalues */
144 PetscInt its; /* number of iterations so far computed */
145 PetscInt n,nloc; /* problem dimensions (global, local) */
146 PetscReal nrma,nrmb; /* computed matrix norms */
147 PetscBool useds; /* whether the solver uses the DS object or not */
148 PetscBool isgeneralized;
149 PetscBool ispositive;
150 PetscBool ishermitian;
151 PetscBool isstructured;
152 EPSConvergedReason reason;
153 };
154
155 /*
156 Macros to test valid EPS arguments
157 */
158 #if !defined(PETSC_USE_DEBUG)
159
160 #define EPSCheckSolved(h,arg) do {(void)(h);} while (0)
161
162 #else
163
164 #define EPSCheckSolved(h,arg) \
165 do { \
166 PetscCheck((h)->state>=EPS_STATE_SOLVED,PetscObjectComm((PetscObject)(h)),PETSC_ERR_ARG_WRONGSTATE,"Must call EPSSolve() first: Parameter #%d",arg); \
167 } while (0)
168
169 #endif
170
171 /*
172 Macros to check settings at EPSSetUp()
173 */
174
175 /* EPSCheckHermitianDefinite: the problem is HEP or GHEP */
176 #define EPSCheckHermitianDefiniteCondition(eps,condition,msg) \
177 do { \
178 if (condition) { \
179 PetscCheck((eps)->ishermitian,PetscObjectComm((PetscObject)(eps)),PETSC_ERR_SUP,"The solver '%s'%s cannot be used for non-%s problems",((PetscObject)(eps))->type_name,(msg),SLEPC_STRING_HERMITIAN); \
180 PetscCheck(!(eps)->isgeneralized || (eps)->ispositive,PetscObjectComm((PetscObject)(eps)),PETSC_ERR_SUP,"The solver '%s'%s requires that the problem is %s-definite",((PetscObject)(eps))->type_name,(msg),SLEPC_STRING_HERMITIAN); \
181 } \
182 } while (0)
183 #define EPSCheckHermitianDefinite(eps) EPSCheckHermitianDefiniteCondition(eps,PETSC_TRUE,"")
184
185 /* EPSCheckHermitian: the problem is HEP, GHEP, or GHIEP */
186 #define EPSCheckHermitianCondition(eps,condition,msg) \
187 do { \
188 if (condition) { \
189 PetscCheck((eps)->ishermitian,PetscObjectComm((PetscObject)(eps)),PETSC_ERR_SUP,"The solver '%s'%s cannot be used for non-%s problems",((PetscObject)(eps))->type_name,(msg),SLEPC_STRING_HERMITIAN); \
190 } \
191 } while (0)
192 #define EPSCheckHermitian(eps) EPSCheckHermitianCondition(eps,PETSC_TRUE,"")
193
194 /* EPSCheckDefinite: the problem is not GHIEP */
195 #define EPSCheckDefiniteCondition(eps,condition,msg) \
196 do { \
197 if (condition) { \
198 PetscCheck(!(eps)->isgeneralized || !(eps)->ishermitian || (eps)->ispositive,PetscObjectComm((PetscObject)(eps)),PETSC_ERR_SUP,"The solver '%s'%s cannot be used for %s-indefinite problems",((PetscObject)(eps))->type_name,(msg),SLEPC_STRING_HERMITIAN); \
199 } \
200 } while (0)
201 #define EPSCheckDefinite(eps) EPSCheckDefiniteCondition(eps,PETSC_TRUE,"")
202
203 /* EPSCheckStandard: the problem is HEP or NHEP */
204 #define EPSCheckStandardCondition(eps,condition,msg) \
205 do { \
206 if (condition) { \
207 PetscCheck(!(eps)->isgeneralized,PetscObjectComm((PetscObject)(eps)),PETSC_ERR_SUP,"The solver '%s'%s cannot be used for generalized problems",((PetscObject)(eps))->type_name,(msg)); \
208 } \
209 } while (0)
210 #define EPSCheckStandard(eps) EPSCheckStandardCondition(eps,PETSC_TRUE,"")
211
212 /* EPSCheckNotStructured: the problem is not structured */
213 #define EPSCheckNotStructuredCondition(eps,condition,msg) \
214 do { \
215 if (condition) { \
216 PetscCheck(!(eps)->isstructured,PetscObjectComm((PetscObject)(eps)),PETSC_ERR_SUP,"The solver '%s'%s does not provide support for structured eigenproblems",((PetscObject)(eps))->type_name,(msg)); \
217 } \
218 } while (0)
219 #define EPSCheckNotStructured(eps) EPSCheckNotStructuredCondition(eps,PETSC_TRUE,"")
220
221 /* EPSCheckSinvert: shift-and-invert ST */
222 #define EPSCheckSinvertCondition(eps,condition,msg) \
223 do { \
224 if (condition) { \
225 PetscBool __flg; \
226 PetscCall(PetscObjectTypeCompare((PetscObject)(eps)->st,STSINVERT,&__flg)); \
227 PetscCheck(__flg,PetscObjectComm((PetscObject)(eps)),PETSC_ERR_SUP,"The solver '%s'%s requires a shift-and-invert spectral transform",((PetscObject)(eps))->type_name,(msg)); \
228 } \
229 } while (0)
230 #define EPSCheckSinvert(eps) EPSCheckSinvertCondition(eps,PETSC_TRUE,"")
231
232 /* EPSCheckSinvertCayley: shift-and-invert or Cayley ST */
233 #define EPSCheckSinvertCayleyCondition(eps,condition,msg) \
234 do { \
235 if (condition) { \
236 PetscBool __flg; \
237 PetscCall(PetscObjectTypeCompareAny((PetscObject)(eps)->st,&__flg,STSINVERT,STCAYLEY,"")); \
238 PetscCheck(__flg,PetscObjectComm((PetscObject)(eps)),PETSC_ERR_SUP,"The solver '%s'%s requires shift-and-invert or Cayley transform",((PetscObject)(eps))->type_name,(msg)); \
239 } \
240 } while (0)
241 #define EPSCheckSinvertCayley(eps) EPSCheckSinvertCayleyCondition(eps,PETSC_TRUE,"")
242
243 /* Check for unsupported features */
244 #define EPSCheckUnsupportedCondition(eps,mask,condition,msg) \
245 do { \
246 if (condition) { \
247 PetscCheck(!((mask) & EPS_FEATURE_BALANCE) || (eps)->balance==EPS_BALANCE_NONE,PetscObjectComm((PetscObject)(eps)),PETSC_ERR_SUP,"The solver '%s'%s does not support balancing",((PetscObject)(eps))->type_name,(msg)); \
248 PetscCheck(!((mask) & EPS_FEATURE_ARBITRARY) || !(eps)->arbitrary,PetscObjectComm((PetscObject)(eps)),PETSC_ERR_SUP,"The solver '%s'%s does not support arbitrary selection of eigenpairs",((PetscObject)(eps))->type_name,(msg)); \
249 if ((mask) & EPS_FEATURE_REGION) { \
250 PetscBool __istrivial; \
251 PetscCall(RGIsTrivial((eps)->rg,&__istrivial)); \
252 PetscCheck(__istrivial,PetscObjectComm((PetscObject)(eps)),PETSC_ERR_SUP,"The solver '%s'%s does not support region filtering",((PetscObject)(eps))->type_name,(msg)); \
253 } \
254 PetscCheck(!((mask) & EPS_FEATURE_EXTRACTION) || (eps)->extraction==EPS_RITZ,PetscObjectComm((PetscObject)(eps)),PETSC_ERR_SUP,"The solver '%s'%s only supports Ritz extraction",((PetscObject)(eps))->type_name,(msg)); \
255 PetscCheck(!((mask) & EPS_FEATURE_CONVERGENCE) || (eps)->converged==EPSConvergedRelative,PetscObjectComm((PetscObject)(eps)),PETSC_ERR_SUP,"The solver '%s'%s only supports the default convergence test",((PetscObject)(eps))->type_name,(msg)); \
256 PetscCheck(!((mask) & EPS_FEATURE_STOPPING) || (eps)->stopping==EPSStoppingBasic,PetscObjectComm((PetscObject)(eps)),PETSC_ERR_SUP,"The solver '%s'%s only supports the default stopping test",((PetscObject)(eps))->type_name,(msg)); \
257 PetscCheck(!((mask) & EPS_FEATURE_THRESHOLD) || (eps)->stopping!=EPSStoppingThreshold,PetscObjectComm((PetscObject)(eps)),PETSC_ERR_SUP,"The solver '%s'%s does not support the threshold stopping test",((PetscObject)(eps))->type_name,(msg)); \
258 PetscCheck(!((mask) & EPS_FEATURE_TWOSIDED) || !(eps)->twosided,PetscObjectComm((PetscObject)(eps)),PETSC_ERR_SUP,"The solver '%s'%s cannot compute left eigenvectors (no two-sided variant)",((PetscObject)(eps))->type_name,(msg)); \
259 } \
260 } while (0)
261 #define EPSCheckUnsupported(eps,mask) EPSCheckUnsupportedCondition(eps,mask,PETSC_TRUE,"")
262
263 /* Check for ignored features */
264 #define EPSCheckIgnoredCondition(eps,mask,condition,msg) \
265 do { \
266 if (condition) { \
267 if (((mask) & EPS_FEATURE_BALANCE) && (eps)->balance!=EPS_BALANCE_NONE) PetscCall(PetscInfo((eps),"The solver '%s'%s ignores the balancing settings\n",((PetscObject)(eps))->type_name,(msg))); \
268 if (((mask) & EPS_FEATURE_ARBITRARY) && (eps)->arbitrary) PetscCall(PetscInfo((eps),"The solver '%s'%s ignores the settings for arbitrary selection of eigenpairs\n",((PetscObject)(eps))->type_name,(msg))); \
269 if ((mask) & EPS_FEATURE_REGION) { \
270 PetscBool __istrivial; \
271 PetscCall(RGIsTrivial((eps)->rg,&__istrivial)); \
272 if (!__istrivial) PetscCall(PetscInfo((eps),"The solver '%s'%s ignores the specified region\n",((PetscObject)(eps))->type_name,(msg))); \
273 } \
274 if (((mask) & EPS_FEATURE_EXTRACTION) && (eps)->extraction!=EPS_RITZ) PetscCall(PetscInfo((eps),"The solver '%s'%s ignores the extraction settings\n",((PetscObject)(eps))->type_name,(msg))); \
275 if (((mask) & EPS_FEATURE_CONVERGENCE) && (eps)->converged!=EPSConvergedRelative) PetscCall(PetscInfo((eps),"The solver '%s'%s ignores the convergence test settings\n",((PetscObject)(eps))->type_name,(msg))); \
276 if (((mask) & EPS_FEATURE_STOPPING) && (eps)->stopping!=EPSStoppingBasic) PetscCall(PetscInfo((eps),"The solver '%s'%s ignores the stopping test settings\n",((PetscObject)(eps))->type_name,(msg))); \
277 if (((mask) & EPS_FEATURE_TWOSIDED) && (eps)->twosided) PetscCall(PetscInfo((eps),"The solver '%s'%s ignores the two-sided flag\n",((PetscObject)(eps))->type_name,(msg))); \
278 } \
279 } while (0)
280 #define EPSCheckIgnored(eps,mask) EPSCheckIgnoredCondition(eps,mask,PETSC_TRUE,"")
281
282 /*
283 EPSSetCtxThreshold - Fills EPSStoppingCtx with data needed for the threshold stopping test
284 */
285 #define EPSSetCtxThreshold(eps,eigr,eigi,k) \
286 do { \
287 if (eps->stop==EPS_STOP_THRESHOLD && k) { \
288 PetscScalar __kr=eigr[k-1],__ki=eigi[k-1],__kr0=eigr[0],__ki0=eigi[0]; \
289 PetscCall(STBackTransform(eps->st,1,&__kr,&__ki)); \
290 PetscCall(STBackTransform(eps->st,1,&__kr0,&__ki0)); \
291 if (eps->which==EPS_LARGEST_MAGNITUDE || eps->which==EPS_SMALLEST_MAGNITUDE) { \
292 ((EPSStoppingCtx)eps->stoppingctx)->firstev = SlepcAbsEigenvalue(__kr0,__ki0); \
293 ((EPSStoppingCtx)eps->stoppingctx)->lastev = SlepcAbsEigenvalue(__kr,__ki); \
294 } else { \
295 ((EPSStoppingCtx)eps->stoppingctx)->firstev = PetscRealPart(__kr0); \
296 ((EPSStoppingCtx)eps->stoppingctx)->lastev = PetscRealPart(__kr); \
297 } \
298 } \
299 } while (0)
300
301 /*
302 EPS_SetInnerProduct - set B matrix for inner product if appropriate.
303 */
304 8739 static inline PetscErrorCode EPS_SetInnerProduct(EPS eps)
305 {
306 8739 Mat B;
307
308
1/2
✓ Branch 0 taken 20 times.
✗ Branch 1 not taken.
8739 PetscFunctionBegin;
309
1/8
✗ Branch 0 not taken.
✓ Branch 1 taken 95 times.
✗ Branch 2 not taken.
✗ Branch 3 not taken.
✗ Branch 4 not taken.
✗ Branch 5 not taken.
✗ Branch 6 not taken.
✗ Branch 7 not taken.
8739 if (!eps->V) PetscCall(EPSGetBV(eps,&eps->V));
310
6/6
✓ Branch 0 taken 85 times.
✓ Branch 1 taken 95 times.
✓ Branch 2 taken 30 times.
✓ Branch 3 taken 85 times.
✓ Branch 4 taken 20 times.
✓ Branch 5 taken 30 times.
8739 if (eps->ispositive || (eps->isgeneralized && eps->ishermitian)) {
311
4/6
✓ Branch 0 taken 20 times.
✓ Branch 1 taken 75 times.
✓ Branch 2 taken 20 times.
✗ Branch 3 not taken.
✗ Branch 4 not taken.
✓ Branch 5 taken 20 times.
1438 PetscCall(STGetBilinearForm(eps->st,&B));
312
4/6
✓ Branch 0 taken 20 times.
✓ Branch 1 taken 75 times.
✓ Branch 2 taken 20 times.
✗ Branch 3 not taken.
✗ Branch 4 not taken.
✓ Branch 5 taken 20 times.
1438 PetscCall(BVSetMatrix(eps->V,B,PetscNot(eps->ispositive)));
313
6/8
✓ Branch 0 taken 8 times.
✓ Branch 1 taken 95 times.
✓ Branch 2 taken 2 times.
✓ Branch 3 taken 6 times.
✓ Branch 4 taken 2 times.
✗ Branch 5 not taken.
✗ Branch 6 not taken.
✓ Branch 7 taken 2 times.
1438 if (eps->twosided) PetscCall(BVSetMatrix(eps->W,B,PetscNot(eps->ispositive)));
314
4/6
✓ Branch 0 taken 20 times.
✓ Branch 1 taken 75 times.
✓ Branch 2 taken 20 times.
✗ Branch 3 not taken.
✗ Branch 4 not taken.
✓ Branch 5 taken 20 times.
1438 PetscCall(MatDestroy(&B));
315
4/6
✓ Branch 0 taken 18 times.
✓ Branch 1 taken 67 times.
✓ Branch 2 taken 18 times.
✗ Branch 3 not taken.
✗ Branch 4 not taken.
✓ Branch 5 taken 18 times.
7301 } else PetscCall(BVSetMatrix(eps->V,NULL,PETSC_FALSE));
316
6/12
✓ Branch 0 taken 20 times.
✗ Branch 1 not taken.
✗ Branch 2 not taken.
✓ Branch 3 taken 20 times.
✓ Branch 4 taken 20 times.
✗ Branch 5 not taken.
✓ Branch 6 taken 20 times.
✗ Branch 7 not taken.
✓ Branch 8 taken 20 times.
✗ Branch 9 not taken.
✗ Branch 10 not taken.
✓ Branch 11 taken 20 times.
1687 PetscFunctionReturn(PETSC_SUCCESS);
317 }
318
319 /*
320 EPS_Purify - purify the first k vectors in the V basis
321 */
322 795 static inline PetscErrorCode EPS_Purify(EPS eps,PetscInt k)
323 {
324 795 PetscInt i;
325 795 Vec v,z;
326
327
1/2
✓ Branch 0 taken 2 times.
✗ Branch 1 not taken.
795 PetscFunctionBegin;
328
4/6
✓ Branch 0 taken 2 times.
✓ Branch 1 taken 8 times.
✓ Branch 2 taken 2 times.
✗ Branch 3 not taken.
✗ Branch 4 not taken.
✓ Branch 5 taken 2 times.
795 PetscCall(BVCreateVec(eps->V,&v));
329
2/2
✓ Branch 0 taken 10 times.
✓ Branch 1 taken 10 times.
14633 for (i=0;i<k;i++) {
330
4/6
✓ Branch 0 taken 2 times.
✓ Branch 1 taken 8 times.
✓ Branch 2 taken 2 times.
✗ Branch 3 not taken.
✗ Branch 4 not taken.
✓ Branch 5 taken 2 times.
13838 PetscCall(BVCopyVec(eps->V,i,v));
331
4/6
✓ Branch 0 taken 2 times.
✓ Branch 1 taken 8 times.
✓ Branch 2 taken 2 times.
✗ Branch 3 not taken.
✗ Branch 4 not taken.
✓ Branch 5 taken 2 times.
13838 PetscCall(BVGetColumn(eps->V,i,&z));
332
4/6
✓ Branch 0 taken 2 times.
✓ Branch 1 taken 8 times.
✓ Branch 2 taken 2 times.
✗ Branch 3 not taken.
✗ Branch 4 not taken.
✓ Branch 5 taken 2 times.
13838 PetscCall(STApply(eps->st,v,z));
333
4/6
✓ Branch 0 taken 2 times.
✓ Branch 1 taken 8 times.
✓ Branch 2 taken 2 times.
✗ Branch 3 not taken.
✗ Branch 4 not taken.
✓ Branch 5 taken 2 times.
13838 PetscCall(BVRestoreColumn(eps->V,i,&z));
334 }
335
4/6
✓ Branch 0 taken 2 times.
✓ Branch 1 taken 8 times.
✓ Branch 2 taken 2 times.
✗ Branch 3 not taken.
✗ Branch 4 not taken.
✓ Branch 5 taken 2 times.
795 PetscCall(VecDestroy(&v));
336
6/12
✓ Branch 0 taken 2 times.
✗ Branch 1 not taken.
✗ Branch 2 not taken.
✓ Branch 3 taken 2 times.
✓ Branch 4 taken 2 times.
✗ Branch 5 not taken.
✓ Branch 6 taken 2 times.
✗ Branch 7 not taken.
✓ Branch 8 taken 2 times.
✗ Branch 9 not taken.
✗ Branch 10 not taken.
✓ Branch 11 taken 2 times.
165 PetscFunctionReturn(PETSC_SUCCESS);
337 }
338
339 /*
340 EPS_KSPSetOperators - Sets the KSP matrices, see also ST_KSPSetOperators()
341 */
342 3771 static inline PetscErrorCode EPS_KSPSetOperators(KSP ksp,Mat A,Mat B)
343 {
344 3771 const char *prefix;
345
346
1/2
✓ Branch 0 taken 4 times.
✗ Branch 1 not taken.
3771 PetscFunctionBegin;
347
4/6
✓ Branch 0 taken 4 times.
✓ Branch 1 taken 16 times.
✓ Branch 2 taken 4 times.
✗ Branch 3 not taken.
✗ Branch 4 not taken.
✓ Branch 5 taken 4 times.
3771 PetscCall(KSPSetOperators(ksp,A,B));
348
4/6
✓ Branch 0 taken 4 times.
✓ Branch 1 taken 16 times.
✓ Branch 2 taken 4 times.
✗ Branch 3 not taken.
✗ Branch 4 not taken.
✓ Branch 5 taken 4 times.
3771 PetscCall(MatGetOptionsPrefix(B,&prefix));
349
1/2
✓ Branch 0 taken 20 times.
✗ Branch 1 not taken.
3771 if (!prefix) {
350 /* set Mat prefix to be the same as KSP to enable setting command-line options (e.g. MUMPS)
351 only applies if the Mat has no user-defined prefix */
352
4/6
✓ Branch 0 taken 4 times.
✓ Branch 1 taken 16 times.
✓ Branch 2 taken 4 times.
✗ Branch 3 not taken.
✗ Branch 4 not taken.
✓ Branch 5 taken 4 times.
3771 PetscCall(KSPGetOptionsPrefix(ksp,&prefix));
353
4/6
✓ Branch 0 taken 4 times.
✓ Branch 1 taken 16 times.
✓ Branch 2 taken 4 times.
✗ Branch 3 not taken.
✗ Branch 4 not taken.
✓ Branch 5 taken 4 times.
3771 PetscCall(MatSetOptionsPrefix(B,prefix));
354 }
355
6/12
✓ Branch 0 taken 4 times.
✗ Branch 1 not taken.
✗ Branch 2 not taken.
✓ Branch 3 taken 4 times.
✓ Branch 4 taken 4 times.
✗ Branch 5 not taken.
✓ Branch 6 taken 4 times.
✗ Branch 7 not taken.
✓ Branch 8 taken 4 times.
✗ Branch 9 not taken.
✗ Branch 10 not taken.
✓ Branch 11 taken 4 times.
803 PetscFunctionReturn(PETSC_SUCCESS);
356 }
357
358 /*
359 EPS_GetActualConverged - Gets the actual value of nconv; in special cases the
360 number of available eigenvalues is larger than the computed ones
361 */
362 259243 static inline PetscErrorCode EPS_GetActualConverged(EPS eps,PetscInt *nconv)
363 {
364
1/2
✓ Branch 0 taken 4 times.
✗ Branch 1 not taken.
259243 PetscFunctionBegin;
365 259243 *nconv = eps->nconv;
366
2/2
✓ Branch 0 taken 20 times.
✓ Branch 1 taken 20 times.
259243 if (eps->isstructured) {
367
3/4
✓ Branch 0 taken 20 times.
✓ Branch 1 taken 10 times.
✓ Branch 2 taken 20 times.
✗ Branch 3 not taken.
20311 if (eps->problem_type == EPS_BSE && (eps->which == EPS_SMALLEST_MAGNITUDE || eps->which == EPS_LARGEST_MAGNITUDE || eps->which == EPS_TARGET_MAGNITUDE)) *nconv *= 2;
368
3/4
✓ Branch 0 taken 10 times.
✓ Branch 1 taken 20 times.
✓ Branch 2 taken 10 times.
✗ Branch 3 not taken.
20311 if (eps->problem_type == EPS_HAMILT && (eps->which == EPS_SMALLEST_MAGNITUDE || eps->which == EPS_LARGEST_MAGNITUDE || eps->which == EPS_TARGET_MAGNITUDE)) *nconv *= 2;
369 }
370
6/12
✓ Branch 0 taken 4 times.
✗ Branch 1 not taken.
✗ Branch 2 not taken.
✓ Branch 3 taken 4 times.
✓ Branch 4 taken 4 times.
✗ Branch 5 not taken.
✓ Branch 6 taken 4 times.
✗ Branch 7 not taken.
✓ Branch 8 taken 4 times.
✗ Branch 9 not taken.
✗ Branch 10 not taken.
✓ Branch 11 taken 4 times.
259243 PetscFunctionReturn(PETSC_SUCCESS);
371 }
372
373 /*
374 EPS_GetEigenvector - Gets the i-th eigenvector taking into account the case
375 where i exceeds the number of computed vectors (structure-preserving solver).
376 The argument V should be eps->V for right eigenvectors, eps->W for left ones.
377 */
378 84439 static inline PetscErrorCode EPS_GetEigenvector(EPS eps,BV V,PetscInt i,Vec Vr,Vec Vi)
379 {
380 84439 PetscInt k;
381 84439 Vec v0,v1,w,w0,w1;
382 84439 Mat H;
383 84439 IS is[2];
384 #if !defined(PETSC_USE_COMPLEX)
385 45431 PetscInt k0,k1,k2,iquad;
386 45431 PetscReal nrm,nrmr=0.0,nrmi=0.0,sgn;
387 #endif
388
389
1/2
✓ Branch 0 taken 2 times.
✗ Branch 1 not taken.
84439 PetscFunctionBegin;
390
2/2
✓ Branch 0 taken 10 times.
✓ Branch 1 taken 10 times.
84439 if (!eps->isstructured) {
391 74119 k = eps->perm[i];
392
4/6
✓ Branch 0 taken 2 times.
✓ Branch 1 taken 8 times.
✓ Branch 2 taken 2 times.
✗ Branch 3 not taken.
✗ Branch 4 not taken.
✓ Branch 5 taken 2 times.
74119 PetscCall(BV_GetEigenvector(V,k,eps->eigi[k],Vr,Vi));
393 } else {
394
3/4
✓ Branch 0 taken 10 times.
✓ Branch 1 taken 5 times.
✓ Branch 2 taken 10 times.
✗ Branch 3 not taken.
10320 if (eps->problem_type == EPS_BSE && (eps->which == EPS_SMALLEST_MAGNITUDE || eps->which == EPS_LARGEST_MAGNITUDE || eps->which == EPS_TARGET_MAGNITUDE)) {
395 /* BSE problem, even index is +lambda, odd index is -lambda */
396 10060 k = eps->perm[i/2];
397
2/2
✓ Branch 0 taken 10 times.
✓ Branch 1 taken 10 times.
10060 if (i%2) {
398 /* eigenvector of -lambda is J*conj(X) where J=[0 I; I 0] and x is eigenvector of lambda */
399
6/8
✓ Branch 0 taken 2 times.
✓ Branch 1 taken 8 times.
✓ Branch 2 taken 2 times.
✓ Branch 3 taken 8 times.
✗ Branch 4 not taken.
✓ Branch 5 taken 2 times.
✗ Branch 6 not taken.
✓ Branch 7 taken 2 times.
5030 PetscCall(VecDuplicate(Vr?Vr:Vi,&w));
400
4/6
✓ Branch 0 taken 2 times.
✓ Branch 1 taken 8 times.
✓ Branch 2 taken 2 times.
✗ Branch 3 not taken.
✗ Branch 4 not taken.
✓ Branch 5 taken 2 times.
5030 PetscCall(STGetMatrix(eps->st,0,&H));
401
4/6
✓ Branch 0 taken 2 times.
✓ Branch 1 taken 8 times.
✓ Branch 2 taken 2 times.
✗ Branch 3 not taken.
✗ Branch 4 not taken.
✓ Branch 5 taken 2 times.
5030 PetscCall(MatNestGetISs(H,is,NULL));
402
1/2
✓ Branch 0 taken 10 times.
✗ Branch 1 not taken.
5030 if (Vr) {
403
4/6
✓ Branch 0 taken 2 times.
✓ Branch 1 taken 8 times.
✓ Branch 2 taken 2 times.
✗ Branch 3 not taken.
✗ Branch 4 not taken.
✓ Branch 5 taken 2 times.
5030 PetscCall(BV_GetEigenvector(V,k,eps->eigi[k],w,NULL));
404
4/6
✓ Branch 0 taken 2 times.
✓ Branch 1 taken 8 times.
✓ Branch 2 taken 2 times.
✗ Branch 3 not taken.
✗ Branch 4 not taken.
✓ Branch 5 taken 2 times.
5030 PetscCall(VecConjugate(w));
405
4/6
✓ Branch 0 taken 2 times.
✓ Branch 1 taken 8 times.
✓ Branch 2 taken 2 times.
✗ Branch 3 not taken.
✗ Branch 4 not taken.
✓ Branch 5 taken 2 times.
5030 PetscCall(VecGetSubVector(w,is[0],&w0));
406
4/6
✓ Branch 0 taken 2 times.
✓ Branch 1 taken 8 times.
✓ Branch 2 taken 2 times.
✗ Branch 3 not taken.
✗ Branch 4 not taken.
✓ Branch 5 taken 2 times.
5030 PetscCall(VecGetSubVector(w,is[1],&w1));
407
4/6
✓ Branch 0 taken 2 times.
✓ Branch 1 taken 8 times.
✓ Branch 2 taken 2 times.
✗ Branch 3 not taken.
✗ Branch 4 not taken.
✓ Branch 5 taken 2 times.
5030 PetscCall(VecGetSubVector(Vr,is[0],&v0));
408
4/6
✓ Branch 0 taken 2 times.
✓ Branch 1 taken 8 times.
✓ Branch 2 taken 2 times.
✗ Branch 3 not taken.
✗ Branch 4 not taken.
✓ Branch 5 taken 2 times.
5030 PetscCall(VecGetSubVector(Vr,is[1],&v1));
409
4/6
✓ Branch 0 taken 2 times.
✓ Branch 1 taken 8 times.
✓ Branch 2 taken 2 times.
✗ Branch 3 not taken.
✗ Branch 4 not taken.
✓ Branch 5 taken 2 times.
5030 PetscCall(VecCopy(w1,v0));
410
4/6
✓ Branch 0 taken 2 times.
✓ Branch 1 taken 8 times.
✓ Branch 2 taken 2 times.
✗ Branch 3 not taken.
✗ Branch 4 not taken.
✓ Branch 5 taken 2 times.
5030 PetscCall(VecCopy(w0,v1));
411
4/6
✓ Branch 0 taken 2 times.
✓ Branch 1 taken 8 times.
✓ Branch 2 taken 2 times.
✗ Branch 3 not taken.
✗ Branch 4 not taken.
✓ Branch 5 taken 2 times.
5030 PetscCall(VecRestoreSubVector(w,is[0],&w0));
412
4/6
✓ Branch 0 taken 2 times.
✓ Branch 1 taken 8 times.
✓ Branch 2 taken 2 times.
✗ Branch 3 not taken.
✗ Branch 4 not taken.
✓ Branch 5 taken 2 times.
5030 PetscCall(VecRestoreSubVector(w,is[1],&w1));
413
4/6
✓ Branch 0 taken 2 times.
✓ Branch 1 taken 8 times.
✓ Branch 2 taken 2 times.
✗ Branch 3 not taken.
✗ Branch 4 not taken.
✓ Branch 5 taken 2 times.
5030 PetscCall(VecRestoreSubVector(Vr,is[0],&v0));
414
4/6
✓ Branch 0 taken 2 times.
✓ Branch 1 taken 8 times.
✓ Branch 2 taken 2 times.
✗ Branch 3 not taken.
✗ Branch 4 not taken.
✓ Branch 5 taken 2 times.
5030 PetscCall(VecRestoreSubVector(Vr,is[1],&v1));
415 }
416 #if !defined(PETSC_USE_COMPLEX)
417
2/2
✓ Branch 0 taken 5 times.
✓ Branch 1 taken 5 times.
2446 if (Vi) {
418
4/6
✓ Branch 0 taken 1 times.
✓ Branch 1 taken 4 times.
✓ Branch 2 taken 1 times.
✗ Branch 3 not taken.
✗ Branch 4 not taken.
✓ Branch 5 taken 1 times.
678 PetscCall(BV_GetEigenvector(V,k,eps->eigi[k],NULL,w));
419
4/6
✓ Branch 0 taken 1 times.
✓ Branch 1 taken 4 times.
✓ Branch 2 taken 1 times.
✗ Branch 3 not taken.
✗ Branch 4 not taken.
✓ Branch 5 taken 1 times.
678 PetscCall(VecScale(w,-1.0));
420
4/6
✓ Branch 0 taken 1 times.
✓ Branch 1 taken 4 times.
✓ Branch 2 taken 1 times.
✗ Branch 3 not taken.
✗ Branch 4 not taken.
✓ Branch 5 taken 1 times.
678 PetscCall(VecGetSubVector(w,is[0],&w0));
421
4/6
✓ Branch 0 taken 1 times.
✓ Branch 1 taken 4 times.
✓ Branch 2 taken 1 times.
✗ Branch 3 not taken.
✗ Branch 4 not taken.
✓ Branch 5 taken 1 times.
678 PetscCall(VecGetSubVector(w,is[1],&w1));
422
4/6
✓ Branch 0 taken 1 times.
✓ Branch 1 taken 4 times.
✓ Branch 2 taken 1 times.
✗ Branch 3 not taken.
✗ Branch 4 not taken.
✓ Branch 5 taken 1 times.
678 PetscCall(VecGetSubVector(Vi,is[0],&v0));
423
4/6
✓ Branch 0 taken 1 times.
✓ Branch 1 taken 4 times.
✓ Branch 2 taken 1 times.
✗ Branch 3 not taken.
✗ Branch 4 not taken.
✓ Branch 5 taken 1 times.
678 PetscCall(VecGetSubVector(Vi,is[1],&v1));
424
4/6
✓ Branch 0 taken 1 times.
✓ Branch 1 taken 4 times.
✓ Branch 2 taken 1 times.
✗ Branch 3 not taken.
✗ Branch 4 not taken.
✓ Branch 5 taken 1 times.
678 PetscCall(VecCopy(w1,v0));
425
4/6
✓ Branch 0 taken 1 times.
✓ Branch 1 taken 4 times.
✓ Branch 2 taken 1 times.
✗ Branch 3 not taken.
✗ Branch 4 not taken.
✓ Branch 5 taken 1 times.
678 PetscCall(VecCopy(w0,v1));
426
4/6
✓ Branch 0 taken 1 times.
✓ Branch 1 taken 4 times.
✓ Branch 2 taken 1 times.
✗ Branch 3 not taken.
✗ Branch 4 not taken.
✓ Branch 5 taken 1 times.
678 PetscCall(VecRestoreSubVector(w,is[0],&w0));
427
4/6
✓ Branch 0 taken 1 times.
✓ Branch 1 taken 4 times.
✓ Branch 2 taken 1 times.
✗ Branch 3 not taken.
✗ Branch 4 not taken.
✓ Branch 5 taken 1 times.
678 PetscCall(VecRestoreSubVector(w,is[1],&w1));
428
4/6
✓ Branch 0 taken 1 times.
✓ Branch 1 taken 4 times.
✓ Branch 2 taken 1 times.
✗ Branch 3 not taken.
✗ Branch 4 not taken.
✓ Branch 5 taken 1 times.
678 PetscCall(VecRestoreSubVector(Vi,is[0],&v0));
429
4/6
✓ Branch 0 taken 1 times.
✓ Branch 1 taken 4 times.
✓ Branch 2 taken 1 times.
✗ Branch 3 not taken.
✗ Branch 4 not taken.
✓ Branch 5 taken 1 times.
678 PetscCall(VecRestoreSubVector(Vi,is[1],&v1));
430 }
431 #endif
432
4/6
✓ Branch 0 taken 2 times.
✓ Branch 1 taken 8 times.
✓ Branch 2 taken 2 times.
✗ Branch 3 not taken.
✗ Branch 4 not taken.
✓ Branch 5 taken 2 times.
5030 PetscCall(VecDestroy(&w));
433 } else {
434
4/6
✓ Branch 0 taken 2 times.
✓ Branch 1 taken 8 times.
✓ Branch 2 taken 2 times.
✗ Branch 3 not taken.
✗ Branch 4 not taken.
✓ Branch 5 taken 2 times.
5030 PetscCall(BV_GetEigenvector(V,k,eps->eigi[k],Vr,Vi));
435 }
436
1/2
✓ Branch 0 taken 5 times.
✗ Branch 1 not taken.
260 } else if (eps->problem_type == EPS_HAMILT) {
437 39268 k = eps->perm[i/2];
438 #if !defined(PETSC_USE_COMPLEX)
439
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 5 times.
260 if (eps->eigi[k]==0.0) { /* real eigenvalue */
440 if (Vr) {
441 PetscCall(BVCopyVec(V,k+eps->ncv/2+1,Vr));
442 PetscCall(BVGetColumn(V,k,&w));
443 PetscCall(VecAXPY(Vr,(i%2)?-eps->eigr[k]:eps->eigr[k],w));
444 PetscCall(BVRestoreColumn(V,k,&w));
445 PetscCall(VecNorm(Vr,NORM_2,&nrmr));
446 }
447 if (Vi) PetscCall(VecZeroEntries(Vi));
448 nrm = nrmr;
449
2/2
✓ Branch 0 taken 5 times.
✓ Branch 1 taken 5 times.
260 } else if (eps->eigr[k]==0.0 ) { /* purely imaginary eigenvalue */
450
1/2
✓ Branch 0 taken 5 times.
✗ Branch 1 not taken.
60 if (Vr) {
451
4/6
✓ Branch 0 taken 1 times.
✓ Branch 1 taken 4 times.
✓ Branch 2 taken 1 times.
✗ Branch 3 not taken.
✗ Branch 4 not taken.
✓ Branch 5 taken 1 times.
60 PetscCall(BVCopyVec(V,k+eps->ncv/2+1,Vr));
452
4/6
✓ Branch 0 taken 1 times.
✓ Branch 1 taken 4 times.
✓ Branch 2 taken 1 times.
✗ Branch 3 not taken.
✗ Branch 4 not taken.
✓ Branch 5 taken 1 times.
60 PetscCall(VecNorm(Vr,NORM_2,&nrmr));
453 }
454
1/2
✓ Branch 0 taken 5 times.
✗ Branch 1 not taken.
60 if (Vi) {
455
4/6
✓ Branch 0 taken 1 times.
✓ Branch 1 taken 4 times.
✓ Branch 2 taken 1 times.
✗ Branch 3 not taken.
✗ Branch 4 not taken.
✓ Branch 5 taken 1 times.
60 PetscCall(BVCopyVec(V,k,Vi));
456
7/8
✓ Branch 0 taken 5 times.
✓ Branch 1 taken 4 times.
✓ Branch 2 taken 1 times.
✓ Branch 3 taken 4 times.
✓ Branch 4 taken 1 times.
✓ Branch 5 taken 1 times.
✗ Branch 6 not taken.
✓ Branch 7 taken 1 times.
60 PetscCall(VecScale(Vi,(i%2)?-eps->eigi[k]:eps->eigi[k]));
457
4/6
✓ Branch 0 taken 1 times.
✓ Branch 1 taken 4 times.
✓ Branch 2 taken 1 times.
✗ Branch 3 not taken.
✗ Branch 4 not taken.
✓ Branch 5 taken 1 times.
60 PetscCall(VecNorm(Vi,NORM_2,&nrmi));
458 }
459 60 nrm = SlepcAbs(nrmr,nrmi);
460 } else { /* quadruple eigenvalue (-conj(lambda),-lambda,lambda,conj(lambda)) */
461 200 iquad = i%2; /* index within the 4 values */
462
2/2
✓ Branch 0 taken 5 times.
✓ Branch 1 taken 5 times.
200 if (i>=2) {
463 160 k2 = eps->perm[(i-2)/2];
464
3/4
✓ Branch 0 taken 5 times.
✓ Branch 1 taken 5 times.
✓ Branch 2 taken 5 times.
✗ Branch 3 not taken.
160 if (eps->eigr[k]==eps->eigr[k2] && eps->eigi[k]==-eps->eigi[k2]) iquad += 2;
465 }
466
2/2
✓ Branch 0 taken 5 times.
✓ Branch 1 taken 5 times.
160 k0 = (iquad<2)? k: k2;
467 200 k1 = k0+1;
468 /* Vr+Vi*i obtained as eig*u+v where u=ur+ui*i is stored in cols k0 (ur) and k1 (ui) and
469 v=vr+vi*i is in cols shifted by ncv/2+1.
470 For lambda=eigr+eigi*i:
471 Vr+Vi*i = (eigr+eigi*i)(ur+ui*i) + vr+vi*i
472 Vr+Vi*i = eigr*(ur+ui*i) - eigi*ui+eigi*ur*i + vr+vi*i
473 Vr+Vi*i = eigr*ur-eigi*ui+vr + (eigi*ur+eigr*ui+vi)*i
474 For -conj(lambda): eigr, ui and vi have the signs changed
475 For -lambda: eigr and eigi have the signs changed
476 For conj(lambda): eigi, ui and vi have the signs changed */
477
1/2
✓ Branch 0 taken 5 times.
✗ Branch 1 not taken.
200 if (Vr) {
478
2/2
✓ Branch 0 taken 5 times.
✓ Branch 1 taken 5 times.
200 sgn = (iquad<2)? -1.0: 1.0;
479
4/6
✓ Branch 0 taken 1 times.
✓ Branch 1 taken 4 times.
✓ Branch 2 taken 1 times.
✗ Branch 3 not taken.
✗ Branch 4 not taken.
✓ Branch 5 taken 1 times.
200 PetscCall(BVCopyVec(V,k0,Vr)); /* ur */
480
4/6
✓ Branch 0 taken 1 times.
✓ Branch 1 taken 4 times.
✓ Branch 2 taken 1 times.
✗ Branch 3 not taken.
✗ Branch 4 not taken.
✓ Branch 5 taken 1 times.
200 PetscCall(VecScale(Vr,sgn*eps->eigr[k0]));
481
4/6
✓ Branch 0 taken 1 times.
✓ Branch 1 taken 4 times.
✓ Branch 2 taken 1 times.
✗ Branch 3 not taken.
✗ Branch 4 not taken.
✓ Branch 5 taken 1 times.
200 PetscCall(BVGetColumn(V,k1,&w)); /* ui */
482
4/6
✓ Branch 0 taken 1 times.
✓ Branch 1 taken 4 times.
✓ Branch 2 taken 1 times.
✗ Branch 3 not taken.
✗ Branch 4 not taken.
✓ Branch 5 taken 1 times.
200 PetscCall(VecAXPY(Vr,-sgn*eps->eigi[k0],w));
483
4/6
✓ Branch 0 taken 1 times.
✓ Branch 1 taken 4 times.
✓ Branch 2 taken 1 times.
✗ Branch 3 not taken.
✗ Branch 4 not taken.
✓ Branch 5 taken 1 times.
200 PetscCall(BVRestoreColumn(V,k1,&w));
484
4/6
✓ Branch 0 taken 1 times.
✓ Branch 1 taken 4 times.
✓ Branch 2 taken 1 times.
✗ Branch 3 not taken.
✗ Branch 4 not taken.
✓ Branch 5 taken 1 times.
200 PetscCall(BVGetColumn(V,k0+eps->ncv/2+1,&w)); /* vr */
485
4/6
✓ Branch 0 taken 1 times.
✓ Branch 1 taken 4 times.
✓ Branch 2 taken 1 times.
✗ Branch 3 not taken.
✗ Branch 4 not taken.
✓ Branch 5 taken 1 times.
200 PetscCall(VecAXPY(Vr,1.0,w));
486
4/6
✓ Branch 0 taken 1 times.
✓ Branch 1 taken 4 times.
✓ Branch 2 taken 1 times.
✗ Branch 3 not taken.
✗ Branch 4 not taken.
✓ Branch 5 taken 1 times.
200 PetscCall(BVRestoreColumn(V,k0+eps->ncv/2+1,&w));
487
4/6
✓ Branch 0 taken 1 times.
✓ Branch 1 taken 4 times.
✓ Branch 2 taken 1 times.
✗ Branch 3 not taken.
✗ Branch 4 not taken.
✓ Branch 5 taken 1 times.
200 PetscCall(VecNorm(Vr,NORM_2,&nrmr));
488 }
489
1/2
✓ Branch 0 taken 5 times.
✗ Branch 1 not taken.
200 if (Vi) {
490
2/2
✓ Branch 0 taken 5 times.
✓ Branch 1 taken 5 times.
200 sgn = (iquad%2)? -1.0: 1.0;
491
4/6
✓ Branch 0 taken 1 times.
✓ Branch 1 taken 4 times.
✓ Branch 2 taken 1 times.
✗ Branch 3 not taken.
✗ Branch 4 not taken.
✓ Branch 5 taken 1 times.
200 PetscCall(BVCopyVec(V,k0,Vi)); /* ur */
492
4/6
✓ Branch 0 taken 1 times.
✓ Branch 1 taken 4 times.
✓ Branch 2 taken 1 times.
✗ Branch 3 not taken.
✗ Branch 4 not taken.
✓ Branch 5 taken 1 times.
200 PetscCall(VecScale(Vi,sgn*eps->eigi[k0]));
493
4/6
✓ Branch 0 taken 1 times.
✓ Branch 1 taken 4 times.
✓ Branch 2 taken 1 times.
✗ Branch 3 not taken.
✗ Branch 4 not taken.
✓ Branch 5 taken 1 times.
200 PetscCall(BVGetColumn(V,k1,&w)); /* ui */
494
4/6
✓ Branch 0 taken 1 times.
✓ Branch 1 taken 4 times.
✓ Branch 2 taken 1 times.
✗ Branch 3 not taken.
✗ Branch 4 not taken.
✓ Branch 5 taken 1 times.
200 PetscCall(VecAXPY(Vi,sgn*eps->eigr[k0],w));
495
4/6
✓ Branch 0 taken 1 times.
✓ Branch 1 taken 4 times.
✓ Branch 2 taken 1 times.
✗ Branch 3 not taken.
✗ Branch 4 not taken.
✓ Branch 5 taken 1 times.
200 PetscCall(BVRestoreColumn(V,k1,&w));
496
4/6
✓ Branch 0 taken 1 times.
✓ Branch 1 taken 4 times.
✓ Branch 2 taken 1 times.
✗ Branch 3 not taken.
✗ Branch 4 not taken.
✓ Branch 5 taken 1 times.
200 PetscCall(BVGetColumn(V,k1+eps->ncv/2+1,&w)); /* vi */
497
2/2
✓ Branch 0 taken 5 times.
✓ Branch 1 taken 5 times.
200 sgn = (iquad%3)? 1.0: -1.0;
498
4/6
✓ Branch 0 taken 1 times.
✓ Branch 1 taken 4 times.
✓ Branch 2 taken 1 times.
✗ Branch 3 not taken.
✗ Branch 4 not taken.
✓ Branch 5 taken 1 times.
200 PetscCall(VecAXPY(Vi,sgn,w));
499
4/6
✓ Branch 0 taken 1 times.
✓ Branch 1 taken 4 times.
✓ Branch 2 taken 1 times.
✗ Branch 3 not taken.
✗ Branch 4 not taken.
✓ Branch 5 taken 1 times.
200 PetscCall(BVRestoreColumn(V,k1+eps->ncv/2+1,&w));
500
4/6
✓ Branch 0 taken 1 times.
✓ Branch 1 taken 4 times.
✓ Branch 2 taken 1 times.
✗ Branch 3 not taken.
✗ Branch 4 not taken.
✓ Branch 5 taken 1 times.
200 PetscCall(VecNorm(Vi,NORM_2,&nrmi));
501 }
502 200 nrm = SlepcAbs(nrmr,nrmi);
503 }
504
5/8
✓ Branch 0 taken 5 times.
✗ Branch 1 not taken.
✓ Branch 2 taken 1 times.
✓ Branch 3 taken 4 times.
✓ Branch 4 taken 1 times.
✗ Branch 5 not taken.
✗ Branch 6 not taken.
✓ Branch 7 taken 1 times.
260 if (Vr) PetscCall(VecScale(Vr,1.0/nrm));
505
5/8
✓ Branch 0 taken 5 times.
✗ Branch 1 not taken.
✓ Branch 2 taken 1 times.
✓ Branch 3 taken 4 times.
✓ Branch 4 taken 1 times.
✗ Branch 5 not taken.
✗ Branch 6 not taken.
✓ Branch 7 taken 1 times.
260 if (Vi) PetscCall(VecScale(Vi,1.0/nrm));
506 #endif
507 } else SETERRQ(PetscObjectComm((PetscObject)eps),PETSC_ERR_LIB,"Inconsistent state");
508 }
509
6/12
✓ Branch 0 taken 2 times.
✗ Branch 1 not taken.
✗ Branch 2 not taken.
✓ Branch 3 taken 2 times.
✓ Branch 4 taken 2 times.
✗ Branch 5 not taken.
✓ Branch 6 taken 2 times.
✗ Branch 7 not taken.
✓ Branch 8 taken 2 times.
✗ Branch 9 not taken.
✗ Branch 10 not taken.
✓ Branch 11 taken 2 times.
15157 PetscFunctionReturn(PETSC_SUCCESS);
510 }
511
512 SLEPC_INTERN PetscErrorCode EPSSetWhichEigenpairs_Default(EPS);
513 SLEPC_INTERN PetscErrorCode EPSSetDimensions_Default(EPS,PetscInt*,PetscInt*,PetscInt*);
514 SLEPC_INTERN PetscErrorCode EPSBackTransform_Default(EPS);
515 SLEPC_INTERN PetscErrorCode EPSComputeVectors(EPS);
516 SLEPC_INTERN PetscErrorCode EPSComputeVectors_Hermitian(EPS);
517 SLEPC_INTERN PetscErrorCode EPSComputeVectors_Schur(EPS);
518 SLEPC_INTERN PetscErrorCode EPSComputeVectors_Indefinite(EPS);
519 SLEPC_INTERN PetscErrorCode EPSComputeVectors_Twosided(EPS);
520 SLEPC_INTERN PetscErrorCode EPSComputeVectors_Slice(EPS);
521 SLEPC_INTERN PetscErrorCode EPSComputeResidualNorm_Private(EPS,PetscBool,PetscScalar,PetscScalar,Vec,Vec,Vec*,PetscReal*);
522 SLEPC_INTERN PetscErrorCode EPSComputeRitzVector(EPS,PetscScalar*,PetscScalar*,BV,Vec,Vec);
523 SLEPC_INTERN PetscErrorCode EPSGetStartVector(EPS,PetscInt,PetscBool*);
524 SLEPC_INTERN PetscErrorCode EPSGetLeftStartVector(EPS,PetscInt,PetscBool*);
525 SLEPC_INTERN PetscErrorCode MatEstimateSpectralRange_EPS(Mat,PetscReal*,PetscReal*);
526
527 /* Private functions of the solver implementations */
528
529 SLEPC_INTERN PetscErrorCode EPSDelayedArnoldi(EPS,PetscScalar*,PetscInt,PetscInt,PetscInt*,PetscReal*,PetscBool*);
530 SLEPC_INTERN PetscErrorCode EPSDelayedArnoldi1(EPS,PetscScalar*,PetscInt,PetscInt,PetscInt*,PetscReal*,PetscBool*);
531 SLEPC_INTERN PetscErrorCode EPSKrylovConvergence(EPS,PetscBool,PetscInt,PetscInt,PetscReal,PetscReal,PetscReal,PetscInt*);
532 SLEPC_INTERN PetscErrorCode EPSPseudoLanczos(EPS,PetscReal*,PetscReal*,PetscReal*,PetscInt,PetscInt*,PetscBool*,PetscBool*,PetscReal*,Vec);
533 SLEPC_INTERN PetscErrorCode EPSBuildBalance_Krylov(EPS);
534 SLEPC_INTERN PetscErrorCode EPSSetDefaultST(EPS);
535 SLEPC_INTERN PetscErrorCode EPSSetDefaultST_Precond(EPS);
536 SLEPC_INTERN PetscErrorCode EPSSetDefaultST_GMRES(EPS);
537 SLEPC_INTERN PetscErrorCode EPSSetDefaultST_NoFactor(EPS);
538 SLEPC_INTERN PetscErrorCode EPSSetUpSort_Basic(EPS);
539 SLEPC_INTERN PetscErrorCode EPSSetUpSort_Default(EPS);
540