source: issm/trunk-jpl/src/c/toolkits/petsc/objects/petscobjects.h@ 12850

Last change on this file since 12850 was 12850, checked in by Eric.Larour, 13 years ago

CHG: homoegeization of the matrix class. Is now split into a pector (petsc vector) and svector (sequential vector).
New objects PetscMat and PetscVec in the toolkits allow for this homoegeization. Things are not perfect yet,
as we reference the matrix and vector internals across the code, which could create some serious issues.

File size: 201 bytes
Line 
1/* \file petscobjects.h
2 * \brief all includes for our own petsc object implementation
3 */
4
5#ifndef _PETSC_OBJECTS_H_
6#define _PETSC_OBJECTS_H_
7
8#include "./PetscMat.h"
9#include "./PetscVec.h"
10
11#endif
Note: See TracBrowser for help on using the repository browser.