Skip to content

Commit

Permalink
convert NumTimesCalled, NumIterations
Browse files Browse the repository at this point in the history
  • Loading branch information
jmythms committed Jul 1, 2021
1 parent b0c9e54 commit ebea36c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/EnergyPlus/PsychCacheData.hh
Original file line number Diff line number Diff line change
Expand Up @@ -134,8 +134,8 @@ struct PsychrometricCacheData : BaseGlobalStruct
#endif

#ifdef EP_psych_stats
Array1D<Int64> NumTimesCalled = Array1D<Int64>(NumPsychMonitors, 0);
Array1D_int NumIterations = Array1D_int(NumPsychMonitors, 0);
std::array<std::int64_t, EnergyPlus::NumPsychMonitors> NumTimesCalled;
std::array<int, EnergyPlus::NumPsychMonitors> NumIterations;
#endif

void clear_state() override
Expand Down

1 comment on commit ebea36c

@nrel-bot-3
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

enumsPsychrometrics (jmythms) - x86_64-MacOS-10.15-clang-11.0.0: OK (3098 of 3099 tests passed, 0 test warnings)

Failures:\n

EnergyPlusFixture Test Summary

  • Passed: 1152
  • Failed: 1

Build Badge Test Badge

Please sign in to comment.