DOLFIN
DOLFIN C++ interface
Loading...
Searching...
No Matches
types.h
1// Copyright (C) 2008-2014 Anders Logg and Garth N. Wells
2//
3// This file is part of DOLFIN.
4//
5// DOLFIN is free software: you can redistribute it and/or modify
6// it under the terms of the GNU Lesser General Public License as published by
7// the Free Software Foundation, either version 3 of the License, or
8// (at your option) any later version.
9//
10// DOLFIN is distributed in the hope that it will be useful,
11// but WITHOUT ANY WARRANTY; without even the implied warranty of
12// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13// GNU Lesser General Public License for more details.
14//
15// You should have received a copy of the GNU Lesser General Public License
16// along with DOLFIN. If not, see <http://www.gnu.org/licenses/>.
17//
18// This file provides DOLFIN typedefs for basic types.
19
20#ifndef __DOLFIN_TYPES_H
21#define __DOLFIN_TYPES_H
22
23#ifdef HAS_PETSC
24#include <petscsys.h>
25#endif
26
27namespace dolfin
28{
29
31 #ifdef HAS_PETSC
32 typedef PetscInt la_index;
33 #else
34 typedef int la_index;
35 #endif
36
37}
38
39#endif
Definition adapt.h:30
PetscInt la_index
Index type for compatibility with linear algebra backend(s)
Definition types.h:32