mirror of
https://github.com/Z3Prover/z3
synced 2025-04-24 01:25:31 +00:00
update smt logging format to follow SAT solver
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
77088745d0
commit
ecb43ccca2
6 changed files with 95 additions and 24 deletions
|
@ -26,7 +26,6 @@ Revision History:
|
|||
#include "util/vector.h"
|
||||
#include "util/uint_set.h"
|
||||
#include "util/stopwatch.h"
|
||||
#include<iomanip>
|
||||
|
||||
class params_ref;
|
||||
class reslimit;
|
||||
|
@ -207,14 +206,6 @@ namespace sat {
|
|||
}
|
||||
};
|
||||
|
||||
struct mem_stat {
|
||||
};
|
||||
|
||||
inline std::ostream & operator<<(std::ostream & out, mem_stat const & m) {
|
||||
double mem = static_cast<double>(memory::get_allocation_size())/static_cast<double>(1024*1024);
|
||||
return out << std::fixed << std::setprecision(2) << mem;
|
||||
}
|
||||
|
||||
struct dimacs_lit {
|
||||
literal m_lit;
|
||||
dimacs_lit(literal l):m_lit(l) {}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue