summaryrefslogtreecommitdiff
path: root/src/util/options.h
blob: 6104470d2dfac77b1097c8c13bf8d9e7ed3013b8 (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
#ifndef __CVC4__OPTIONS_H
#define __CVC4__OPTIONS_H

namespace CVC4 {

struct Options {
  std::string binary_name;

  bool smtcomp_mode;
  bool statistics;

  /* -1 means no output */
  /* 0 is normal (and default) -- warnings only */
  /* 1 is warnings + notices so the user doesn't get too bored */
  /* 2 is chatty, giving statistical things etc. */
  /* with 3, the solver is slowed down by all the scrolling */
  int verbosity;

  std::string lang;

  Options() : binary_name(),
              smtcomp_mode(false),
              statistics(false),
              verbosity(0),
              lang()
  {}
};/* struct Options */

}/* CVC4 namespace */

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