optd_core/lib.rs
1// Copyright (c) 2023-2024 CMU Database Group
2//
3// Use of this source code is governed by an MIT-style license that can be found in the LICENSE file or at
4// https://opensource.org/licenses/MIT.
5
6#![allow(clippy::new_without_default)]
7
8pub mod cascades;
9pub mod cost;
10pub mod heuristics;
11pub mod nodes;
12pub mod optimizer;
13pub mod property;
14pub mod rules;