Revision 17aa0440d3f1a3fd937fed076f39ab23926bdcf1 authored by Tom Fischer on 14 September 2023, 06:53:58 UTC, committed by Tom Fischer on 14 September 2023, 06:53:58 UTC
Fix crash for output of linear order variable on quadratic sub-mesh only

See merge request ogs/ogs!4732
2 parent s c8bf20e + 8fd030d
Raw File
Location.cpp
/**
 * \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
 *
 */

#include "Location.h"

#include <ostream>

namespace MeshLib
{
std::ostream& operator<<(std::ostream& os, MeshItemType const& t)
{
    switch (t)
    {
        case MeshItemType::Node:
            return os << "N";
        case MeshItemType::Edge:
            return os << "E";
        case MeshItemType::Face:
            return os << "F";
        case MeshItemType::Cell:
            return os << "C";
        case MeshItemType::IntegrationPoint:
            return os << "I";
    };
    return os;
}

std::ostream& operator<<(std::ostream& os, Location const& l)
{
    return os << "(" << l.mesh_id << ", " << l.item_type << ", " << l.item_id
              << ")";
}

}  // namespace MeshLib
back to top