mirror of
				https://github.com/Z3Prover/z3
				synced 2025-10-31 19:52:29 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			13 lines
		
	
	
		
			No EOL
		
	
	
		
			380 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
		
			No EOL
		
	
	
		
			380 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
| 
 | |
| 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.md", answer); |