Skip to content
Snippets Groups Projects
tnlProblem.h 1.32 KiB
Newer Older
  • Learn to ignore specific revisions
  • /***************************************************************************
    
                              tnlProblem.h  -  description
    
                                 -------------------
    
        begin                : Jan 10, 2015
        copyright            : (C) 2015 by oberhuber
    
        email                : tomas.oberhuber@fjfi.cvut.cz
     ***************************************************************************/
    
    /***************************************************************************
     *                                                                         *
     *   This program is free software; you can redistribute it and/or modify  *
     *   it under the terms of the GNU General Public License as published by  *
     *   the Free Software Foundation; either version 2 of the License, or     *
     *   (at your option) any later version.                                   *
     *                                                                         *
     ***************************************************************************/
    
    
    #ifndef TNLPROBLEM_H_
    #define TNLPROBLEM_H_
    
    #include <matrices/tnlSlicedEllpackMatrix.h>
    
    template< typename Real,
              typename Device,
              typename Index >
    class tnlProblem
    {
       public:
    
          typedef Real RealType;
          typedef Device DeviceType;
          typedef Index IndexType;
    };
    
    
    #endif /* TNLPROBLEM_H_ */