1//===- SMTDialect.td - SMT dialect definition --------------*- tablegen -*-===//
3// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4// See https://llvm.org/LICENSE.txt for license information.
5// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7//===----------------------------------------------------------------------===//
9#ifndef MLIR_DIALECT_SMT_IR_SMTDIALECT_TD
10#define MLIR_DIALECT_SMT_IR_SMTDIALECT_TD
12include "mlir/IR/DialectBase.td"
14def SMTDialect : Dialect {
16 let summary = "a dialect that models satisfiability modulo theories";
17 let cppNamespace = "::llzk::smt";
19 let useDefaultAttributePrinterParser = 1;
20 let useDefaultTypePrinterParser = 1;
22 let hasConstantMaterializer = 1;
24 let extraClassDeclaration = [{
25 void registerAttributes();
30#endif // MLIR_DIALECT_SMT_IR_SMTDIALECT_TD