https://gitlab.opengeosys.org/ogs/ogs.git
Raw File
Tip revision: 54cc5f66da6f1735e85931f0a2efc988e9831893 authored by Norbert Grunwald on 09 December 2020, 12:05:42 UTC
added Test for relative permeability derivative
Tip revision: 54cc5f6
IndexValueVector.h
/**
 * \file
 * \copyright
 * Copyright (c) 2012-2020, 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