Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2025-09-17 08:54:12

0001 /*
0002  * SPDX-PackageName: "covfie, a part of the ACTS project"
0003  * SPDX-FileCopyrightText: 2022 CERN
0004  * SPDX-License-Identifier: MPL-2.0
0005  */
0006 
0007 #pragma once
0008 
0009 #include <memory>
0010 
0011 #include <covfie/core/backend/primitive/array.hpp>
0012 
0013 namespace covfie::backend {
0014 template <
0015     concepts::vector_descriptor _output_vector_t,
0016     typename _index_t = std::size_t>
0017 using c_array = array<_output_vector_t, _index_t>;
0018 }