mirror of
https://github.com/Z3Prover/z3
synced 2025-05-03 13:55:47 +00:00
22 lines
317 B
C
22 lines
317 B
C
/*++
|
|
Copyright (c) 2012 Microsoft Corporation
|
|
|
|
Module Name:
|
|
|
|
cmd_context_to_goal.h
|
|
|
|
Abstract:
|
|
Procedure for copying the assertions in the
|
|
command context to a goal object.
|
|
|
|
Author:
|
|
|
|
Leonardo (leonardo) 2012-10-21
|
|
|
|
Notes:
|
|
|
|
--*/
|
|
#pragma once
|
|
|
|
void assert_exprs_from(cmd_context const & ctx, goal & t);
|
|
|