📄 uplo.h
字号:
//// Copyright 1997, 1998, 1999 University of Notre Dame.// Authors: Andrew Lumsdaine, Jeremy G. Siek, Lie-Quan Lee//// This file is part of the Matrix Template Library//// You should have received a copy of the License Agreement for the// Matrix Template Library along with the software; see the// file LICENSE. If not, contact Office of Research, University of Notre// Dame, Notre Dame, IN 46556.//// Permission to modify the code and to distribute modified code is// granted, provided the text of this NOTICE is retained, a notice that// the code was modified is included with the above COPYRIGHT NOTICE and// with the COPYRIGHT NOTICE in the LICENSE file, and that the LICENSE// file is distributed with the modified code.//// LICENSOR MAKES NO REPRESENTATIONS OR WARRANTIES, EXPRESS OR IMPLIED.// By way of example, but not limitation, Licensor MAKES NO// REPRESENTATIONS OR WARRANTIES OF MERCHANTABILITY OR FITNESS FOR ANY// PARTICULAR PURPOSE OR THAT THE USE OF THE LICENSED SOFTWARE COMPONENTS// OR DOCUMENTATION WILL NOT INFRINGE ANY PATENTS, COPYRIGHTS, TRADEMARKS// OR OTHER RIGHTS.//////===========================================================================#ifndef MTL_UPLO_H#define MTL_UPLO_H#include <utility>#include "mtl/mtl_config.h"#include "mtl/matrix_traits.h"namespace mtl { /* JGS add is_lower() */struct lower__;struct unit_lower__;//: specify an upper triangle matrix//!noindex:struct upper__ { typedef lower__ transpose_type; std::pair<int,int> bandwidth(int, int n) { return std::make_pair(0, n); } bool is_upper() const { return true; } bool is_unit() const { return false; }};/* following BLAS nomenclature for triangular matrix without diagnal *///: specify a unit upper triangle matrix//!noindex:struct unit_upper__ { typedef unit_lower__ transpose_type; std::pair<int,int> bandwidth(int, int n) { return std::make_pair(-1, n); } bool is_upper() const { return true; } bool is_unit() const { return true; }};//: specify a lower triangle matrix//!noindex:struct lower__ { typedef upper__ transpose_type; std::pair<int,int> bandwidth(int m, int) { return std::make_pair(m, 0); } bool is_upper() const { return false; } bool is_unit() const { return false; }};//: specify a unit lower triangle matrix//!noindex:struct unit_lower__ { typedef unit_upper__ transpose_type; std::pair<int,int> bandwidth(int m, int) { return std::make_pair(m, -1); } bool is_upper() const { return false; } bool is_unit() const { return true; }};//: specify the uplo type dynamically (at run time)//!noindex:struct dynamic_uplo__ { dynamic_uplo__(int uplo_) : uplo(uplo_) { } std::pair<int,int> bandwidth(int m, int n) const { std::pair<int,int> bw; switch (uplo) { case upper: bw = std::make_pair(0, n); break; case unit_upper: bw = std::make_pair(-1, n); break; case lower: bw = std::make_pair(m, 0); break; case unit_lower: bw = std::make_pair(m, -1); break; } return bw; } static std::pair<int,int> bandwidth(int uplo, int m, int n) { dynamic_uplo__ duplo(uplo); return duplo.bandwidth(m, n); } bool is_unit() const { return uplo == unit_upper || uplo == unit_lower; } bool is_upper() const { return uplo == upper || uplo == unit_upper; } int uplo;};} /* namespace mtl */#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -