Skip to content

Commit 5618aba

Browse files
authored
Merge pull request #407 from jtwhite79/feat_regfac
Feat regfac
2 parents 09d4771 + b23b526 commit 5618aba

39 files changed

+1440
-366
lines changed

.github/workflows/ci-devenv.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
- {os: macos-14, shell: bash}
2222
- {os: ubuntu-latest, shell: bash}
2323
- {os: ubuntu-22.04, shell: bash}
24-
- {os: windows-latest, shell: bash}
24+
- {os: windows-2022, shell: bash}
2525
defaults:
2626
run:
2727
shell: ${{ matrix.shell }}

CMakeLists.txt

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
11
# This is the top-level CMake file for PEST++
22
cmake_minimum_required(VERSION 3.15)
33

4+
if(CMAKE_BUILD_TYPE STREQUAL "Debug")
5+
add_compile_definitions(_DEBUG)
6+
endif()
7+
48
# Get PESTPP_VERSION from common source header
59
file(READ "${CMAKE_SOURCE_DIR}/src/libs/common/config_os.h" _file)
610
string(REGEX MATCH "PESTPP_VERSION \"([0-9\.]+)\"" _ ${_file})
@@ -63,6 +67,7 @@ message(STATUS "CMAKE_THREAD_LIBS_INIT=${CMAKE_THREAD_LIBS_INIT}")
6367
set(CMAKE_CXX_STANDARD 11)
6468
set(CMAKE_CXX_STANDARD_REQUIRED ON)
6569
set(CMAKE_CXX_EXTENSIONS OFF)
70+
set(CMAKE_TRY_COMPILE_TARGET_TYPE)
6671

6772
add_compile_definitions(_HAS_STD_BYTE=0)
6873

benchmarks/basic_tests.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2124,6 +2124,7 @@ def parse_pst_test():
21242124
pyemu.os_utils.run("{0} control.pst".format(exe_path),cwd=t_d)
21252125

21262126

2127+
21272128
if __name__ == "__main__":
21282129
#parse_pst_test()
21292130
#basic_test()

benchmarks/glm_test_base.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -945,16 +945,16 @@ def tenpar_xsec_stress_test_5super():
945945
#tenpar_superpar_restart_test()
946946
#freyberg_basic_restart_test()
947947
# jac_diff_invest()
948-
#new_fmt_load_test()
948+
new_fmt_load_test()
949949
#tenpar_hotstart_test()
950950
#tenpar_normalform_test()
951951
#freyberg_stress_test()
952952
#shutil.copy2(os.path.join("..","exe","windows","x64","Debug","pestpp-glm.exe"),os.path.join("..","bin","win","pestpp-glm.exe"))
953953
#tenpar_xsec_stress_test_2()
954954
#tenpar_xsec_stress_test_3()
955-
tenpar_xsec_stress_test_5super()
955+
#tenpar_xsec_stress_test_5super()
956956

957-
tenpar_xsec_stress_test_5()
957+
#tenpar_xsec_stress_test_5()
958958

959959

960960

0 commit comments

Comments
 (0)