All Downloads are FREE. Search and download functionalities are using the official Maven repository.

z3-z3-4.12.6.src.util.stats.h Maven / Gradle / Ivy

There is a newer version: 4.13.0.1
Show newest version
/*++
Copyright (c) 2009 Microsoft Corporation

Module Name:

    stats.h

Abstract:

    Shared utilities for displaying statistics.

Author:

    nbjorner 2009-12-6

Revision History:

--*/

#pragma once

#include

inline void print_stat(std::ostream& out, char const* msg, unsigned num) {
    if (num > 0) {
        out << msg << num << "\n";
    }
}

inline void print_stat_f(std::ostream& out, char const* msg, float num) {
    if (num > 0.0f) {
        out << msg << num << "\n";
    }
}





© 2015 - 2024 Weber Informatics LLC | Privacy Policy