use of com.rockwellcollins.atc.agree.analysis.ast.AgreeProgram in project AGREE by loonwerks.
the class TcgLinkerFactory method wrapVerificationResult.
// Routines for actually building the verification results...
private void wrapVerificationResult(ComponentInstance si, CompositeAnalysisResult wrapper) {
AgreeProgram agreeProgram = new AgreeASTBuilder().getAgreeProgram(si, monolithicAnalysis);
Program program;
program = LustreAstBuilder.getAssumeGuaranteeLustreProgram(agreeProgram);
wrapper.addChild(createVerification("Contract Test Cases", si, program, agreeProgram));
}
Aggregations