mirror of
https://github.com/Z3Prover/z3
synced 2025-04-23 09:05:31 +00:00
hooked up array.weak and array.extension params
This commit is contained in:
parent
886128c989
commit
a78564145b
1 changed files with 28 additions and 0 deletions
28
src/smt/params/theory_array_params.cpp
Normal file
28
src/smt/params/theory_array_params.cpp
Normal file
|
@ -0,0 +1,28 @@
|
|||
/*++
|
||||
Copyright (c) 2006 Microsoft Corporation
|
||||
|
||||
Module Name:
|
||||
|
||||
theory_array_params.cpp
|
||||
|
||||
Abstract:
|
||||
|
||||
<abstract>
|
||||
|
||||
Author:
|
||||
|
||||
Leonardo de Moura (leonardo) 2008-05-06.
|
||||
|
||||
Revision History:
|
||||
|
||||
--*/
|
||||
#include"theory_array_params.h"
|
||||
#include"smt_params_helper.hpp"
|
||||
|
||||
void theory_array_params::updt_params(params_ref const & _p) {
|
||||
smt_params_helper p(_p);
|
||||
m_array_weak = p.array_weak();
|
||||
m_array_extensional = p.array_extensional();
|
||||
}
|
||||
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue