Revision a2f327970633c5810d2983db3fa14755eb7ef5b7 authored by Christoph Lehmann on 26 April 2023, 15:05:58 UTC, committed by Christoph Lehmann on 26 April 2023, 15:05:58 UTC
Draft: OpenMP parallelized assembly

See merge request ogs/ogs!4556
2 parent s 89c64e7 + 69d72e5
Raw File
FinalizeVectorAssembly.h
/**
 * \file
 * \author Wenqing Wang
 * \date Oct, 2013
 *
 * \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

namespace MathLib
{
/// General function to finalize the vector assembly
template <typename VEC_T>
void finalizeVectorAssembly(VEC_T& /*unused*/)
{
}

} // MathLib
back to top