mirror of
https://github.com/Z3Prover/z3
synced 2025-04-11 03:33:35 +00:00
30 lines
342 B
C++
30 lines
342 B
C++
/*++
|
|
Copyright (c) 2006 Microsoft Corporation
|
|
|
|
Module Name:
|
|
|
|
smt_statistics.cpp
|
|
|
|
Abstract:
|
|
|
|
<abstract>
|
|
|
|
Author:
|
|
|
|
Leonardo de Moura (leonardo) 2008-02-21.
|
|
|
|
Revision History:
|
|
|
|
--*/
|
|
#include<string.h>
|
|
#include"smt_statistics.h"
|
|
|
|
namespace smt {
|
|
|
|
void statistics::reset() {
|
|
memset(this, 0, sizeof(statistics));
|
|
}
|
|
|
|
};
|
|
|