.. _program_listing_file_src_symmetry_common.hpp: Program Listing for File symmetry_common.hpp ============================================ |exhale_lsh| :ref:`Return to documentation for file ` (``src/symmetry_common.hpp``) .. |exhale_lsh| unicode:: U+021B0 .. UPWARDS ARROW WITH TIP LEFTWARDS .. code-block:: cpp /* This file is part of brille. Copyright © 2020 Greg Tucker brille is free software: you can redistribute it and/or modify it under the terms of the GNU Affero General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. brille is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Affero General Public License for more details. You should have received a copy of the GNU Affero General Public License along with brille. If not, see . */ #ifndef COMMON_SYMMETRY_HPP #define COMMON_SYMMETRY_HPP #include #include namespace brille { template using Matrix = std::array; template using Vector = std::array; template using Matrices = std::vector>; template using Vectors = std::vector>; } //end namespace brille #endif // COMMON_SYMMETRY_HPP