Library fl.aut.re_standard


Require Import regexp.

Section Standard.
  Variable char: finType.

  Fixpoint standard (e: regular_expression char) :=
    match e with
        | Not _false
        | And _ _false
        | Dotfalse
        | _true
    end.
End Standard.