Package org.maltparserx.parser

Examples of org.maltparserx.parser.TransitionSystem


 
  public TransitionSystem makeTransitionSystem() throws MaltChainedException {
    if (manager.getConfigLogger().isInfoEnabled()) {
      manager.getConfigLogger().info("  Transition system    : Non-Projective\n");
    }
    TransitionSystem ts = new NonProjective();
    ts.setPropagationManager(manager.getPropagationManager());
    return ts;
  }
View Full Code Here


 
  public TransitionSystem makeTransitionSystem() throws MaltChainedException {
    if (manager.getConfigLogger().isInfoEnabled()) {
      manager.getConfigLogger().info("  Transition system    : Projective\n");
    }
    TransitionSystem ts = new Projective();
    ts.setPropagationManager(manager.getPropagationManager());
    return ts;
  }
View Full Code Here

 
  public TransitionSystem makeTransitionSystem() throws MaltChainedException {
    if (manager.getConfigLogger().isInfoEnabled()) {
      manager.getConfigLogger().info("  Transition system    : Non-Projective\n");
    }
    TransitionSystem ts = new NonProjective();
    ts.setPropagationManager(manager.getPropagationManager());
    return ts;
  }
View Full Code Here

 
  public TransitionSystem makeTransitionSystem() throws MaltChainedException {
    if (manager.getConfigLogger().isInfoEnabled()) {
      manager.getConfigLogger().info("  Transition system    : Arc-Eager\n");
    }
    TransitionSystem ts = new ArcEager();
    ts.setPropagationManager(manager.getPropagationManager());
    return ts;
  }
View Full Code Here

 
  public TransitionSystem makeTransitionSystem() throws MaltChainedException {
    if (manager.getConfigLogger().isInfoEnabled()) {
      manager.getConfigLogger().info("  Transition system    : Arc-Standard\n");
    }
    TransitionSystem ts = new ArcStandard();
    ts.setPropagationManager(manager.getPropagationManager());
    return ts;
  }
View Full Code Here

 
  public TransitionSystem makeTransitionSystem() throws MaltChainedException {
    if (manager.getConfigLogger().isInfoEnabled()) {
      manager.getConfigLogger().info("  Transition system    : Non-Projective\n");
    }
    TransitionSystem ts = new NonProjective();
    ts.setPropagationManager(manager.getPropagationManager());
    return ts;
  }
View Full Code Here

 
  public TransitionSystem makeTransitionSystem() throws MaltChainedException {
    if (manager.getConfigLogger().isInfoEnabled()) {
      manager.getConfigLogger().info("  Transition system    : Planar Arc-Eager\n");
    }
    TransitionSystem ts = new Planar();
    ts.setPropagationManager(manager.getPropagationManager());
    return ts;
  }
View Full Code Here

 
  public TransitionSystem makeTransitionSystem() throws MaltChainedException {
    if (manager.getConfigLogger().isInfoEnabled()) {
      manager.getConfigLogger().info("  Transition system    : 2-Planar Arc-Eager\n");
    }
    TransitionSystem ts = new TwoPlanar();
    ts.setPropagationManager(manager.getPropagationManager());
    return ts;
  }
View Full Code Here

 
  public TransitionSystem makeTransitionSystem() throws MaltChainedException {
    if (manager.getConfigLogger().isInfoEnabled()) {
      manager.getConfigLogger().info("  Transition system    : Projective\n");
    }
    TransitionSystem ts = new Projective();
    ts.setPropagationManager(manager.getPropagationManager());
    return ts;
  }
View Full Code Here

TOP

Related Classes of org.maltparserx.parser.TransitionSystem

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.