3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-06 17:44:08 +00:00

update instructions

Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
Nikolaj Bjorner 2025-02-11 22:05:19 -08:00
parent 94d3c591b5
commit 4e51af1167

View file

@ -47,12 +47,29 @@ async function invokeLLMUpdate(code, inputFile) {
For example: For example:
{ break; } { break; }
by by
break; break;
for example replace:
else {
result = 0;
}
by
else
result = 0;
for example replace:
if (a) {
result = 0;
}
by
if (a)
result = 0;
- start else statements on a new line.
- replaces uses of for loops using begin(), end() iterator patterns by C++21 style for loops - replaces uses of for loops using begin(), end() iterator patterns by C++21 style for loops
For example replace For example replace
for (auto it = x.begin(), end = x.end(); it != end; ++it) for (auto it = x.begin(), end = x.end(); it != end; ++it)
by by
for (auto & e : x) for (auto e : x)
or
for (auto const& e : x)
For example, replace For example, replace
for (unsigned i = 0; i < a->get_num_args(); ++i) { for (unsigned i = 0; i < a->get_num_args(); ++i) {