Definition at line 33 of file SvmProblemRepositoryInFile.h. References Impala::Persistency::ModelLocator::GetConcept(), GetDir(), Impala::Persistency::RepositoryInFileSystem::GetFile(), Read(), RepFS(), and Impala::Persistency::File::Valid(). 00034 { 00035 String dir = GetDir(loc); 00036 File file = RepFS().GetFile(loc, dir, loc.GetConcept() + ".problem.txt", 00037 false, false); 00038 if (!file.Valid()) 00039 return 0; 00040 svm_problem* res = Read(file); 00041 return res; 00042 }
Here is the call graph for this function: ![]()
|