# 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 %+Inf ] | $[ %+V %+PrfPrc ] | $[ %+V %+PrsPrc ] | $[ %+V %+Sup ] | $[ %+V %+VAbess ] | $[ %+V %+VGen ] | $[ %+V %+Ger ] | $[ %+V %+Ind ] | $[ %+V %+Cond ] | $[ %+V %+Imprt ] | $[ %+V %+ImprtII ] | $[ %+V %+Pot ] | $[ %+V %+Neg ] | $[ %+V %+Actio ] | $[ %+V %+Cond ] ] ];