ABL4J (Alignment Based Learning for Java) - 0.9.7

Uses of Interface
org.schwiebert.abl4j.distance.EditOperation

Packages that use EditOperation
org.schwiebert.abl4j.align   
org.schwiebert.abl4j.align.methods   
org.schwiebert.abl4j.distance   
 

Uses of EditOperation in org.schwiebert.abl4j.align
 

Fields in org.schwiebert.abl4j.align with type parameters of type EditOperation
private  Vector<EditOperation> AllAlignment.operations
           
 

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

Method parameters in org.schwiebert.abl4j.align.methods with type arguments of type EditOperation
protected  void AbstractAdvancedMethod.handleEditOperationAlignment(ITree t1, ITree t2, Vector<EditOperation> alignments)
           
 

Uses of EditOperation in org.schwiebert.abl4j.distance
 

Classes in org.schwiebert.abl4j.distance that implement EditOperation
static class EditOperation.Delete
           
static class EditOperation.Insert
           
static class EditOperation.SubDis
           
static class EditOperation.Substitute
           
 

Fields in org.schwiebert.abl4j.distance with type parameters of type EditOperation
protected  List<EditOperation> EditDistance.operations
           
 

Methods in org.schwiebert.abl4j.distance that return types with arguments of type EditOperation
 Pair<Float,EditOperation> EditOperation.gamma(Pair<Integer,Integer> p)
          return the gamma value of the operation (the pair of ints are indices in the sentences and 1 is the first word in the sentence)
 Pair<Float,EditOperation> EditOperation.Delete.gamma(Pair<Integer,Integer> pair)
           
 Pair<Float,EditOperation> EditOperation.Insert.gamma(Pair<Integer,Integer> pair)
           
 Pair<Float,EditOperation> EditOperation.Substitute.gamma(Pair<Integer,Integer> pair)
           
 Pair<Float,EditOperation> EditOperation.SubDis.gamma(Pair<Integer,Integer> pair)
          mat=((index_S/|S|)-(index_T/|T|))*mean(|S|,|T|)
 List<EditOperation> EditDistance.getOperations()
           
 Pair<Float,EditOperation> EditDistance.minGamma(Pair<Integer,Integer> p)
           
 

Constructor parameters in org.schwiebert.abl4j.distance with type arguments of type EditOperation
EditDistance(List<EditOperation> op)
           
WagnerFisher(int b1, int e1, int b2, int e2, List<EditOperation> op)
          This procedure builds the edit distance matrix and the alignment (see class Edit_distance).
 


ABL4J (Alignment Based Learning for Java) - 0.9.7

© 2007 Stephan Schwiebert