Revision b9d5fea916d5eb46940b1b86875a04f1a9540c6d authored by Haibing Shao on 19 January 2023, 14:30:59 UTC, committed by Haibing Shao on 15 February 2023, 08:04:12 UTC
1 parent 145c422
Raw File
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