# verb-filter.regex # # It contains all and only the two initial tags used for inflected verb forms # It is used to create a transducer that contains all and only the possible # verb forms, including derived verbs, irrespective of the POS of the root. # The only requirement is that the final POS is a verb, and that it does not # contain any number parts (ie first part numbers of a compound ending as V). [ ~$[ %+Num ] & [ $[ %+V %+IV %+Inf ] | $[ %+V %+IV %+PrfPrc ] | $[ %+V %+IV %+PrsPrc ] | $[ %+V %+IV %+Sup ] | $[ %+V %+IV %+VAbess ] | $[ %+V %+IV %+VGen ] | $[ %+V %+IV %+Ger ] | $[ %+V %+IV %+Ind ] | $[ %+V %+IV %+Cond ] | $[ %+V %+IV %+Imprt ] | $[ %+V %+IV %+ImprtII ] | $[ %+V %+IV %+Pot ] | $[ %+V %+IV %+Neg ] | $[ %+V %+IV %+Actio ] | $[ %+V %+IV %+Cond ] ] ];