ABL4J (Alignment Based Learning for Java) - 0.9.7

Uses of Interface
org.schwiebert.abl4j.data.IConstituent

Packages that use IConstituent
org.schwiebert.abl4j.align.methods   
org.schwiebert.abl4j.cluster   
org.schwiebert.abl4j.data   
org.schwiebert.abl4j.data.impl.abl   
org.schwiebert.abl4j.io   
org.schwiebert.abl4j.select   
org.schwiebert.abl4j.select.methods   
org.schwiebert.abl4j.util   
 

Uses of IConstituent in org.schwiebert.abl4j.align.methods
 

Methods in org.schwiebert.abl4j.align.methods with parameters of type IConstituent
private  void SuffixTreeAlignment.insertConstituent(ITree t, IConstituent c)
           
protected  void AbstractAdvancedMethod.insertConstituent(ITree t, IConstituent c)
           
protected  void AbstractAdvancedMethod.insertConstituents(ITree t1, ITree t2, IConstituent c1, IConstituent c2)
           
protected  void AbstractAdvancedMethod.insertConstituents(ITree t1, ITree t2, IConstituent c1, IConstituent c2)
           
 

Uses of IConstituent in org.schwiebert.abl4j.cluster
 

Methods in org.schwiebert.abl4j.cluster with parameters of type IConstituent
 NonTerminal NonTerminalsMapping.getNewNT(ITree<T> t, IConstituent<T> c, NonTerminal n)
           
 NonTerminal AblNtMap.getNewNT(ITree t, IConstituent c, NonTerminal ntOld)
          Associates a given NT with a new NT value if it has not been encountered before and associates this given NT with an existing NT value when it has.
 

Uses of IConstituent in org.schwiebert.abl4j.data
 

Fields in org.schwiebert.abl4j.data declared as IConstituent
private  IConstituent<T> FindIterator.searched
           
 

Methods in org.schwiebert.abl4j.data that return IConstituent
static IConstituent DataFactory.newConstituent()
           
static IConstituent DataFactory.newConstituent(ISentence sentence, int begin, int end)
           
 IConstituent<T> FindIterator.next()
           
 

Methods in org.schwiebert.abl4j.data that return types with arguments of type IConstituent
 Iterator<IConstituent<T>> ITree.findStructure(IConstituent<T> c)
          This procedure returns an iterator to c in the tree.
 List<IConstituent<T>> ITree.getConstituentStructure()
          Returns all Constituents stored in this Tree.
 

Methods in org.schwiebert.abl4j.data with parameters of type IConstituent
 boolean ITree.addStructure(IConstituent<T> c)
          Adds a constituent c to the tree.
 Iterator<IConstituent<T>> ITree.findStructure(IConstituent<T> c)
          This procedure returns an iterator to c in the tree.
 

Constructors in org.schwiebert.abl4j.data with parameters of type IConstituent
FindIterator(IConstituent<T> searched, List list)
           
 

Uses of IConstituent in org.schwiebert.abl4j.data.impl.abl
 

Classes in org.schwiebert.abl4j.data.impl.abl that implement IConstituent
 class Constituent<T>
          This class is used to store a hypothesis or a nonterminal.
 

Fields in org.schwiebert.abl4j.data.impl.abl with type parameters of type IConstituent
private  List<IConstituent<T>> Tree.structure
           
 

Methods in org.schwiebert.abl4j.data.impl.abl that return types with arguments of type IConstituent
 Iterator<IConstituent<T>> Tree.findStructure(IConstituent<T> c)
           
 List<IConstituent<T>> Tree.getConstituentStructure()
           
 

Methods in org.schwiebert.abl4j.data.impl.abl with parameters of type IConstituent
 boolean Tree.addStructure(IConstituent<T> c)
           
 Iterator<IConstituent<T>> Tree.findStructure(IConstituent<T> c)
           
 

Uses of IConstituent in org.schwiebert.abl4j.io
 

Fields in org.schwiebert.abl4j.io declared as IConstituent
private  IConstituent XmlReader.constituent
           
 

Methods in org.schwiebert.abl4j.io that return IConstituent
protected  IConstituent TigerCorpusReader.buildConstituent(HashMap<String,Object> internalMapping, ITree tree, Element nt)
           
 

Methods in org.schwiebert.abl4j.io with parameters of type IConstituent
private  void TreebankReader.readProbability(IConstituent cons, String prob)
           
 void XMLVisitor.visitConstituent(IConstituent constituent, boolean begin)
           
 void PlainTextSerializationVisitor.visitConstituent(IConstituent c, boolean begin)
           
 void ISerializationVisitor.visitConstituent(IConstituent constituent, boolean begin)
           
 

Uses of IConstituent in org.schwiebert.abl4j.select
 

Methods in org.schwiebert.abl4j.select with parameters of type IConstituent
 boolean OverlapInTree.matches(IConstituent<?> current)
           
static boolean Overlap.overlap(IConstituent a, IConstituent b)
          Returns true if the ranges defined in IConstituent a and IConstituent b do overlap.
static boolean Overlap.overlap(IConstituent a, IConstituent b)
          Returns true if the ranges defined in IConstituent a and IConstituent b do overlap.
 

Uses of IConstituent in org.schwiebert.abl4j.select.methods
 

Methods in org.schwiebert.abl4j.select.methods that return IConstituent
private  IConstituent<?> AbstractSelectMethod.findConstituent(Vector<IConstituent<?>> overlap, int begin, int end)
           
 

Methods in org.schwiebert.abl4j.select.methods that return types with arguments of type IConstituent
private  Vector<IConstituent<?>> AbstractSelectMethod.selectProbabilityInRange(ITree<?> t, Vector<IConstituent<?>> overlap, int begin, int end, KnowledgeBase known, ProbabilityStore store)
           
 

Methods in org.schwiebert.abl4j.select.methods with parameters of type IConstituent
 Phrase ConstituentSelectMethod.createPhrase(ITree<?> t, IConstituent<?> cons, int c)
           
abstract  Phrase AbstractSelectMethod.createPhrase(ITree<?> t, IConstituent<?> cons, int c)
           
 Phrase TermsSelectMethod.createPhrase(ITree t, IConstituent cons, int c)
           
 Phrase FirstSelectMethod.createPhrase(ITree t, IConstituent cons, int c)
           
 

Method parameters in org.schwiebert.abl4j.select.methods with type arguments of type IConstituent
 double TermsSelectMethod.computeCombinedProbability(ITree<?> t, Vector<IConstituent<?>> vc, ProbabilityStore prob)
           
 double FirstSelectMethod.computeCombinedProbability(ITree<?> t, Vector<IConstituent<?>> vc, ProbabilityStore prob)
           
 double ConstituentSelectMethod.computeCombinedProbability(ITree<?> t, Vector<IConstituent<?>> vc, ProbabilityStore prob)
           
abstract  double AbstractSelectMethod.computeCombinedProbability(ITree<?> t, Vector<IConstituent<?>> vector, ProbabilityStore prob)
           
private  IConstituent<?> AbstractSelectMethod.findConstituent(Vector<IConstituent<?>> overlap, int begin, int end)
           
private  Vector<IConstituent<?>> AbstractSelectMethod.selectProbabilityInRange(ITree<?> t, Vector<IConstituent<?>> overlap, int begin, int end, KnowledgeBase known, ProbabilityStore store)
           
 

Uses of IConstituent in org.schwiebert.abl4j.util
 

Method parameters in org.schwiebert.abl4j.util with type arguments of type IConstituent
static void Tools.removeCopyIf(ITree<?> t, Vector<IConstituent<?>> overlap)
          OutputIterator remove_copy_if(InputIterator first, InputIterator last, OutputIterator result, Predicate pred); Remove_copy_if copies elements from the range [first, last) to a range beginning at result, except that elements for which pred is true are not copied.
 


ABL4J (Alignment Based Learning for Java) - 0.9.7

© 2007 Stephan Schwiebert