SHOGUN
v3.2.0
|
00001 /* 00002 * This program is free software; you can redistribute it and/or modify 00003 * it under the terms of the GNU General Public License as published by 00004 * the Free Software Foundation; either version 3 of the License, or 00005 * (at your option) any later version. 00006 * 00007 * Written (W) 2013 Soumyajit De 00008 * Written (W) 2013 Heiko Strathmann 00009 */ 00010 00011 #include <shogun/mathematics/linalg/linop/LinearOperator.h> 00012 00013 namespace shogun 00014 { 00015 template class CLinearOperator<bool>; 00016 template class CLinearOperator<char>; 00017 template class CLinearOperator<int8_t>; 00018 template class CLinearOperator<uint8_t>; 00019 template class CLinearOperator<int16_t>; 00020 template class CLinearOperator<uint16_t>; 00021 template class CLinearOperator<int32_t>; 00022 template class CLinearOperator<uint32_t>; 00023 template class CLinearOperator<int64_t>; 00024 template class CLinearOperator<uint64_t>; 00025 template class CLinearOperator<float32_t>; 00026 template class CLinearOperator<float64_t>; 00027 template class CLinearOperator<floatmax_t>; 00028 template class CLinearOperator<complex128_t>; 00029 }