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 * Copyright (C) 2012 Viktor Gal 00008 * 00009 */ 00010 00011 #ifndef libncbm_h 00012 #define libncbm_h 00013 00014 #include <shogun/lib/common.h> 00015 #include <shogun/structure/libbmrm.h> 00016 00017 namespace shogun 00018 { 00019 00026 BmrmStatistics svm_ncbm_solver( 00027 CDualLibQPBMSOSVM *machine, 00028 float64_t *w, 00029 float64_t TolRel, 00030 float64_t TolAbs, 00031 float64_t _lambda, 00032 uint32_t _BufSize, 00033 bool cleanICP, 00034 uint32_t cleanAfter, 00035 bool is_convex = false, 00036 bool line_search = true, 00037 bool verbose = false 00038 ); 00039 } 00040 #endif /* libncbm_h */