mirror of
https://github.com/Z3Prover/z3
synced 2025-05-07 07:45:46 +00:00
24 lines
326 B
C++
24 lines
326 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
|