3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-23 00:55:31 +00:00

working on new parameter framework

Signed-off-by: Leonardo de Moura <leonardo@microsoft.com>
This commit is contained in:
Leonardo de Moura 2012-12-01 15:54:34 -08:00
parent be5f933201
commit 589f096e6e
36 changed files with 436 additions and 377 deletions

View file

@ -1472,7 +1472,7 @@ def def_module_params(module_name, export, params):
out.write('struct %s_params {\n' % module_name)
out.write(' params_ref const & p;\n')
if export:
out.write(' params_ref const & g;\n')
out.write(' params_ref g;\n')
out.write(' %s_params(params_ref const & _p = params_ref()):\n' % module_name)
out.write(' p(_p)')
if export: