LLZK
3.0.0
An open-source IR for Zero Knowledge (ZK) circuits
Toggle main menu visibility
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
12
include "mlir/IR/DialectBase.td"
13
14
def 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
include
llzk
Dialect
SMT
IR
SMTDialect.td
Generated by
1.17.0
Copyright 2025 Veridise Inc. under the Apache License v2.0. Copyright 2026 Project LLZK under the Apache License v2.0.