示例#1
0
文件: TestSVM.cs 项目: src8655/sku
 public void SVM_CheckParameter_ParameterIsNull_ThrowsException()
 {
     SVM.CheckParameter(new SVMProblem(), null);
 }
示例#2
0
 public static string CheckParameter(this SVMProblem problem, SVMParameter parameter)
 {
     return(SVM.CheckParameter(problem, parameter));
 }
示例#3
0
文件: TestSVM.cs 项目: src8655/sku
 public void SVM_CheckParameter_ProblemIsNull_ThrowsException()
 {
     SVM.CheckParameter(null, new SVMParameter());
 }