https://gitlab.opengeosys.org/ogs/ogs.git
Revision 758df28f7adfc2edd9c0ea0f2c68d16371aed0f7 authored by Dmitry Yu. Naumov on 24 September 2021, 16:24:23 UTC, committed by Dmitry Yu. Naumov on 24 September 2021, 16:24:23 UTC
TH2M Benchmark test Liakopoulos

See merge request ogs/ogs!3795
2 parent s a1cc159 + 4470d06
Raw File
Tip revision: 758df28f7adfc2edd9c0ea0f2c68d16371aed0f7 authored by Dmitry Yu. Naumov on 24 September 2021, 16:24:23 UTC
Merge branch 'TH2M_Liakopoulos' into 'master'
Tip revision: 758df28
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