Uses of Interface
martin.common.compthreads.Problem

Packages that use Problem
martin.common.compthreads   
uk.ac.man.entitytagger.evaluate   
uk.ac.man.entitytagger.generate   
uk.ac.man.entitytagger.matching.matchers   
uk.ac.man.entitytagger.networking   
 

Uses of Problem in martin.common.compthreads
 

Fields in martin.common.compthreads declared as Problem
private  Problem<E> Worker.problem
           
private  Problem<E>[] ArrayBasedMaster.problems
           
 

Fields in martin.common.compthreads with type parameters of type Problem
private  java.util.Iterator<Problem<E>> IteratorBasedMaster.problemIterator
           
 

Constructors in martin.common.compthreads with parameters of type Problem
ArrayBasedMaster(Problem<E>[] problems, int numThreads)
           
IteratorBasedMaster(Problem<E>[] array, int numThreads)
           
Worker(Problem<E> problem, Master<E> master, int id)
           
 

Constructor parameters in martin.common.compthreads with type arguments of type Problem
IteratorBasedMaster(java.util.Collection<Problem<E>> collection, int numThreads)
           
IteratorBasedMaster(java.util.Iterator<Problem<E>> problemIterator, int numThreads)
          Creates a new IteratorBasedMaster.
IteratorBasedMaster(java.util.Iterator<Problem<E>> problemIterator, int numThreads, java.lang.Integer maxStorageLength)
          Creates a new IteratorBasedMaster.
 

Uses of Problem in uk.ac.man.entitytagger.evaluate
 

Classes in uk.ac.man.entitytagger.evaluate that implement Problem
 class EvaluateProblem
          Simple class for parallelising evaluations
 

Uses of Problem in uk.ac.man.entitytagger.generate
 

Classes in uk.ac.man.entitytagger.generate that implement Problem
private  class ConvertToVariantsProblemIterator.ConvertToVariantsProblem
           
private  class GenerateAutomatons.ProcessProblem
          Class used to join several automatons together and minimize the result (put into a class to enable concurrent computations)
private  class GenerateAutomatons.ToAutomatonProblem
           
 

Methods in uk.ac.man.entitytagger.generate that return Problem
 Problem<Tuple<DictionaryEntry,java.util.Set<java.lang.String>>> ConvertToVariantsProblemIterator.next()
           
 

Uses of Problem in uk.ac.man.entitytagger.matching.matchers
 

Classes in uk.ac.man.entitytagger.matching.matchers that implement Problem
 class ConcurrentMatcher.MatchProblem
           
 

Uses of Problem in uk.ac.man.entitytagger.networking
 

Classes in uk.ac.man.entitytagger.networking that implement Problem
 class SimpleServerWorker