mirror of
https://github.com/Z3Prover/z3
synced 2025-06-28 00:48:45 +00:00
FPA bugfixes
Signed-off-by: Christoph M. Wintersteiger <cwinter@microsoft.com>
This commit is contained in:
parent
b30e61e528
commit
4e913bb18c
3 changed files with 14 additions and 8 deletions
|
@ -27,7 +27,11 @@ Revision History:
|
|||
namespace smt {
|
||||
|
||||
class theory_fpa : public theory {
|
||||
typedef trail_stack<theory_fpa> th_trail_stack;
|
||||
class th_trail_stack : public trail_stack<theory_fpa> {
|
||||
public:
|
||||
th_trail_stack(theory_fpa & th) : trail_stack<theory_fpa>(th) {}
|
||||
virtual ~th_trail_stack() {}
|
||||
};
|
||||
|
||||
public:
|
||||
class atom {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue