15 lines
209 B
C++
15 lines
209 B
C++
#pragma once
|
|
|
|
#include <vector>
|
|
|
|
#include <fesa/assembly/symmetric_csr.hpp>
|
|
|
|
namespace fesa {
|
|
|
|
struct EquationSystem final {
|
|
SymmetricCsr stiffness;
|
|
std::vector<double> force;
|
|
};
|
|
|
|
} // namespace fesa
|