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

z3-z3-4.13.0.src.muz.spacer.spacer_mbc.h Maven / Gradle / Ivy

The newest version!
/*++
Copyright (c) 2018 Arie Gurfinkel

Module Name:

    spacer_mbc.h

Abstract:

  Model-Based Cartesian Decomposition

Author:

    Arie Gurfinkel

Revision History:

--*/

#pragma once

#include "ast/ast.h"
#include "util/obj_hashtable.h"
#include "model/model.h"

namespace spacer {

class mbc {
    ast_manager &m;
public:
    mbc(ast_manager &m);


    typedef obj_map partition_map;

    /**
       \brief Model Based Cartesian projection of lits
     */
    void operator()(const partition_map &pmap, expr_ref_vector &lits, model &mdl,
                    vector &res);
};

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy