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

daisytuner / sdfglib / 15262928007

26 May 2025 10:36PM UTC coverage: 58.284% (-2.0%) from 60.304%
15262928007

push

github

web-flow
Merge pull request #36 from daisytuner/sdfg-validation

Introduces new definition of memlets plus sanity checks

104 of 266 new or added lines in 6 files covered. (39.1%)

241 existing lines in 15 files now uncovered.

7908 of 13568 relevant lines covered (58.28%)

96.1 hits per line

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

63.16
/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)
72✔
7
    : ControlFlowNode(element_id, debug_info) {
36✔
8
    this->root_ = std::unique_ptr<Sequence>(new Sequence(++element_id, debug_info));
36✔
9
};
36✔
10

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

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

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

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

23
      };
16✔
24

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

28
};
×
29

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

33
      };
15✔
34

35
void Continue::replace(const symbolic::Expression& old_expression,
×
36
                       const symbolic::Expression& new_expression) {
37

38
};
×
39

40
}  // namespace structured_control_flow
41
}  // 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