Revision b16190f1851378f5b34ad48895e1de8d4c67ea5a authored by Tom Fischer on 21 July 2023, 15:08:42 UTC, committed by Tom Fischer on 21 July 2023, 15:08:42 UTC
Pass fixed output times to time stepper

See merge request ogs/ogs!4652
2 parent s ef05d75 + 5205dc7
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