Definition at line 2509 of file mainRepository.cpp. References Impala::CmdOptions::GetInstance(), GetModelKeywordList(), GetModelLocator(), ILOG_INFO, ILOG_VAR, and Impala::Persistency::ModelLocator::SetConcept(). Referenced by mainRepository(). 02510 { 02511 ILOG_VAR(Impala.Application.Repository.DoDiffSvmProblem); 02512 CmdOptions& options = CmdOptions::GetInstance(); 02513 02514 ModelLocator loc1 = GetModelLocator(options, true); 02515 ModelLocator loc2 = GetModelLocator(options, false); 02516 KeywordList concepts = GetModelKeywordList(loc1); 02517 for (int i=0 ; i<concepts.size() ; i++) 02518 { 02519 ILOG_INFO("Checking " << i << " = " << concepts[i]); 02520 loc1.SetConcept(concepts[i]); 02521 svm_problem* problem1 = SvmProblemRepository().Get(loc1); 02522 loc2.SetConcept(concepts[i]); 02523 svm_problem* problem2 = SvmProblemRepository().Get(loc2); 02524 SvmProblemDiff(problem1, problem2); 02525 DestroySvmProblem(problem1); 02526 DestroySvmProblem(problem2); 02527 } 02528 }
Here is the call graph for this function: ![]()
|