3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-05 09:04:07 +00:00

base line specbot

Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
Nikolaj Bjorner 2025-02-21 16:00:00 -08:00
parent 67d77e26d2
commit 589fb1b04f
2 changed files with 39 additions and 0 deletions

View file

@ -210,4 +210,30 @@ export async function invokeLLMOpt(code: string) {
}
);
return answer.text;
}
export async function invokeLLMClassInvariant(header : string, code : string) {
const answer = await runPrompt(
(_) => {
_.def("HEADER", header);
_.def("CODE", code);
_.$`You are a highly experienced compiler engineer with over 20 years of expertise,
specializing in C and C++ programming. Your deep knowledge of best coding practices
and software engineering principles enables you to produce robust, efficient, and
maintainable code in any scenario.
Please create class invariant methods for the classes used in <CODE>.
The signature of the class invariant methods should be 'bool well_formed()'.
If the code already has class invariant methods, please do not add new ones.
Create only code for the class invariant methods and optionally auxiliary helper functions.
In addition, for each method, provide pre and post conditions.
Include the well_formed() method in the pre and post conditions if it should be included.
`
}, {
system: [],
systemSafety: false
}
);
return answer.text;
}

View file

@ -0,0 +1,13 @@
script({
title: "optimize functions in a file",
files: "src/muz/spacer/spacer_qe_project.cpp"
})
import { invokeLLMClassInvariant} from "./myai.genai.mts";
const headerFile = env.files[0];
const cppFile = env.files[1];
let answer = await invokeLLMClassInvariant(headerFile.content, cppFile.content);
await workspace.writeText(headerFile.filename + ".spec.h", answer);