Skip to content

Commit 76774fe

Browse files
Add resource limits capability interface
1 parent 89507b4 commit 76774fe

File tree

1 file changed

+23
-0
lines changed

1 file changed

+23
-0
lines changed
Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)