Revision d2f1d5eacb9bac6e6574c348d6fc836357ae8fb9 authored by Dmitry Yu. Naumov on 02 December 2021, 13:29:57 UTC, committed by Dmitry Yu. Naumov on 02 December 2021, 13:29:57 UTC
Remove trivial dx/dx=1 and dxdot/dx = 1/dt

See merge request ogs/ogs!3904
2 parent s cd151e7 + 486255e
Raw File
CreateJacobianAssembler.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

#include "BaseLib/ConfigTree.h"

namespace ProcessLib
{
class AbstractJacobianAssembler;

std::unique_ptr<AbstractJacobianAssembler> createJacobianAssembler(
    std::optional<BaseLib::ConfigTree> const& config);
}  // ProcessLib
back to top