LLZK 2.0.0
An open-source IR for Zero Knowledge (ZK) circuits
Loading...
Searching...
No Matches
SMTDialect.td
Go to the documentation of this file.
1//===- SMTDialect.td - SMT dialect definition --------------*- tablegen -*-===//
2//
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
6//
7//===----------------------------------------------------------------------===//
8
9#ifndef MLIR_DIALECT_SMT_IR_SMTDIALECT_TD
10#define MLIR_DIALECT_SMT_IR_SMTDIALECT_TD
11
12include "mlir/IR/DialectBase.td"
13
14def SMTDialect : Dialect {
15 let name = "smt";
16 let summary = "a dialect that models satisfiability modulo theories";
17 let cppNamespace = "::llzk::smt";
18
19 let useDefaultAttributePrinterParser = 1;
20 let useDefaultTypePrinterParser = 1;
21
22 let hasConstantMaterializer = 1;
23
24 let extraClassDeclaration = [{
25 void registerAttributes();
26 void registerTypes();
27 }];
28}
29
30#endif // MLIR_DIALECT_SMT_IR_SMTDIALECT_TD