mirror of
https://github.com/Z3Prover/z3
synced 2025-08-24 20:16:00 +00:00
Added tactic for QF_FPLRA
This commit is contained in:
parent
dab8e49e22
commit
a1d870f19f
4 changed files with 123 additions and 10 deletions
38
src/tactic/fpa/qffplra_tactic.h
Normal file
38
src/tactic/fpa/qffplra_tactic.h
Normal file
|
@ -0,0 +1,38 @@
|
|||
#pragma once
|
||||
/*++
|
||||
Copyright (c) 2012 Microsoft Corporation
|
||||
|
||||
Module Name:
|
||||
|
||||
qffplra_tactic.h
|
||||
|
||||
Abstract:
|
||||
|
||||
Tactic for QF_FPLRA benchmarks.
|
||||
|
||||
Author:
|
||||
|
||||
Christoph (cwinter) 2018-04-24
|
||||
|
||||
Notes:
|
||||
|
||||
|
||||
--*/
|
||||
#ifndef QFFPLRA_TACTIC_H_
|
||||
#define QFFPLRA_TACTIC_H_
|
||||
|
||||
#include "util/params.h"
|
||||
class ast_manager;
|
||||
class tactic;
|
||||
|
||||
tactic * mk_qffplra_tactic(ast_manager & m, params_ref const & p = params_ref());
|
||||
/*
|
||||
ADD_TACTIC("qffplra", "(try to) solve goal using the tactic for QF_FPLRA.", "mk_qffplra_tactic(m, p)")
|
||||
*/
|
||||
|
||||
probe * mk_is_qffplra_probe();
|
||||
/*
|
||||
ADD_PROBE("is-qffplra", "true if the goal is in QF_FPLRA.", "mk_is_qffplra_probe()")
|
||||
*/
|
||||
|
||||
#endif
|
Loading…
Add table
Add a link
Reference in a new issue