https://gitlab.opengeosys.org/ogs/ogs.git
Revision 2863864c255508da53026465ed554d389a873998 authored by Lars Bilke on 19 May 2021, 08:32:58 UTC, committed by Lars Bilke on 19 May 2021, 12:45:53 UTC
1 parent 4060392
Raw File
Tip revision: 2863864c255508da53026465ed554d389a873998 authored by Lars Bilke on 19 May 2021, 08:32:58 UTC
[ci] Check if container runs.
Tip revision: 2863864
IndexValueVector.h
/**
 * \file
 * \copyright
 * Copyright (c) 2012-2021, OpenGeoSys Community (http://www.opengeosys.org)
 *            Distributed under a Modified BSD License.
 *              See accompanying file LICENSE.txt or
 *              http://www.opengeosys.org/project/license
 *
 */

#pragma once

#include <vector>

namespace NumLib
{

template <typename IndexType>
struct IndexValueVector final
{
    std::vector<IndexType> ids;
    std::vector<double> values;
};

}  // namespace NumLib
back to top