summaryrefslogtreecommitdiff
path: root/src/theory/strings/regexp_elim.h
blob: dbd4102b663b18c211ebc1b64032b20227d650df (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
/*********************                                                        */
/*! \file regexp_elim.h
 ** \verbatim
 ** Top contributors (to current version):
 **   Andrew Reynolds
 ** This file is part of the CVC4 project.
 ** Copyright (c) 2009-2019 by the authors listed in the file AUTHORS
 ** in the top-level source directory) and their institutional affiliations.
 ** All rights reserved.  See the file COPYING in the top-level source
 ** directory for licensing information.\endverbatim
 **
 ** \brief Techniques for eliminating regular expressions
 **
 **/

#include "cvc4_private.h"
#ifndef CVC4__THEORY__STRINGS__REGEXP_ELIM_H
#define CVC4__THEORY__STRINGS__REGEXP_ELIM_H

#include "expr/node.h"

namespace CVC4 {
namespace theory {
namespace strings {

/** Regular expression membership elimination
 *
 * This class implements techniques for reducing regular expression memberships
 * to bounded integer quantifiers + extended function constraints.
 *
 * It is used by TheoryStrings during ppRewrite.
 */
class RegExpElimination
{
 public:
  RegExpElimination();
  /** eliminate membership
   *
   * This method takes as input a regular expression membership atom of the
   * form (str.in.re x R). If this method returns a non-null node ret, then ret
   * is equivalent to atom.
   */
  Node eliminate(Node atom);

 private:
  /** common terms */
  Node d_zero;
  Node d_one;
  Node d_neg_one;
  /** return elimination
   *
   * This method is called when atom is rewritten to atomElim, and returns
   * atomElim. id is an identifier indicating the reason for the elimination.
   */
  Node returnElim(Node atom, Node atomElim, const char* id);
  /** elimination for regular expression concatenation */
  Node eliminateConcat(Node atom);
  /** elimination for regular expression star */
  Node eliminateStar(Node atom);
}; /* class RegExpElimination */

}  // namespace strings
}  // namespace theory
}  // namespace CVC4

#endif /* CVC4__THEORY__STRINGS__REGEXP_ELIM_H */
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback