Revision c28f3fb11e7b257c9f34025f4e12ba5fb73ab202 authored by Tobias Meisel on 20 July 2021, 13:20:18 UTC, committed by Tobias Meisel on 21 July 2021, 08:01:09 UTC
1 parent befcd0b
Raw File
NumericsConfig.h
/**
 * \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
 *
 */

#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