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

z3-z3-4.13.0.src.params.bit_blaster_params.h Maven / Gradle / Ivy

The newest version!
/*++
Copyright (c) 2006 Microsoft Corporation

Module Name:

    bit_blaster_params.h

Abstract:

    

Author:

    Leonardo de Moura (leonardo) 2008-10-02.

Revision History:

--*/
#pragma once

struct bit_blaster_params {
    bool  m_bb_ext_gates;
    bool  m_bb_quantifiers;
    bit_blaster_params() :
        m_bb_ext_gates(false),
        m_bb_quantifiers(false) {
    }
#if 0
    void register_params(ini_params & p) {
        p.register_bool_param("bb_ext_gates", m_bb_ext_gates, "use extended gates during bit-blasting");
        p.register_bool_param("bb_quantifiers", m_bb_quantifiers, "convert bit-vectors to Booleans in quantifiers");
    }
#endif

    void display(std::ostream & out) const {
        out << "m_bb_ext_gates=" << m_bb_ext_gates << '\n';
        out << "m_bb_quantifiers=" << m_bb_quantifiers << '\n';
    }
};






© 2015 - 2024 Weber Informatics LLC | Privacy Policy