feat: add analysis state and base

This commit is contained in:
김경종
2026-06-09 15:12:41 +09:00
parent 7ea08441ed
commit 87529c811a
18 changed files with 1159 additions and 0 deletions
+11
View File
@@ -8,6 +8,7 @@ set(CMAKE_CXX_EXTENSIONS OFF)
add_library(fesa_core STATIC
src/boundary/SinglePointConstraint.cpp
src/core/AnalysisState.cpp
src/core/Domain.cpp
src/element/Mitc4Element.cpp
src/io/Hdf5ResultWriter.cpp
@@ -61,3 +62,13 @@ target_link_libraries(fesa_io_tests PRIVATE fesa_core)
add_test(NAME io.hdf5-result-writer COMMAND fesa_io_tests)
set_tests_properties(io.hdf5-result-writer PROPERTIES LABELS "io;hdf5")
add_executable(fesa_analysis_tests
tests/analysis/analysis_base_test.cpp
tests/analysis/analysis_test_main.cpp
tests/core/analysis_state_test.cpp
)
target_link_libraries(fesa_analysis_tests PRIVATE fesa_core)
add_test(NAME analysis.base COMMAND fesa_analysis_tests)
set_tests_properties(analysis.base PROPERTIES LABELS "analysis;core")