Actual source code: slepcbv.h

slepc-3.9.0 2018-04-12
Report Typos and Errors
  1: !
  2: !  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  3: !  SLEPc - Scalable Library for Eigenvalue Problem Computations
  4: !  Copyright (c) 2002-2018, 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: !  Include file for Fortran use of the BV object in SLEPc
 11: !
 12: #include "slepc/finclude/slepcbv.h"

 14:       type tBV
 15:         PetscFortranAddr:: v
 16:       end type tBV

 18:       PetscEnum BV_ORTHOG_CGS
 19:       PetscEnum BV_ORTHOG_MGS

 21:       parameter (BV_ORTHOG_CGS             =  0)
 22:       parameter (BV_ORTHOG_MGS             =  1)

 24:       PetscEnum BV_ORTHOG_REFINE_IFNEEDED
 25:       PetscEnum BV_ORTHOG_REFINE_NEVER
 26:       PetscEnum BV_ORTHOG_REFINE_ALWAYS

 28:       parameter (BV_ORTHOG_REFINE_IFNEEDED =  0)
 29:       parameter (BV_ORTHOG_REFINE_NEVER    =  1)
 30:       parameter (BV_ORTHOG_REFINE_ALWAYS   =  2)

 32:       PetscEnum BV_ORTHOG_BLOCK_GS
 33:       PetscEnum BV_ORTHOG_BLOCK_CHOL
 34:       PetscEnum BV_ORTHOG_BLOCK_TSQR
 35:       PetscEnum BV_ORTHOG_BLOCK_TSQRCHOL
 36:       PetscEnum BV_ORTHOG_BLOCK_SVQB

 38:       parameter (BV_ORTHOG_BLOCK_GS        =  0)
 39:       parameter (BV_ORTHOG_BLOCK_CHOL      =  1)
 40:       parameter (BV_ORTHOG_BLOCK_TSQR      =  2)
 41:       parameter (BV_ORTHOG_BLOCK_TSQRCHOL  =  3)
 42:       parameter (BV_ORTHOG_BLOCK_SVQB      =  4)

 44:       PetscEnum BV_MATMULT_VECS
 45:       PetscEnum BV_MATMULT_MAT
 46:       PetscEnum BV_MATMULT_MAT_SAVE

 48:       parameter (BV_MATMULT_VECS           =  0)
 49:       parameter (BV_MATMULT_MAT            =  1)
 50:       parameter (BV_MATMULT_MAT_SAVE       =  2)

 52: !
 53: !  End of Fortran include file for the BV package in SLEPc
 54: !