We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 89507b4 commit 76774feCopy full SHA for 76774fe
src/solvers/prop/prop_resource_limits.h
@@ -0,0 +1,23 @@
1
+/*******************************************************************\
2
+
3
+Module: Context-based Incremental Solver Interface
4
5
+Author: Peter Schrammel
6
7
+\*******************************************************************/
8
9
+/// \file
10
+/// Context-based interface for incremental solvers
11
12
+#ifndef CPROVER_SOLVERS_PROP_PROP_RESOURCE_LIMITS_H
13
+#define CPROVER_SOLVERS_PROP_PROP_RESOURCE_LIMITS_H
14
15
+class prop_resource_limitst
16
+{
17
+public:
18
+ virtual void set_time_limit_seconds(uint32_t) = 0;
19
20
+ virtual ~prop_resource_limitst() = default;
21
+};
22
23
+#endif // CPROVER_SOLVERS_PROP_PROP_RESOURCE_LIMITS_H
0 commit comments