https://gitlab.opengeosys.org/ogs/ogs.git
Raw File
Tip revision: 39977dbf8d92f686524493df4556920045cedd24 authored by Lars Bilke on 09 February 2023, 08:45:37 UTC
Merge branch 'cdash-build-name-fix' into 'master'
Tip revision: 39977db
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