summaryrefslogtreecommitdiff
path: root/src/theory/interrupted.h
blob: bb099114d8d6d7d0de42de09e3c9f979e1085f30 (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
/******************************************************************************
 * Top contributors (to current version):
 *   Mathias Preiner, Aina Niemetz, Morgan Deters
 *
 * 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.
 * ****************************************************************************
 *
 * An exception signaling that a Theory should immediately
 * stop performing processing.
 *
 * An exception signaling that a Theory should immediately stop
 * performing processing and relinquish control to its caller (e.g.,
 * in a parallel environment).  A Theory might be interrupted if it
 * calls into its cvc5::theory::OutputChannel, and it should only
 * catch this exception to perform emergency repair of any invariants
 * it must re-establish.  Further, if this exception is caught by a
 * Theory, the Theory should rethrow the same exception (via "throw;"
 * in the exception block) rather than return, as the Interrupted
 * instance might contain additional information needed for the
 * proper management of cvc5 components.
 */

#include "cvc5_private.h"

#ifndef CVC5__THEORY__INTERRUPTED_H
#define CVC5__THEORY__INTERRUPTED_H

#include "base/exception.h"

namespace cvc5 {
namespace theory {

class Interrupted : public cvc5::Exception
{
}; /* class Interrupted */

}  // namespace theory
}  // namespace cvc5

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