Revision a8eaac03e49a3da0b71366e98c819d352811ec87 authored by Dmitry Yu. Naumov on 18 March 2021, 15:02:21 UTC, committed by Dmitry Yu. Naumov on 18 March 2021, 15:02:21 UTC
HM fixed stress split implementation

See merge request ogs/ogs!3476
2 parent s 2823eab + 79041f1
Raw File
LineRule3.cpp
/**
 * \file
 *
 * \copyright
 * Copyright (c) 2012-2021, 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 "LineRule3.h"

namespace MeshLib
{
const unsigned LineRule3::edge_nodes[1][3] = {
    {0, 1, 2}  // Edge 0
};

}  // end namespace MeshLib
back to top