https://gitlab.opengeosys.org/ogs/ogs.git
Raw File
Tip revision: a4bf1d4f7d263da0ac32af1a954a8df56da2a11c authored by Christoph Lehmann on 17 April 2023, 07:09:42 UTC
Merge branch 'openmp-parallel-assembly' into 'master'
Tip revision: a4bf1d4
getMaxiumElementEdgeLengths.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
 *
 * Created on June 2, 2022, 3:05 PM
 */

#pragma once

#include <vector>

namespace MeshLib
{
class Element;
/// Returns the maximum lengths of the edges for each element.
std::vector<double> getMaxiumElementEdgeLengths(
    std::vector<Element*> const& elements);
}  // namespace MeshLib
back to top