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) 2007-2008 Vojtech Franc 00008 */ 00009 namespace shogun 00010 { 00011 int8_t qpssvm_solver(const void* (*get_col)(uint32_t), 00012 float64_t *diag_H, 00013 float64_t *f, 00014 float64_t b, 00015 uint16_t *I, 00016 float64_t *x, 00017 uint32_t n, 00018 uint32_t tmax, 00019 float64_t tolabs, 00020 float64_t tolrel, 00021 float64_t *QP, 00022 float64_t *QD, 00023 uint32_t verb); 00024 }