From 2a697eebb2f73556d62d3d6d26f14f1276c25d61 Mon Sep 17 00:00:00 2001 From: Inari Listenmaa Date: Wed, 14 Aug 2019 14:26:04 +0200 Subject: [PATCH] Add empty implementation of ProgrVPSlash to Extend(Romance)Functor --- src/common/ExtendFunctor.gf | 1 + src/romance/ExtendRomanceFunctor.gf | 2 ++ 2 files changed, 3 insertions(+) diff --git a/src/common/ExtendFunctor.gf b/src/common/ExtendFunctor.gf index 251b52a98..c07d34353 100644 --- a/src/common/ExtendFunctor.gf +++ b/src/common/ExtendFunctor.gf @@ -50,6 +50,7 @@ lin PastPartAP = variants {} ; -- VPSlash -> AP ; -- lost (opportunity) ; (opportunity) lost in space PastPartAgentAP = variants {} ; -- VPSlash -> NP -> AP ; -- (opportunity) lost by the company NominalizeVPSlashNP = variants {} ; -- VPSlash -> NP -> NP ; + ProgrVPSlash = variants {} ; -- VPSlash -> VPSlash ; ExistsNP = ExistNP ; -- NP -> Cl ; -- there exists a number / there exist numbers ExistCN cn = ExistNP (DetCN (DetQuant IndefArt NumSg) cn) ; ExistMassCN cn = ExistNP (MassNP cn) ; diff --git a/src/romance/ExtendRomanceFunctor.gf b/src/romance/ExtendRomanceFunctor.gf index 1fa535506..348e2bee3 100644 --- a/src/romance/ExtendRomanceFunctor.gf +++ b/src/romance/ExtendRomanceFunctor.gf @@ -119,6 +119,8 @@ incomplete concrete ExtendRomanceFunctor of Extend = NominalizeVPSlashNP = variants {} ; -- VPSlash -> NP -> NP ; + ProgrVPSlash = variants {} ; -- VPSlash -> VPSlash ; + ExistCN cn = ExistNP (DetCN (DetQuant IndefArt NumSg) cn) ; ExistMassCN cn = ExistNP (MassNP cn) ; ExistPluralCN cn = ExistNP (DetCN (DetQuant IndefArt NumPl) cn) ;