Skip to content
Snippets Groups Projects
Problem.h 787 B
Newer Older
  • Learn to ignore specific revisions
  • /***************************************************************************
    
                              Problem.h  -  description
    
                                 -------------------
    
        begin                : Jan 10, 2015
        copyright            : (C) 2015 by oberhuber
    
        email                : tomas.oberhuber@fjfi.cvut.cz
     ***************************************************************************/
    
    
    /* See Copyright Notice in tnl/Copyright */
    
    #pragma once
    
    #include <TNL/Matrices/SlicedEllpack.h>
    
    namespace TNL {
    
    namespace Problems {
    
    template< typename Real,
              typename Device,
              typename Index >
    
    class Problem
    
          typedef Real RealType;
          typedef Device DeviceType;
          typedef Index IndexType;
    };
    
    
    } // namespace Problems
    } // namespace TNL