blob: 2466901d22a1d08c218c3a119f0a3b8a185f9afc [file] [log] [blame]
// Copyright 2023 The Tint Authors.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package cnf
// Expr is a boolean expression, expressed in a Conjunctive Normal Form.
// Expr is an alias to Ands, which represent all the OR expressions that are
// AND'd together.
type Expr = Ands
// Ands is a slice of Ors
// Ands holds a sequence of OR'd expressions that are AND'd together:
//
// Ors[0] && Ors[1] && ... && Ors[n-1]
type Ands []Ors
// Ors is a slice of Unary
// Ors holds a sequence of unary expressions that are OR'd together:
//
// Unary[0] || Unary[1] || ... || Unary[n-1]
type Ors []Unary
// Unary is a negatable variable
type Unary struct {
// If true, Var is negated
Negate bool
// The name of the variable
Var string
}