1//===-- OpInterfaces.td ------------------------------------*- tablegen -*-===//
3// Part of the LLZK Project, under the Apache License v2.0.
4// See LICENSE.txt for license information.
5// Copyright 2025 Veridise Inc.
6// SPDX-License-Identifier: Apache-2.0
8//===----------------------------------------------------------------------===//
10#ifndef LLZK_CONSTRAIN_OP_INTERFACES
11#define LLZK_CONSTRAIN_OP_INTERFACES
13include "mlir/IR/OpBase.td"
15def ConstraintOpInterface : OpInterface<"ConstraintOpInterface"> {
17 Common interface for operations that produce a constraint.
19 let cppNamespace = "::llzk::constrain";
22#endif // LLZK_CONSTRAIN_OP_INTERFACES