Revision 6395d092af2743f3c5eb8466f711819afc1513f6 authored by Karsten Rink on 07 November 2023, 09:16:12 UTC, committed by Karsten Rink on 07 November 2023, 09:16:12 UTC
[utils] Invert bounding box for RemoveMeshElements

Closes #3414

See merge request ogs/ogs!4759
2 parent s fd732ac + 80f3038
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