feat: add solver core skeleton
This commit is contained in:
@@ -0,0 +1,25 @@
|
||||
#pragma once
|
||||
|
||||
namespace fesa::core {
|
||||
|
||||
struct NodeId {
|
||||
int value;
|
||||
};
|
||||
|
||||
struct ElementId {
|
||||
int value;
|
||||
};
|
||||
|
||||
struct MaterialId {
|
||||
int value;
|
||||
};
|
||||
|
||||
struct PropertyId {
|
||||
int value;
|
||||
};
|
||||
|
||||
struct StepId {
|
||||
int value;
|
||||
};
|
||||
|
||||
} // namespace fesa::core
|
||||
Reference in New Issue
Block a user