#include "anamod.h"
#include "petscmat.h"
Go to the source code of this file.
Functions | |
PetscErrorCode | MatrixComputeQuantity (Mat, const char *, const char *, AnalysisItem *res, int *l, PetscTruth *success) |
PetscErrorCode MatrixComputeQuantity | ( | Mat | , | |
const char * | , | |||
const char * | , | |||
AnalysisItem * | res, | |||
int * | l, | |||
PetscTruth * | success | |||
) |
Definition at line 15 of file anamatrix.c.
References ComputeQuantity().
Referenced by computennz(), JonesPlassmannColouring(), Lee95bounds(), MatCenter(), and MatCommutatorNormF_seq().
00017 { 00018 PetscErrorCode ierr; 00019 PetscFunctionBegin; 00020 ierr = ComputeQuantity 00021 ((AnaModNumericalProblem)A,cat,cmp,res,l,success); CHKERRQ(ierr); 00022 PetscFunctionReturn(0); 00023 }