edu.stanford.nlp.parser.lexparser
Interface Scorer

All Known Implementing Classes:
ExhaustiveDependencyParser, ExhaustivePCFGParser, IterativeCKYPCFGParser

public interface Scorer

Interface for supporting A* scoring.

Author:
Dan Klein

Method Summary
 boolean iPossible(edu.stanford.nlp.parser.lexparser.Hook hook)
           
 double iScore(Edge edge)
           
 boolean oPossible(edu.stanford.nlp.parser.lexparser.Hook hook)
           
 double oScore(Edge edge)
           
 boolean parse(List words)
           
 

Method Detail

oScore

double oScore(Edge edge)

iScore

double iScore(Edge edge)

oPossible

boolean oPossible(edu.stanford.nlp.parser.lexparser.Hook hook)

iPossible

boolean iPossible(edu.stanford.nlp.parser.lexparser.Hook hook)

parse

boolean parse(List words)


Stanford NLP Group