https://github.com/RichardMoot/GrailLight
Raw File
Tip revision: 67fbacd0e365d9008c021016377c0cfe1f1e309d authored by Richard Moot on 27 April 2021, 15:02:38 UTC
Update Supertag.tcl
Tip revision: 67fbacd
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