3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-10 03:07:07 +00:00
z3/src/smt/theory_dl.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

31 lines
347 B
C++

/*++
Copyright (c) 2011 Microsoft Corporation
Module Name:
theory_dl.h
Abstract:
Basic theory solver for DL finite domains.
Author:
Nikolaj Bjorner (nbjorner) 2011-10-3
Revision History:
--*/
#ifndef THEORY_DL_H_
#define THEORY_DL_H_
namespace smt {
theory* mk_theory_dl(ast_manager& m);
};
#endif /* THEORY_DL_H_ */