dune-istl  2.2.0
solvertype.hh
Go to the documentation of this file.
00001 // -*- tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 4 -*-
00002 // vi: set et ts=8 sw=4 sts=4:
00003 #ifndef DUNE_ISTL_SOLVERTYPE_HH
00004 #define DUNE_ISTL_SOLVERTYPE_HH
00005 
00010 namespace Dune
00011 {
00012     template<typename Solver>
00013     struct IsDirectSolver
00014     {
00015         enum
00016         {
00022             value =false
00023         };
00024     };
00025 }// end namespace Dune
00026 #endif