~njansson/dolfin/hpc

« back to all changes in this revision

Viewing changes to dolfin/parameter/DefaultParameters.h

  • Committer: Kent-Andre Mardal
  • Date: 2008-05-19 14:21:52 UTC
  • mfrom: (2668.5.1 trunk)
  • mto: (2668.1.16 trunk)
  • mto: This revision was merged to the branch mainline in revision 2670.
  • Revision ID: kent-and@simula.no-20080519142152-7zb7r4htl7111izh
merge

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
// Default values for the DOLFIN parameter system.
2
2
//
3
3
// First added:  2005-12-19
4
 
// Last changed: 2007-02-27
 
4
// Last changed: 2008-05-17
 
5
 
 
6
//--- Linear algebra ---
 
7
#ifdef HAS_PETSC
 
8
add("linear algebra backend", "PETSc");
 
9
#else
 
10
add("linear algebra backend", "uBLAS");
 
11
#endif
 
12
 
 
13
// FIXME: Need to cleanup among parameters below
5
14
 
6
15
//--- General parameters ---
7
16