3
0
Fork 0
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:
Christoph M. Wintersteiger 2018-04-24 12:43:11 +01:00
parent dab8e49e22
commit a1d870f19f
4 changed files with 123 additions and 10 deletions

View 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