3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-05-08 00:05:46 +00:00
z3/src/cmd_context/cmd_context_to_goal.h
Nikolaj Bjorner 4bc044c982 update header guards to be C++ style. Fixes issue #9
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
2015-07-08 23:18:40 -07:00

24 lines
373 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:
--*/
#ifndef CMD_CONTEXT_TO_GOAL_H_
#define CMD_CONTEXT_TO_GOAL_H_
void assert_exprs_from(cmd_context const & ctx, goal & t);
#endif