Skip to content

Commit

Permalink
Table objects don't set curveType
Browse files Browse the repository at this point in the history
  • Loading branch information
rraustad committed Aug 19, 2024
1 parent 0dafbab commit 730845a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/EnergyPlus/CurveManager.hh
Original file line number Diff line number Diff line change
Expand Up @@ -213,7 +213,7 @@ namespace Curve {

void markUsed(EnergyPlusData &state)
{
if (!this->used) return;
if (!this->used || this->curveType == CurveType::Invalid) return;
auto const find_unused =
state.dataInputProcessing->inputProcessor->unusedInputs.find({std::string(objectNames[int(this->curveType)]), this->Name});
if (find_unused != state.dataInputProcessing->inputProcessor->unusedInputs.end()) {
Expand Down

5 comments on commit 730845a

@nrel-bot
Copy link

Choose a reason for hiding this comment

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

Round2_init_state_use (rraustad) - Win64-Windows-10-VisualStudio-16: OK (2869 of 2869 tests passed, 0 test warnings)

Build Badge Test Badge

@nrel-bot-2b
Copy link

Choose a reason for hiding this comment

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

Round2_init_state_use (rraustad) - x86_64-Linux-Ubuntu-22.04-gcc-11.4: OK (3703 of 3703 tests passed, 796 test warnings)

Messages:\n

  • 796 tests had: ERR diffs.
  • 36 tests had: EDD diffs.
  • 19 tests had: EIO diffs.
  • 1 test had: AUD diffs.
  • 1 test had: RDD diffs.

Build Badge Test Badge

@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.

Round2_init_state_use (rraustad) - x86_64-MacOS-10.18-clang-15.0.0: OK (3661 of 3662 tests passed, 792 test warnings)

Messages:\n

  • 792 tests had: ERR diffs.
  • 34 tests had: EDD diffs.
  • 19 tests had: EIO diffs.
  • 1 test had: AUD diffs.
  • 1 test had: RDD diffs.

Failures:\n

integration Test Summary

  • Passed: 794
  • Failed: 1

Build Badge Test Badge

@nrel-bot-2
Copy link

Choose a reason for hiding this comment

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

Round2_init_state_use (rraustad) - x86_64-Linux-Ubuntu-22.04-gcc-11.4-UnitTestsCoverage-Debug: OK (2076 of 2076 tests passed, 0 test warnings)

Build Badge Test Badge Coverage Badge

@nrel-bot-2b
Copy link

Choose a reason for hiding this comment

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

Round2_init_state_use (rraustad) - x86_64-Linux-Ubuntu-22.04-gcc-11.4-IntegrationCoverage-Debug: OK (796 of 796 tests passed, 0 test warnings)

Build Badge Test Badge Coverage Badge

Please sign in to comment.