Revision b76a5e549df337f478e5ad1bf22df2fcd5a2e576 authored by Thomas Fischer on 15 October 2021, 08:05:04 UTC, committed by Dmitri Naumov on 15 October 2021, 20:16:41 UTC
1 parent 2d89680
Raw File
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