mirror of
https://github.com/Z3Prover/z3
synced 2025-04-06 17:44:08 +00:00
base line specbot
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
67d77e26d2
commit
589fb1b04f
|
@ -211,3 +211,29 @@ export async function invokeLLMOpt(code: string) {
|
||||||
);
|
);
|
||||||
return answer.text;
|
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;
|
||||||
|
}
|
13
genaisrc/specbot.genai.mts
Normal file
13
genaisrc/specbot.genai.mts
Normal 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);
|
Loading…
Reference in a new issue