mirror of
https://github.com/Z3Prover/z3
synced 2025-04-28 19:35:50 +00:00
add stubs for arithmetic
This commit is contained in:
parent
e683f4be21
commit
4f0c743e2b
8 changed files with 231 additions and 0 deletions
30
src/sat/smt/arith_diagnostics.cpp
Normal file
30
src/sat/smt/arith_diagnostics.cpp
Normal file
|
@ -0,0 +1,30 @@
|
|||
/*++
|
||||
Copyright (c) 2020 Microsoft Corporation
|
||||
|
||||
Module Name:
|
||||
|
||||
arith_diagnostics.cpp
|
||||
|
||||
Abstract:
|
||||
|
||||
Theory plugin for arithmetic
|
||||
|
||||
Author:
|
||||
|
||||
Nikolaj Bjorner (nbjorner) 2020-09-08
|
||||
|
||||
--*/
|
||||
#pragma once
|
||||
|
||||
#include "sat/smt/euf_solver.h"
|
||||
#include "sat/smt/arith_solver.h"
|
||||
|
||||
|
||||
namespace arith {
|
||||
|
||||
|
||||
std::ostream& solver::display(std::ostream& out) const { return out; }
|
||||
std::ostream& solver::display_justification(std::ostream& out, sat::ext_justification_idx idx) const { return out;}
|
||||
std::ostream& solver::display_constraint(std::ostream& out, sat::ext_constraint_idx idx) const { return out;}
|
||||
void solver::collect_statistics(statistics& st) const {}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue