https://github.com/RichardMoot/GrailLight
Raw File
Tip revision: 4aebb3aa254b8712990574cfd86ae6bce0da2d58 authored by Richard Moot on 14 May 2015, 18:46:24 UTC
Corrected computation of prosodics
Tip revision: 4aebb3a
gen_parseable.pl

% unparsed (without pl extention, add it yourself) is a file automatically produced by Grail Light.
:- compile(unparsed).
% specify the file used for the parse_all call of Grail Light here
:- compile(ml_vpmod).

start :-
	/* use your own filename here */
	tell('ml_linearone.pl'),
	clause(sent(N, Sem), Body),
	( unparsed(N, _, _) -> true ; portray_clause((sent(N,Sem):-Body))),
	fail.
start :-
	told.
back to top