summaryrefslogtreecommitdiff
path: root/src/theory/strings/regexp_enumerator.h
blob: 289c8b0466882b12ffb94c0120d16b2a08a68447 (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
/******************************************************************************
 * Top contributors (to current version):
 *   Andrew Reynolds
 *
 * This file is part of the cvc5 project.
 *
 * Copyright (c) 2009-2021 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.
 * ****************************************************************************
 *
 * Enumerators for regular expressions.
 */

#include "cvc5_private.h"

#ifndef CVC5__THEORY__STRINGS__REGEXP_ENUMERATOR_H
#define CVC5__THEORY__STRINGS__REGEXP_ENUMERATOR_H

#include <vector>

#include "expr/node.h"
#include "expr/type_node.h"
#include "theory/strings/type_enumerator.h"

namespace cvc5 {
namespace theory {
namespace strings {

/**
 * Simple regular expression enumerator, generates only singleton language
 * regular expressions from a string enumeration, in other words:
 *   (str.to_re s1) ... (str.to_re sn) ....
 * where s1 ... sn ... is the enumeration for strings.
 */
class RegExpEnumerator : public TypeEnumeratorBase<RegExpEnumerator>
{
 public:
  RegExpEnumerator(TypeNode type, TypeEnumeratorProperties* tep = nullptr);
  RegExpEnumerator(const RegExpEnumerator& enumerator);
  ~RegExpEnumerator() {}
  /** get the current term */
  Node operator*() override;
  /** increment */
  RegExpEnumerator& operator++() override;
  /** is this enumerator finished? */
  bool isFinished() override;

 private:
  /** underlying string enumerator */
  StringEnumerator d_senum;
};

}  // namespace strings
}  // namespace theory
}  // namespace cvc5

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