mirror of
https://github.com/Z3Prover/z3
synced 2025-04-10 19:27:06 +00:00
25 lines
332 B
C++
25 lines
332 B
C++
/*++
|
|
Copyright (c) 2011 Microsoft Corporation
|
|
|
|
Module Name:
|
|
|
|
polynomial_cmds.h
|
|
|
|
Abstract:
|
|
Commands for debugging polynomial module.
|
|
|
|
Author:
|
|
|
|
Leonardo (leonardo) 2011-12-23
|
|
|
|
Notes:
|
|
|
|
--*/
|
|
#ifndef _POLYNOMIAL_CMDS_H_
|
|
#define _POLYNOMIAL_CMDS_H_
|
|
|
|
class cmd_context;
|
|
void install_polynomial_cmds(cmd_context & ctx);
|
|
|
|
#endif
|