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 00012 #include <shogun/lib/computation/jobresult/ScalarResult.h> 00013 00014 namespace shogun 00015 { 00016 template class CScalarResult<bool>; 00017 template class CScalarResult<char>; 00018 template class CScalarResult<int8_t>; 00019 template class CScalarResult<uint8_t>; 00020 template class CScalarResult<int16_t>; 00021 template class CScalarResult<uint16_t>; 00022 template class CScalarResult<int32_t>; 00023 template class CScalarResult<uint32_t>; 00024 template class CScalarResult<int64_t>; 00025 template class CScalarResult<uint64_t>; 00026 template class CScalarResult<float32_t>; 00027 template class CScalarResult<float64_t>; 00028 template class CScalarResult<floatmax_t>; 00029 template class CScalarResult<complex128_t>; 00030 }