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

z3-z3-4.12.6.src.ast.euf.euf_arith_plugin.h Maven / Gradle / Ivy

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

Module Name:

    euf_arith_plugin.h

Abstract:

    plugin structure for arithmetic
Author:

    Nikolaj Bjorner (nbjorner) 2023-11-11

--*/

#pragma once

#include "ast/arith_decl_plugin.h"
#include "ast/euf/euf_plugin.h"
#include "ast/euf/euf_ac_plugin.h"

namespace euf {

    class egraph;

    class arith_plugin : public plugin {
        enum undo_t { undo_add, undo_mul };
        arith_util a;
        svector m_undo;
        ac_plugin m_add, m_mul;
        
    public:
        arith_plugin(egraph& g);

        ~arith_plugin() override {}

        theory_id get_id() const override { return a.get_family_id(); }

        void register_node(enode* n) override;

        void merge_eh(enode* n1, enode* n2) override;

        void diseq_eh(enode* eq) override {}

        void undo() override;

        void propagate() override;
        
        std::ostream& display(std::ostream& out) const override;
            
    };
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy