Home || Visual Search || Applications || Architecture || Important Messages || OGL || Src

void Impala::Application::Repository::DoCopySvmProblem (  ) 

Definition at line 2531 of file mainRepository.cpp.

References Impala::CmdOptions::GetInstance(), GetModelKeywordList(), GetModelLocator(), ILOG_VAR, and Impala::Persistency::ModelLocator::SetConcept().

Referenced by mainRepository().

02532 {
02533     ILOG_VAR(Impala.Application.Repository.DoCopyDiffSvmProblem);
02534     CmdOptions& options = CmdOptions::GetInstance();
02535 
02536     ModelLocator loc1 = GetModelLocator(options, true);
02537     ModelLocator loc2 = GetModelLocator(options, false);
02538     KeywordList concepts = GetModelKeywordList(loc1);
02539     for (int i=0 ; i<concepts.size() ; i++)
02540     {
02541         loc1.SetConcept(concepts[i]);
02542         svm_problem* problem = SvmProblemRepository().Get(loc1);
02543         loc2.SetConcept(concepts[i]);
02544         SvmProblemRepository().Add(loc2, problem);
02545         delete problem;
02546     }
02547 }

Here is the call graph for this function:


Generated on Thu Jan 13 09:15:49 2011 for ImpalaSrc by  doxygen 1.5.1