| Line 482... |
Line 482... |
#undef __FUNCT__
|
#undef __FUNCT__
|
#define __FUNCT__ "PSCreate_NHEP"
|
#define __FUNCT__ "PSCreate_NHEP"
|
PetscErrorCode PSCreate_NHEP(PS ps)
|
PetscErrorCode PSCreate_NHEP(PS ps)
|
{
|
{
|
PetscFunctionBegin;
|
PetscFunctionBegin;
|
ps->nmeth = 1;
|
|
ps->ops->allocate = PSAllocate_NHEP;
|
ps->ops->allocate = PSAllocate_NHEP;
|
ps->ops->view = PSView_NHEP;
|
ps->ops->view = PSView_NHEP;
|
ps->ops->vectors = PSVectors_NHEP;
|
ps->ops->vectors = PSVectors_NHEP;
|
ps->ops->solve = PSSolve_NHEP;
|
ps->ops->solve[0] = PSSolve_NHEP;
|
ps->ops->sort = PSSort_NHEP;
|
ps->ops->sort = PSSort_NHEP;
|
ps->ops->cond = PSCond_NHEP;
|
ps->ops->cond = PSCond_NHEP;
|
ps->ops->transharm = PSTranslateHarmonic_NHEP;
|
ps->ops->transharm = PSTranslateHarmonic_NHEP;
|
PetscFunctionReturn(0);
|
PetscFunctionReturn(0);
|
}
|
}
|