Revision 25dce784c7a2ed7ceaa6c3bff1859deb8aced674 authored by Dmitri Naumov on 27 April 2023, 16:25:34 UTC, committed by Dmitri Naumov on 04 May 2023, 07:20:35 UTC
The default is not sufficient to distinguish two
time points.

Fixes #3404.
1 parent 1e8d6cb
Raw File
NumericsConfig.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

/**
 * This file provides a configuration of the global matrix/vector and
 * corresponding linear solver, and the global executer types.
 */

#include "MathLib/LinAlg/GlobalMatrixVectorTypes.h"

//
// Global executor
//
#include "NumLib/Assembler/SerialExecutor.h"
using GlobalExecutor = NumLib::SerialExecutor;
back to top