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