14 lines
270 B
C++
14 lines
270 B
C++
#pragma once
|
|
|
|
#include <fesa/assembly/equation_system.hpp>
|
|
#include <fesa/fem/dof_manager.hpp>
|
|
#include <fesa/model/domain.hpp>
|
|
|
|
namespace fesa {
|
|
|
|
[[nodiscard]] EquationSystem assemble_serial(
|
|
const Domain& domain,
|
|
const DofManager& dofs);
|
|
|
|
} // namespace fesa
|