Revision 820c9e69c676c84d54317da769ee79d37c4a9884 authored by Dmitri Naumov on 05 April 2021, 21:02:32 UTC, committed by Dmitri Naumov on 06 April 2021, 19:10:20 UTC
1 parent 4952257
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