1
0
forked from GitHub/gf-rgl
Commit Graph

105 Commits

Author SHA1 Message Date
Ayberk Tosun
458b894596 Alternative linearization for in_Prep 2017-08-23 14:21:53 +03:00
Ayberk Tosun
0a2f8fc184 Space before semicolon 2017-08-23 14:21:05 +03:00
Ayberk Tosun
ce2c441352 Add yes_Utt and no_Utt 2017-08-23 12:27:57 +03:00
Ayberk Tosun
f004826f0a Implement during_Prep 2017-08-23 12:16:04 +03:00
Ayberk Tosun
f0519551c4 Add linearization for in_Prep 2017-08-23 12:12:55 +03:00
Ayberk Tosun
cc50be36b0 Import AdverbTur only from GrammarTur 2017-08-23 12:09:08 +03:00
Ayberk Tosun
9aeefb540e Implement on_Prep 2017-08-22 18:57:57 +03:00
Ayberk Tosun
46c5af65d0 Implement and_Conj and or_Conj 2017-08-22 18:53:58 +03:00
Ayberk Tosun
359be0d077 Add some comments for the prepositions 2017-08-22 18:48:34 +03:00
Ayberk Tosun
d4a345e830 Fix with_Prep 2017-08-22 18:38:01 +03:00
Ayberk Tosun
45c2394353 Implement between_Prep though ConjNP is needed for it 2017-08-22 18:34:10 +03:00
Ayberk Tosun
4d8a5e9a05 Implement behind_Prep 2017-08-22 18:32:19 +03:00
Ayberk Tosun
d06a76bab9 Various cleanups 2017-08-22 17:49:40 +03:00
Ayberk Tosun
4b0e198742 Implement PrepNP 2017-08-22 17:49:25 +03:00
Ayberk Tosun
5734469aa2 Add some prepositions 2017-08-22 17:49:00 +03:00
Ayberk Tosun
baaa8ca2e5 Create AdverbTur.gf 2017-08-22 17:14:34 +03:00
Ayberk Tosun
98e6a250b4 Fix indentation 2017-08-22 16:59:27 +03:00
Ayberk Tosun
c53dd7e2ea Clean StructuralTur up 2017-08-22 16:57:27 +03:00
Ayberk Tosun
2c32566d3a Minimum viable implementation for MassNP 2017-08-22 16:42:56 +03:00
Ayberk Tosun
d24bf91330 UseIndef in IndefArt 2017-08-22 16:16:34 +03:00
Ayberk Tosun
a9a3d48c7f Get rid of some trailing spaces 2017-08-22 14:18:22 +03:00
Ayberk Tosun
7f98c3198e Implement ComplSlash 2017-08-22 12:36:27 +03:00
Ayberk Tosun
7bc30b77f4 Give the lincat for VPSlash 2017-08-22 12:24:14 +03:00
Ayberk Tosun
90032d0438 Make mkClause take an Agr 2017-08-22 12:18:18 +03:00
Ayberk Tosun
af62b770b0 Do the necessary imports in VerbTur 2017-08-22 12:17:46 +03:00
Ayberk Tosun
27da43c37d Some progress on the implementation of mkClause 2017-08-22 12:03:59 +03:00
Ayberk Tosun
27357ad684 Create the VerbTur module 2017-08-22 11:59:19 +03:00
Ayberk Tosun
3bcbf6d25d Use mkClause in the linearization of PredVP 2017-08-22 11:56:23 +03:00
Ayberk Tosun
a112b13d9f Start working on mkClause for Turkish 2017-08-22 11:56:11 +03:00
Ayberk Tosun
6e9d4ac20e Declare VP = Verb 2017-08-22 11:55:54 +03:00
Ayberk Tosun
caad211a9f Create the SentenceTur module 2017-08-22 11:50:57 +03:00
Ayberk Tosun
f4b092fb47 Remove trailing space 2017-08-22 11:48:43 +03:00
Ayberk Tosun
2665910dc2 Define the param UseGen and make use of that 2017-08-22 11:38:38 +03:00
Ayberk Tosun
1362bbdd03 Add a useGen field 2017-08-21 18:16:44 +03:00
Ayberk Tosun
99c70256ca Work on the Dat and Gen cases of ComplN2 2017-08-21 17:11:59 +03:00
Ayberk Tosun
f19459929c Merge remote-tracking branch 'remotes/upstream/master' 2017-08-21 16:28:10 +03:00
Krasimir Angelov
72a69c587c fixed typo 2017-08-21 15:03:38 +02:00
Ayberk Tosun
3b6663bb6d Start working on ComplN2 2017-08-21 15:59:44 +03:00
Krasimir Angelov
f671b709a9 fix in AdjCN for Turkish 2017-08-21 13:06:11 +02:00
Krasimir Angelov
24cb6acd53 fixed more warnings in Turkish 2017-08-20 15:52:26 +02:00
Krasimir Angelov
d0c7531dfa fix some warnings in the compilation of Turkish 2017-08-19 23:34:59 +02:00
Krasimir Angelov
128cae61d5 this/that_Quant in Turkish 2017-08-19 22:19:14 +02:00
Krasimir Angelov
a90662218f UseComparA in Turkish 2017-08-19 22:11:35 +02:00
Krasimir Angelov
3201407474 some fragments in the Turkish grammar 2017-08-19 22:04:46 +02:00
hallgren
4061d03aa2 lib/src/*/Numeral*.gf: fix inconsistent inheritance form Cat
While the abstract Numeral inherits only Cat[Numeral,Digits], some of the
concrete NumeralNNN of Numeral inherited everything from CatNNN.

Normally the compiler outputs a warning message when a concrete syntax 
contains superflous lincats, but apparently not when they get included
through inheritance...

This does not seem to cause problems in the Haskell run-time system, but the 
C run-time system fails to load PGFs with superflous lincats.

This problems shows up when creating application grammars that inherit Numeral.
The Phrasebook is an example of such a grammar.
2015-08-26 11:53:16 +00:00
krasimir
a47aac0ad8 use BIND in IIDig for all languages in the library 2015-06-11 12:00:57 +00:00
hallgren
75278a5828 Adjust the -path flags in 112 RGL modules
The -path flags in the RGL modules compiled during 'cabal build' now refer 
directly to the needed source directories. References 'alltenses' and 'present'
(and the nonexistent directory 'mathematical') have been removed.

This allows the files to be compiled in any order (e.g. in parallel). In
addition, you can do things like

	gf -retain lib/src/api/TrySwe.gf

without compiling/installing any other RGL modules first, and without 
setting any other path flags or environment variables.
2014-08-18 22:26:29 +00:00
hallgren
1ccd47784d Add explicit character encoding specifications in 39 more RGL modules
To silence warnings and avoid potential problems after changing the default
encoding to UTF-8.
2013-11-25 18:17:12 +00:00
kr.angelov
2756fef545 fix the compilation of LangTur 2013-09-01 11:48:02 +00:00
aarne
0beda69f6c small adjustments in Make.hs and some resources to make the lib compile with less warnings and without errors 2010-04-14 16:25:17 +00:00