• Home
  • Features
  • Pricing
  • Docs
  • Announcements
  • Sign In

daisytuner / sdfglib / 16371864526

18 Jul 2025 01:32PM UTC coverage: 65.106% (+0.1%) from 65.002%
16371864526

push

github

web-flow
Merge pull request #152 from daisytuner/verify

adds validate method to all elements

87 of 97 new or added lines in 24 files covered. (89.69%)

10 existing lines in 7 files now uncovered.

8790 of 13501 relevant lines covered (65.11%)

176.82 hits per line

Source File
Press 'n' to go to next uncovered line, 'b' for previous

66.67
/src/structured_control_flow/while.cpp
1
#include "sdfg/structured_control_flow/while.h"
2

3
namespace sdfg {
4
namespace structured_control_flow {
5

6
While::While(size_t element_id, const DebugInfo& debug_info) : ControlFlowNode(element_id, debug_info) {
33✔
7
    this->root_ = std::unique_ptr<Sequence>(new Sequence(++element_id, debug_info));
33✔
8
};
33✔
9

10
void While::validate() const { this->root_->validate(); };
35✔
11

12
const Sequence& While::root() const { return *this->root_; };
7✔
13

14
Sequence& While::root() { return *this->root_; };
110✔
15

16
void While::replace(const symbolic::Expression& old_expression, const symbolic::Expression& new_expression) {
×
17
    this->root_->replace(old_expression, new_expression);
×
18
};
×
19

20
Break::Break(size_t element_id, const DebugInfo& debug_info)
15✔
21
    : ControlFlowNode(element_id, debug_info) {
15✔
22

23
      };
15✔
24

25
void Break::validate() const {};
18✔
26

UNCOV
27
void Break::replace(const symbolic::Expression& old_expression, const symbolic::Expression& new_expression) {
×
28

29
};
×
30

31
Continue::Continue(size_t element_id, const DebugInfo& debug_info)
14✔
32
    : ControlFlowNode(element_id, debug_info) {
14✔
33

34
      };
14✔
35

36
void Continue::validate() const {};
17✔
37

UNCOV
38
void Continue::replace(const symbolic::Expression& old_expression, const symbolic::Expression& new_expression) {
×
39

40
};
×
41

42
} // namespace structured_control_flow
43
} // namespace sdfg
STATUS · Troubleshooting · Open an Issue · Sales · Support · CAREERS · ENTERPRISE · START FREE · SCHEDULE DEMO
ANNOUNCEMENTS · TWITTER · TOS & SLA · Supported CI Services · What's a CI service? · Automated Testing

© 2026 Coveralls, Inc