Actual source code: slepcbv.h

slepc-3.22.2 2024-12-02
Report Typos and Errors
  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: !  Used by slepcbvmod.F90 to create Fortran module file
 11: !
 12: #include "slepc/finclude/slepcbv.h"

 14:       type, extends(tPetscObject) :: tBV
 15:       end type tBV

 17:       BV, parameter :: SLEPC_NULL_BV = tBV(0)

 19:       PetscEnum, parameter :: BV_ORTHOG_CGS             =  0
 20:       PetscEnum, parameter :: BV_ORTHOG_MGS             =  1

 22:       PetscEnum, parameter :: BV_ORTHOG_REFINE_IFNEEDED =  0
 23:       PetscEnum, parameter :: BV_ORTHOG_REFINE_NEVER    =  1
 24:       PetscEnum, parameter :: BV_ORTHOG_REFINE_ALWAYS   =  2

 26:       PetscEnum, parameter :: BV_ORTHOG_BLOCK_GS        =  0
 27:       PetscEnum, parameter :: BV_ORTHOG_BLOCK_CHOL      =  1
 28:       PetscEnum, parameter :: BV_ORTHOG_BLOCK_TSQR      =  2
 29:       PetscEnum, parameter :: BV_ORTHOG_BLOCK_TSQRCHOL  =  3
 30:       PetscEnum, parameter :: BV_ORTHOG_BLOCK_SVQB      =  4

 32:       PetscEnum, parameter :: BV_MATMULT_VECS           =  0
 33:       PetscEnum, parameter :: BV_MATMULT_MAT            =  1
 34:       PetscEnum, parameter :: BV_MATMULT_MAT_SAVE       =  2

 36:       PetscEnum, parameter :: BV_SVD_METHOD_REFINE      =  0
 37:       PetscEnum, parameter :: BV_SVD_METHOD_QR          =  1
 38:       PetscEnum, parameter :: BV_SVD_METHOD_QR_CAA      =  2

 40: #if defined(_WIN32) && defined(PETSC_USE_SHARED_LIBRARIES)
 41: !DEC$ ATTRIBUTES DLLEXPORT::SLEPC_NULL_BV
 42: #endif