mirror of
https://github.com/Z3Prover/z3
synced 2025-04-16 13:58:45 +00:00
27 lines
312 B
C++
27 lines
312 B
C++
/*++
|
|
Copyright (c) 2012 Microsoft Corporation
|
|
|
|
Module Name:
|
|
|
|
default_solver.h
|
|
|
|
Abstract:
|
|
|
|
Wrapps smt::solver as a solver for cmd_context
|
|
|
|
Author:
|
|
|
|
Leonardo (leonardo) 2012-10-21
|
|
|
|
Notes:
|
|
|
|
--*/
|
|
#ifndef _DEFAULT_SOLVER_H_
|
|
#define _DEFAULT_SOLVER_H_
|
|
|
|
class solver;
|
|
|
|
solver * mk_default_solver();
|
|
|
|
#endif
|