yat/utility/BLAS_utility.h

Code
Comments
Other
Rev Date Author Line
3605 27 Jan 17 peter 1 #ifndef _theplu_yat_utility_blas_utility_
3605 27 Jan 17 peter 2 #define _theplu_yat_utility_blas_utility_
3605 27 Jan 17 peter 3
3605 27 Jan 17 peter 4 // $Id$
3605 27 Jan 17 peter 5
3605 27 Jan 17 peter 6 /*
3605 27 Jan 17 peter 7   Copyright (C) 2017 Peter Johansson
3605 27 Jan 17 peter 8
3605 27 Jan 17 peter 9   This file is part of the yat library, http://dev.thep.lu.se/yat
3605 27 Jan 17 peter 10
3605 27 Jan 17 peter 11   The yat library is free software; you can redistribute it and/or
3605 27 Jan 17 peter 12   modify it under the terms of the GNU General Public License as
3605 27 Jan 17 peter 13   published by the Free Software Foundation; either version 3 of the
3605 27 Jan 17 peter 14   License, or (at your option) any later version.
3605 27 Jan 17 peter 15
3605 27 Jan 17 peter 16   The yat library is distributed in the hope that it will be useful,
3605 27 Jan 17 peter 17   but WITHOUT ANY WARRANTY; without even the implied warranty of
3605 27 Jan 17 peter 18   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
3605 27 Jan 17 peter 19   General Public License for more details.
3605 27 Jan 17 peter 20
3605 27 Jan 17 peter 21   You should have received a copy of the GNU General Public License
3605 27 Jan 17 peter 22   along with yat. If not, see <http://www.gnu.org/licenses/>.
3605 27 Jan 17 peter 23 */
3605 27 Jan 17 peter 24
3605 27 Jan 17 peter 25 namespace theplu {
3605 27 Jan 17 peter 26 namespace yat {
3605 27 Jan 17 peter 27 namespace utility {
3605 27 Jan 17 peter 28 namespace expression {
3605 27 Jan 17 peter 29
3605 27 Jan 17 peter 30     struct Plus {};
3605 27 Jan 17 peter 31     struct Minus {};
3605 27 Jan 17 peter 32     struct Multiplies {};
3605 27 Jan 17 peter 33
3605 27 Jan 17 peter 34 }}}} // of namespace utility, yat, and theplu
3605 27 Jan 17 peter 35
3605 27 Jan 17 peter 36 #endif