Revision f9006f038b6238e8b3375ef1ffd88613b4ef4efc authored by Dmitry Yu. Naumov on 07 February 2023, 17:03:08 UTC, committed by Dmitry Yu. Naumov on 07 February 2023, 17:03:08 UTC
Draft: Remove N_u_op from ip data in THM

See merge request ogs/ogs!4477
2 parent s 1b68d8a + b483d31
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