mirror of
				https://github.com/Z3Prover/z3
				synced 2025-10-31 11:42:28 +00:00 
			
		
		
		
	Add this option, so that the z3 library can be used in programs that do signal handling on their own. Signed-off-by: Mikulas Patocka <mikulas@twibright.com>
		
			
				
	
	
		
			213 lines
		
	
	
	
		
			7.5 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			213 lines
		
	
	
	
		
			7.5 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
| /*++
 | |
| Copyright (c) 2011 Microsoft Corporation
 | |
| 
 | |
| Module Name:
 | |
| 
 | |
|     context_params.cpp
 | |
| 
 | |
| Abstract:
 | |
| 
 | |
|     Goodies for managing context parameters in the cmd_context and
 | |
|     api_context
 | |
| 
 | |
| Author:
 | |
| 
 | |
|     Leonardo (leonardo) 2012-12-01
 | |
| 
 | |
| Notes:
 | |
| 
 | |
| --*/
 | |
| #include "util/gparams.h"
 | |
| #include "util/params.h"
 | |
| #include "params/context_params.h"
 | |
| 
 | |
| context_params::context_params() {
 | |
|     updt_params();
 | |
| }
 | |
| 
 | |
| void context_params::set_bool(bool & opt, char const * param, char const * value) {
 | |
|     if (strcmp(value, "true") == 0) {
 | |
|         opt = true;
 | |
|     }
 | |
|     else if (strcmp(value, "false") == 0) {
 | |
|         opt = false;
 | |
|     }
 | |
|     else {
 | |
|         std::stringstream strm;
 | |
|         strm << "invalid value '" << value << "' for Boolean parameter '" << param << "'";
 | |
|         throw default_exception(strm.str());
 | |
|     }
 | |
| }
 | |
| 
 | |
| void context_params::set_uint(unsigned & opt, char const * param, char const * value) {
 | |
|     char *endptr;
 | |
|     long val = strtol(value, &endptr, 10);
 | |
|     opt = static_cast<unsigned>(val);
 | |
| 
 | |
|     if (!*value || *endptr) {
 | |
|         std::stringstream strm;
 | |
|         strm << "invalid value '" << value << "' for unsigned int parameter '" << param << "'";
 | |
|         throw default_exception(strm.str());
 | |
|     }
 | |
| }
 | |
| 
 | |
| static void lower_case(std::string& p) {
 | |
|     for (size_t i = 0; i < p.size(); i++) {
 | |
|         if (p[i] >= 'A' && p[i] <= 'Z')
 | |
|             p[i] = p[i] - 'A' + 'a';
 | |
|         else if (p[i] == '-')
 | |
|             p[i] = '_';
 | |
|     }
 | |
| }
 | |
| 
 | |
| void context_params::set(char const * param, char const * value) {
 | |
|     std::string p = param;
 | |
|     lower_case(p);
 | |
|     if (p == "timeout") {
 | |
|         set_uint(m_timeout, param, value);
 | |
|     }
 | |
|     else if (p == "rlimit") {
 | |
|         set_uint(m_rlimit, param, value);
 | |
|     }
 | |
|     else if (p == "type_check" || p == "well_sorted_check") {
 | |
|         set_bool(m_well_sorted_check, param, value);
 | |
|     }
 | |
|     else if (p == "auto_config") {
 | |
|         set_bool(m_auto_config, param, value);
 | |
|     }
 | |
|     else if (p == "proof") {
 | |
|         set_bool(m_proof, param, value);
 | |
|     }
 | |
|     else if (p == "model") {
 | |
|         set_bool(m_model, param, value);
 | |
|     }
 | |
|     else if (p == "model_validate") {
 | |
|         set_bool(m_model_validate, param, value);
 | |
|     }
 | |
|     else if (p == "dump_models") {
 | |
|         set_bool(m_dump_models, param, value);
 | |
|     }
 | |
|     else if (p == "stats") {
 | |
|         set_bool(m_statistics, param, value);
 | |
|     }
 | |
|     else if (p == "trace") {
 | |
|         set_bool(m_trace, param, value);
 | |
|     }
 | |
|     else if (p == "trace_file_name") {
 | |
|         m_trace_file_name = value;
 | |
|     }
 | |
|     else if (p == "dot_proof_file") {
 | |
|         m_dot_proof_file = value;  
 | |
|     }
 | |
|     else if (p == "unsat_core") {
 | |
|         if (!m_unsat_core) 
 | |
|             set_bool(m_unsat_core, param, value);
 | |
|     }
 | |
|     else if (p == "debug_ref_count") {
 | |
|         set_bool(m_debug_ref_count, param, value);
 | |
|     }
 | |
|     else if (p == "smtlib2_compliant") {
 | |
|         set_bool(m_smtlib2_compliant, param, value);
 | |
|     }
 | |
|     else if (p == "encoding") {
 | |
|         if (strcmp(value, "unicode") == 0 || strcmp(value, "bmp") == 0 || strcmp(value, "ascii") == 0) {
 | |
|             m_encoding = value;
 | |
|             gparams::set("encoding", value);
 | |
|         }
 | |
|         else {
 | |
|             std::stringstream strm;
 | |
|             strm << "invalid value '" << value << "' for parameter '" << param << "' (supported: unicode, bmp, ascii)";
 | |
|             throw default_exception(strm.str());
 | |
|         }
 | |
|     }
 | |
|     else {
 | |
|         param_descrs d;
 | |
|         collect_param_descrs(d);
 | |
|         std::stringstream strm;
 | |
|         strm << "unknown parameter '" << p << "'\n";
 | |
|         strm << "Legal parameters are:\n";
 | |
|         d.display(strm, 2, false, false);
 | |
|         throw default_exception(strm.str());
 | |
|     }
 | |
| }
 | |
| 
 | |
| void context_params::updt_params() {
 | |
|     updt_params(gparams::get_ref());
 | |
| }
 | |
| 
 | |
| void context_params::updt_params(params_ref const & p) {
 | |
|     m_timeout           = p.get_uint("timeout", m_timeout);
 | |
|     m_rlimit            = p.get_uint("rlimit", m_rlimit);
 | |
|     m_well_sorted_check = p.get_bool("type_check", p.get_bool("well_sorted_check", m_well_sorted_check));
 | |
|     m_auto_config       = p.get_bool("auto_config", m_auto_config);
 | |
|     m_proof             = p.get_bool("proof", m_proof);
 | |
|     m_model             = p.get_bool("model", m_model);
 | |
|     m_model_validate    = p.get_bool("model_validate", m_model_validate);
 | |
|     m_dump_models       = p.get_bool("dump_models", m_dump_models);
 | |
|     m_trace             = p.get_bool("trace", m_trace);
 | |
|     m_trace_file_name   = p.get_str("trace_file_name", "z3.log");
 | |
|     m_dot_proof_file    = p.get_str("dot_proof_file", "proof.dot");
 | |
|     m_unsat_core        |= p.get_bool("unsat_core", m_unsat_core);
 | |
|     m_debug_ref_count   = p.get_bool("debug_ref_count", m_debug_ref_count);
 | |
|     m_smtlib2_compliant = p.get_bool("smtlib2_compliant", m_smtlib2_compliant);
 | |
|     m_statistics        = p.get_bool("stats", m_statistics);
 | |
|     m_encoding          = p.get_str("encoding", m_encoding.c_str());
 | |
| }
 | |
| 
 | |
| void context_params::collect_param_descrs(param_descrs & d) {
 | |
|     insert_rlimit(d);
 | |
|     insert_timeout(d);
 | |
|     insert_ctrl_c(d);
 | |
|     d.insert("well_sorted_check", CPK_BOOL, "type checker", "false");
 | |
|     d.insert("type_check", CPK_BOOL, "type checker (alias for well_sorted_check)", "true");
 | |
|     d.insert("auto_config", CPK_BOOL, "use heuristics to automatically select solver and configure it", "true");
 | |
|     d.insert("model_validate", CPK_BOOL, "validate models produced by solvers", "false");
 | |
|     d.insert("dump_models", CPK_BOOL, "dump models whenever check-sat returns sat", "false");
 | |
|     d.insert("trace", CPK_BOOL, "trace generation for VCC", "false");
 | |
|     d.insert("trace_file_name", CPK_STRING, "trace out file name (see option 'trace')", "z3.log");
 | |
|     d.insert("dot_proof_file", CPK_STRING, "file in which to output graphical proofs", "proof.dot");
 | |
|     d.insert("debug_ref_count", CPK_BOOL, "debug support for AST reference counting", "false");
 | |
|     d.insert("smtlib2_compliant", CPK_BOOL, "enable/disable SMT-LIB 2.0 compliance", "false");
 | |
|     d.insert("stats", CPK_BOOL, "enable/disable statistics", "false");
 | |
|     d.insert("encoding", CPK_STRING, "string encoding used internally: unicode|bmp|ascii", "unicode");
 | |
|     // statistics are hidden as they are controlled by the /st option.
 | |
|     collect_solver_param_descrs(d);
 | |
| }
 | |
| 
 | |
| void context_params::collect_solver_param_descrs(param_descrs & d) {
 | |
|     d.insert("proof", CPK_BOOL, "proof generation, it must be enabled when the Z3 context is created", "false");
 | |
|     d.insert("model", CPK_BOOL, "model generation for solvers, this parameter can be overwritten when creating a solver", "true");
 | |
|     d.insert("unsat_core", CPK_BOOL, "unsat-core generation for solvers, this parameter can be overwritten when creating a solver, not every solver in Z3 supports unsat core generation", "false");
 | |
| }
 | |
| 
 | |
| params_ref context_params::merge_default_params(params_ref const & p) {
 | |
|     if (!m_auto_config && !p.contains("auto_config")) {
 | |
|         params_ref new_p = p;
 | |
|         new_p.set_bool("auto_config", false);
 | |
|         return new_p;
 | |
|     }
 | |
|     else {
 | |
|         return p;
 | |
|     }
 | |
| }
 | |
| 
 | |
| void context_params::get_solver_params(params_ref & p, bool & proofs_enabled, bool & models_enabled, bool & unsat_core_enabled) {
 | |
|     proofs_enabled     &= p.get_bool("proof", m_proof);
 | |
|     models_enabled     &= p.get_bool("model", m_model);
 | |
|     unsat_core_enabled = m_unsat_core || p.get_bool("unsat_core", false);
 | |
|     if (!m_auto_config && !p.contains("auto_config"))
 | |
|         p.set_bool("auto_config", false);
 | |
| }
 | |
| 
 | |
| bool context_params::is_shell_only_parameter(char const* _p) const {
 | |
|     std::string p(_p);
 | |
|     lower_case(p);
 | |
|     if (p == "dump_models" || p == "well_sorted_check" ||
 | |
|         p == "model_validate" || 
 | |
|         p == "stats")
 | |
|         return true;
 | |
| 
 | |
|     return false;
 | |
| }
 | |
| 
 | |
| 
 |