Package opennlp.ccg.disjunctivizer

Examples of opennlp.ccg.disjunctivizer.VertexMatchFilter


   
    edge = new LFEdge(two,
        new LFVertex(new NominalAtom("w2"), new Proposition("blah blah")),
        new LFEdgeLabel(new ModeLabel("blase")));
   
    filter = new VertexMatchFilter(two, MatchType.SOURCE_MATCH);
  }
View Full Code Here


  }

  @Test
  public void testVertexMatchFilter() {
    try {
      new VertexMatchFilter(null, MatchType.SOURCE_PREDICATE_MATCH);
      fail("able to specify null basis");
    }
    catch(IllegalArgumentException expected) {
      // do nothing
    }
View Full Code Here

TOP

Related Classes of opennlp.ccg.disjunctivizer.VertexMatchFilter

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.