1 /*************************************************************************/
2 /* Copyright (c) 2004                                                    */
3 /* Daniel Sleator, David Temperley, and John Lafferty                    */
4 /* Copyright (c) 2012 Linas Vepstas                                      */
5 /* All rights reserved                                                   */
6 /*                                                                       */
7 /* Use of the link grammar parsing system is subject to the terms of the */
8 /* license set forth in the LICENSE file included with this software.    */
9 /* This license allows free redistribution and use in source and binary  */
10 /* forms, with or without modification, subject to certain conditions.   */
11 /*                                                                       */
12 /*************************************************************************/
13 
14 #ifndef _LINKGRAMMAR_BUILD_DISJUNCTS_H
15 #define _LINKGRAMMAR_BUILD_DISJUNCTS_H
16 
17 #include "api-types.h"
18 #include "link-includes.h"
19 
20 Disjunct *build_disjuncts_for_exp(Sentence sent, Exp *, const char *,
21                                   const gword_set *, double cost_cutoff,
22                                   Parse_Options opts);
23 #endif /* _LINKGRAMMAR_BUILD_DISJUNCTS_H */
24