Subversion Repositories slepc-dev

Compare Revisions

Ignore whitespace Rev 973 → Rev 982

/trunk/src/st/interface/stsolve.c
195,7 → 195,7
{
PetscErrorCode ierr;
Vec in,out;
int i,M,m,*rows,start,end;
PetscInt i,M,m,*rows,start,end;
PetscScalar *array,one = 1.0;
 
PetscFunctionBegin;
/trunk/src/st/interface/stset.c
116,7 → 116,7
PetscErrorCode STSetFromOptions(ST st)
{
PetscErrorCode ierr;
int i;
PetscInt i;
char type[256];
PetscTruth flg;
const char *mode_list[3] = { "copy", "inplace", "shell" };
/trunk/src/st/interface/shellmat.c
80,7 → 80,7
PetscErrorCode STMatShellCreate(ST st,Mat *mat)
{
PetscErrorCode ierr;
int n, m, N, M;
PetscInt n, m, N, M;
PetscTruth hasA, hasB;
 
PetscFunctionBegin;
/trunk/src/st/interface/stsles.c
22,7 → 22,7
PetscErrorCode STAssociatedKSPSolve(ST st,Vec b,Vec x)
{
PetscErrorCode ierr;
int its;
PetscInt its;
KSPConvergedReason reason;
 
PetscFunctionBegin;
55,7 → 55,7
PetscErrorCode STAssociatedKSPSolveTranspose(ST st,Vec b,Vec x)
{
PetscErrorCode ierr;
int its;
PetscInt its;
KSPConvergedReason reason;
 
PetscFunctionBegin;