Subversion Repositories slepc-dev

Rev

Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 2027 Rev 2031
Line 240... Line 240...
        break;
        break;
      default: SETERRQ(1,"Wrong value of eps->which");
      default: SETERRQ(1,"Wrong value of eps->which");
    }    
    }    
    if (eps->leftvecs) {
    if (eps->leftvecs) {
      ierr = PetscViewerASCIIPrintf(viewer,"  computing left eigenvectors also\n");CHKERRQ(ierr);
      ierr = PetscViewerASCIIPrintf(viewer,"  computing left eigenvectors also\n");CHKERRQ(ierr);
 
    }
 
    if (eps->trueres) {
 
      ierr = PetscViewerASCIIPrintf(viewer,"  computing true residuals explicitly\n");CHKERRQ(ierr);
    }
    }
    ierr = PetscViewerASCIIPrintf(viewer,"  number of eigenvalues (nev): %d\n",eps->nev);CHKERRQ(ierr);
    ierr = PetscViewerASCIIPrintf(viewer,"  number of eigenvalues (nev): %d\n",eps->nev);CHKERRQ(ierr);
    ierr = PetscViewerASCIIPrintf(viewer,"  number of column vectors (ncv): %d\n",eps->ncv);CHKERRQ(ierr);
    ierr = PetscViewerASCIIPrintf(viewer,"  number of column vectors (ncv): %d\n",eps->ncv);CHKERRQ(ierr);
    ierr = PetscViewerASCIIPrintf(viewer,"  maximum dimension of projected problem (mpd): %d\n",eps->mpd);CHKERRQ(ierr);
    ierr = PetscViewerASCIIPrintf(viewer,"  maximum dimension of projected problem (mpd): %d\n",eps->mpd);CHKERRQ(ierr);
    ierr = PetscViewerASCIIPrintf(viewer,"  maximum number of iterations: %d\n", eps->max_it);
    ierr = PetscViewerASCIIPrintf(viewer,"  maximum number of iterations: %d\n", eps->max_it);
Line 323... Line 326...
  eps->conv_ctx        = PETSC_NULL;
  eps->conv_ctx        = PETSC_NULL;
  eps->which           = (EPSWhich)0;
  eps->which           = (EPSWhich)0;
  eps->which_func      = PETSC_NULL;
  eps->which_func      = PETSC_NULL;
  eps->which_ctx       = PETSC_NULL;
  eps->which_ctx       = PETSC_NULL;
  eps->leftvecs        = PETSC_FALSE;
  eps->leftvecs        = PETSC_FALSE;
 
  eps->trueres         = PETSC_FALSE;
  eps->target          = 0.0;
  eps->target          = 0.0;
  eps->evecsavailable  = PETSC_FALSE;
  eps->evecsavailable  = PETSC_FALSE;
  eps->problem_type    = (EPSProblemType)0;
  eps->problem_type    = (EPSProblemType)0;
  eps->extraction      = (EPSExtraction)0;
  eps->extraction      = (EPSExtraction)0;
  eps->balance         = (EPSBalance)0;
  eps->balance         = (EPSBalance)0;