https://gitlab.opengeosys.org/ogs/ogs.git
Raw File
Tip revision: d9cb77a505fe511afa7e1df58566ae9ba91ff4ec authored by Lars Bilke on 26 October 2023, 13:27:40 UTC
Merge branch 'coverage-refactor' into 'master'
Tip revision: d9cb77a
IndexValueVector.h
/**
 * \file
 * \copyright
 * Copyright (c) 2012-2023, 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