mirror of
https://github.com/Z3Prover/z3
synced 2025-04-06 17:44:08 +00:00
Create solve_eqs2_tactic.h
This commit is contained in:
parent
1dca6402fb
commit
ba6b21d7d4
41
src/tactic/core/solve_eqs2_tactic.h
Normal file
41
src/tactic/core/solve_eqs2_tactic.h
Normal file
|
@ -0,0 +1,41 @@
|
||||||
|
/*++
|
||||||
|
Copyright (c) 2022 Microsoft Corporation
|
||||||
|
|
||||||
|
Module Name:
|
||||||
|
|
||||||
|
solve_eqs2_tactic.h
|
||||||
|
|
||||||
|
Abstract:
|
||||||
|
|
||||||
|
Tactic for solving variables
|
||||||
|
|
||||||
|
Author:
|
||||||
|
|
||||||
|
Nikolaj Bjorner (nbjorner) 2022-10-30
|
||||||
|
|
||||||
|
--*/
|
||||||
|
#pragma once
|
||||||
|
|
||||||
|
#include "util/params.h"
|
||||||
|
#include "tactic/tactic.h"
|
||||||
|
#include "tactic/dependent_expr_state_tactic.h"
|
||||||
|
#include "ast/simplifiers/solve_eqs.h"
|
||||||
|
|
||||||
|
|
||||||
|
class solve_eqs2_tactic_factory : public dependent_expr_simplifier_factory {
|
||||||
|
public:
|
||||||
|
dependent_expr_simplifier* mk(ast_manager& m, params_ref const& p, dependent_expr_state& s) override {
|
||||||
|
return alloc(euf::solve_eqs, m, s);
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
inline tactic * mk_solve_eqs2_tactic(ast_manager& m, params_ref const& p) {
|
||||||
|
return alloc(dependent_expr_state_tactic, m, p, alloc(solve_eqs2_tactic_factory), "solve-eqs2");
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/*
|
||||||
|
ADD_TACTIC("solve-eqs2", "solve for variables.", "mk_solve_eqs2_tactic(m, p)")
|
||||||
|
*/
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue