Documentation

Linglib.Syntax.DependencyGrammar.Formal.Government

Government in Dependency Grammar #

Formalizes government ([Osb19], Ch. 4 §4.8 and Ch. 5): the mechanism by which a head determines the morphosyntactic form of its dependent — case on a complement of a preposition, verb form on the complement of a control verb, finiteness of a clausal complement.

Government is orthogonal to valency: "want to go" and "enjoy swimming" share an xcomp slot but require different forms (infinitive vs. gerund) on the complement.

Main declarations #

Implementation notes #

Government dimensions and values #

A morphosyntactic feature a head can govern on its dependent. [Osb19].

Instances For
    Equations
    • One or more equations did not get rendered due to their size.
    Instances For
      @[implicit_reducible]
      Equations

      The typed value space for governed features (replaces stringly-typed requirement tags). [Osb19].

      Instances For
        Equations
        • One or more equations did not get rendered due to their size.
        Instances For
          @[implicit_reducible]
          Equations

          A government requirement: a head of category headCat requires its dependent on relation depRel to have value requiredValue of feature feature. [Osb19].

          Instances For
            Equations
            • One or more equations did not get rendered due to their size.
            Instances For
              def DepGrammar.Government.instDecidableEqGovRequirement.decEq (x✝ x✝¹ : GovRequirement) :
              Decidable (x✝ = x✝¹)
              Equations
              • One or more equations did not get rendered due to their size.
              Instances For

                English government data #

                "want to go" — want governs the infinitival form of its xcomp.

                Equations
                • One or more equations did not get rendered due to their size.
                Instances For

                  "make him go" — make governs the bare form of its xcomp.

                  Equations
                  • One or more equations did not get rendered due to their size.
                  Instances For

                    "enjoy swimming" — enjoy governs the gerund form of its xcomp.

                    Equations
                    • One or more equations did not get rendered due to their size.
                    Instances For

                      "think that ..." — think governs a finite ccomp.

                      Equations
                      • One or more equations did not get rendered due to their size.
                      Instances For

                        "with him / *with he" — preposition governs accusative on its obj.

                        Equations
                        • One or more equations did not get rendered due to their size.
                        Instances For

                          The English government patterns from [Osb19].

                          Equations
                          • One or more equations did not get rendered due to their size.
                          Instances For

                            Government checking #

                            A dependency tree satisfies its government requirements when every matching head-cat / dep-rel pair carries the required value.

                            Equations
                            • One or more equations did not get rendered due to their size.
                            Instances For

                              Example trees #

                              "She wants to go": wants(1) heads she(0) (nsubj) and go(3) (xcomp); go(3) heads to(2) (mark).

                              Equations
                              • One or more equations did not get rendered due to their size.
                              Instances For

                                "She enjoys swimming": enjoys(1) heads she(0) (nsubj) and swimming(2) (xcomp).

                                Equations
                                • One or more equations did not get rendered due to their size.
                                Instances For

                                  "with him": preposition governs accusative — well-formed.

                                  Equations
                                  • One or more equations did not get rendered due to their size.
                                  Instances For

                                    "with he": preposition government violation (nominative for accusative).

                                    Equations
                                    • One or more equations did not get rendered due to their size.
                                    Instances For

                                      Regression guard for matchGovFeature: a preposition's obj bearing a marked case other than the required accusative (here dative) violates government. The earlier checker fell through to true for any case outside {nom, acc, gen}, so a dative object spuriously satisfied govPrepAcc.

                                      Equations
                                      • One or more equations did not get rendered due to their size.
                                      Instances For

                                        Checker behaviour on the fixtures #