Revision cc0251ff848b43d0ac7329e033a5fffcb62c267a authored by renchao_lu on 05 October 2021, 15:20:49 UTC, committed by renchao_lu on 05 October 2021, 15:20:49 UTC
1 parent e35cda5
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