/****************************************************************************** * Top contributors (to current version): * Mathias Preiner, Aina Niemetz * * This file is part of the cvc5 project. * * Copyright (c) 2009-2021 by the authors listed in the file AUTHORS * in the top-level source directory and their institutional affiliations. * All rights reserved. See the file COPYING in the top-level source * directory for licensing information. * **************************************************************************** * * Option template for option modules. * * For each _options.toml configuration file, mkoptions.py * expands this template and generates a _options.cpp file. */ #include "${header}$" #include #include "base/check.h" #include "options/option_exception.h" // clang-format off namespace cvc5::options { ${modes_impl}$ namespace ${id}$ { // clang-format off ${defaults_impl}$ // clang-format on } } // namespace cvc5::options // clang-format on