mirror of
https://github.com/Z3Prover/z3
synced 2025-05-17 20:54:45 +00:00
24 lines
322 B
C++
24 lines
322 B
C++
/*++
|
|
Copyright (c) 2011 Microsoft Corporation
|
|
|
|
Module Name:
|
|
|
|
interpolant_cmds.h
|
|
|
|
Abstract:
|
|
Commands for interpolation.
|
|
|
|
Author:
|
|
|
|
Leonardo (leonardo) 2011-12-23
|
|
|
|
Notes:
|
|
|
|
--*/
|
|
#ifndef _INTERPOLANT_CMDS_H_
|
|
#define _INTERPOLANT_CMDS_H_
|
|
|
|
class cmd_context;
|
|
void install_interpolant_cmds(cmd_context & ctx);
|
|
|
|
#endif
|