Home
last modified time | relevance | path

Searched refs:PetscImaginaryPartComplex (Results 1 – 3 of 3) sorted by relevance

/petsc/include/
H A Dpetscmath.h215 #define PetscImaginaryPartComplex(a) (static_cast<PetscComplex>(a)).imag() macro
311 #define PetscImaginaryPartComplex(a) cimagf(a) macro
334 #define PetscImaginaryPartComplex(a) cimag(a) macro
357 #define PetscImaginaryPartComplex(a) cimagq(a) macro
513 #define PetscImaginaryPart(a) PetscImaginaryPartComplex(a)
/petsc/src/vec/is/section/interface/
H A Dsection.c2650 if (PetscImaginaryPartComplex(v) > 0.0) { in PrintArrayElement()
2651 …intf(viewer, " %g + %g i", (double)PetscRealPartComplex(v), (double)PetscImaginaryPartComplex(v))); in PrintArrayElement()
2652 } else if (PetscImaginaryPartComplex(v) < 0.0) { in PrintArrayElement()
2653 …f(viewer, " %g - %g i", (double)PetscRealPartComplex(v), (double)(-PetscImaginaryPartComplex(v)))); in PrintArrayElement()
/petsc/src/ts/impls/implicit/theta/
H A Dtheta.c1159 *yi = PetscImaginaryPartComplex(f); in TSComputeLinearStability_Theta()