mirror of
https://github.com/Z3Prover/z3
synced 2025-04-29 11:55:51 +00:00
build errors/warnings
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
bd444f8ec7
commit
88374a15d0
8 changed files with 31 additions and 38 deletions
|
@ -22,13 +22,12 @@ Revision History:
|
|||
namespace dd {
|
||||
// calculates the value of a pdd expression based on the given values of the variables
|
||||
class pdd_eval {
|
||||
pdd_manager& m;
|
||||
|
||||
std::function<rational (unsigned)> m_var2val;
|
||||
|
||||
public:
|
||||
|
||||
pdd_eval(pdd_manager& m): m(m) {}
|
||||
pdd_eval() {}
|
||||
|
||||
std::function<rational (unsigned)>& var2val() { return m_var2val; } // setter
|
||||
const std::function<rational (unsigned)>& var2val() const { return m_var2val; } // getter
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue