GrammaticalFramework / GF

Archive of monolithic GF repository until 2018-07-25
http://www.grammaticalframework.org/
Other
189 stars 51 forks source link

(Romance) mv numForms to CommonRomance; rm from Morpho* #38

Closed odanoburu closed 6 years ago

odanoburu commented 6 years ago

notes

odanoburu commented 6 years ago

hum, the build failed because Catalan also uses the Romance functor (are there any other languages that use it? Fre, Spa, Por, Cat, Ita, ...?)

odanoburu commented 6 years ago

I also thought of defining polymorphic versions of numForms and genForms (i.e., numForms : (a:Type) -> a -> a -> Number => a), so that I could define things like:

  genNumForms : Str -> Str -> Str -> Str -> Gender => Number => Str ;
  genNumForms ms fs mp fp = polyGenForms (Number => Str) (numForms ms mp) (numForms fs fp)  ;

is it ok if I do this and submit a PR?