summaryrefslogtreecommitdiff
path: root/src/options/strings_process_loop_mode.h
blob: fb2248eec014c4891951b7d9fa29e1a5d3ac8f7b (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
/*********************                                                        */
/*! \file strings_process_loop_mode.h
 ** \verbatim
 ** Top contributors (to current version):
 **   Andres Noetzli
 ** 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 Modes for processing looping word equations in the string solver.
 **
 ** Modes for processing looping word equations in the string solver.
 **/

#include "cvc4_private.h"

#ifndef CVC4__THEORY__STRINGS__PROCESS_LOOP_MODE_H
#define CVC4__THEORY__STRINGS__PROCESS_LOOP_MODE_H

#include <iosfwd>

namespace CVC4 {
namespace theory {
namespace strings {

/** Enumeration of bit-blasting modes */
enum class ProcessLoopMode
{
  /** Perform full loop processing. */
  FULL,

  /** Omit normal loop breaking. */
  SIMPLE,

  /** Abort if normal loop breaking is required. */
  SIMPLE_ABORT,

  /** Omit loop processing. */
  NONE,

  /** Abort if looping word equations are encountered. */
  ABORT
}; // enum ProcessLoopMode

}  // namespace strings
}  // namespace theory

std::ostream& operator<<(std::ostream& out,
                         theory::strings::ProcessLoopMode mode);

}  // namespace CVC4

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