001package org.maltparser.parser.guide;
002
003import org.maltparser.core.exception.MaltChainedException;
004import org.maltparser.core.syntaxgraph.DependencyStructure;
005import org.maltparser.parser.ParserConfiguration;
006import org.maltparser.parser.history.action.GuideUserAction;
007
008public interface OracleGuide extends Guide {
009        public GuideUserAction predict(DependencyStructure gold, ParserConfiguration config) throws MaltChainedException;
010}