Definition at line 2489 of file mainRepository.cpp. References Impala::Core::Feature::Dump(), Impala::CmdOptions::GetInstance(), GetModelKeywordList(), GetModelLocator(), ILOG_VAR, and Impala::Persistency::ModelLocator::SetConcept(). Referenced by mainRepository(). 02490 { 02491 ILOG_VAR(Impala.Application.Repository.DoDumpSvmProblem); 02492 02493 CmdOptions& options = CmdOptions::GetInstance(); 02494 ModelLocator loc = GetModelLocator(options, true); 02495 KeywordList concepts = GetModelKeywordList(loc); 02496 for (int i=0 ; i<concepts.size() ; i++) 02497 { 02498 loc.SetConcept(concepts[i]); 02499 svm_problem* problem = SvmProblemRepository().Get(loc); 02500 if (problem) 02501 { 02502 Dump(problem, -1, 10, std::cout); 02503 DestroySvmProblem(problem); 02504 } 02505 } 02506 }
Here is the call graph for this function: ![]()
|