mirror of
https://github.com/Z3Prover/z3
synced 2025-04-06 17:44:08 +00:00
update badge
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
c939195c10
commit
f381d51c83
|
@ -16,7 +16,7 @@ See the [release notes](RELEASE_NOTES) for notes on various stable releases of Z
|
|||
|
||||
| Azure Pipelines | TravisCI |
|
||||
| --------------- | -------- |
|
||||
[](https://z3build.visualstudio.com/Z3Build/_build/latest?definitionId=10) | [](https://travis-ci.org/Z3Prover/z3)
|
||||
[](https://dev.azure.com/Z3Public/Z3/_build/latest?definitionId=1&branchName=master) | [](https://travis-ci.org/Z3Prover/z3)
|
||||
|
||||
[1]: #building-z3-on-windows-using-visual-studio-command-prompt
|
||||
[2]: #building-z3-using-make-and-gccclang
|
||||
|
|
File diff suppressed because it is too large
Load diff
|
@ -205,6 +205,14 @@ zstring& zstring::operator=(zstring const& other) {
|
|||
return *this;
|
||||
}
|
||||
|
||||
zstring zstring::reverse() const {
|
||||
zstring result;
|
||||
for (unsigned i = length(); i-- > 0; ) {
|
||||
result.m_buffer.push_back(m_buffer[i]);
|
||||
}
|
||||
return result;
|
||||
}
|
||||
|
||||
zstring zstring::replace(zstring const& src, zstring const& dst) const {
|
||||
zstring result;
|
||||
if (length() < src.length()) {
|
||||
|
|
|
@ -126,6 +126,7 @@ public:
|
|||
zstring(unsigned ch);
|
||||
zstring& operator=(zstring const& other);
|
||||
zstring replace(zstring const& src, zstring const& dst) const;
|
||||
zstring reverse() const;
|
||||
std::string encode() const;
|
||||
unsigned length() const { return m_buffer.size(); }
|
||||
unsigned operator[](unsigned i) const { return m_buffer[i]; }
|
||||
|
|
|
@ -112,7 +112,7 @@ namespace smt {
|
|||
if (coallesce_in_re(lit))
|
||||
return;
|
||||
|
||||
#if 0
|
||||
#if 1
|
||||
// Enable/disable to test effect
|
||||
if (is_string_equality(lit))
|
||||
return;
|
||||
|
|
Loading…
Reference in a new issue