mirror of
https://github.com/Z3Prover/z3
synced 2025-04-23 17:15:31 +00:00
add ite-finder, profile
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
a6c3c18e74
commit
e1fb74edc5
17 changed files with 321 additions and 168 deletions
|
@ -22,6 +22,9 @@ Revision History:
|
|||
|
||||
#include "util/debug.h"
|
||||
#include <chrono>
|
||||
#include <iostream>
|
||||
#include<iomanip>
|
||||
|
||||
|
||||
class stopwatch
|
||||
{
|
||||
|
@ -89,4 +92,9 @@ struct scoped_watch {
|
|||
}
|
||||
};
|
||||
|
||||
inline std::ostream& operator<<(std::ostream& out, stopwatch const& sw) {
|
||||
return out << " :time " << std::fixed << std::setprecision(2) << sw.get_seconds();
|
||||
}
|
||||
|
||||
|
||||
#endif
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue