mirror of
https://github.com/Z3Prover/z3
synced 2025-08-12 22:20:54 +00:00
Reorganizing the code
Signed-off-by: Leonardo de Moura <leonardo@microsoft.com>
This commit is contained in:
parent
8b70f0b833
commit
d8cd3fc3ab
36 changed files with 261 additions and 429 deletions
29
src/util/smt2_util.h
Normal file
29
src/util/smt2_util.h
Normal file
|
@ -0,0 +1,29 @@
|
|||
/*++
|
||||
Copyright (c) 2011 Microsoft Corporation
|
||||
|
||||
Module Name:
|
||||
|
||||
smt2_util.h
|
||||
|
||||
Abstract:
|
||||
|
||||
Goodies for SMT2 standard
|
||||
|
||||
Author:
|
||||
|
||||
Leonardo (leonardo) 2012-10-20
|
||||
|
||||
Notes:
|
||||
|
||||
--*/
|
||||
#ifndef _SMT2_UTIL_H_
|
||||
#define _SMT2_UTIL_H_
|
||||
|
||||
#include"symbol.h"
|
||||
|
||||
bool is_smt2_simple_symbol_char(char c);
|
||||
bool is_smt2_quoted_symbol(char const * s);
|
||||
bool is_smt2_quoted_symbol(symbol const & s);
|
||||
std::string mk_smt2_quoted_symbol(symbol const & s);
|
||||
|
||||
#endif
|
Loading…
Add table
Add a link
Reference in a new issue